예제 #1
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     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(XtraReport1));
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1      = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo1       = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo1      = new DevExpress.DataAccess.Sql.ColumnInfo();
     this.Detail                    = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin                 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin              = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.paramCategoryName         = new DevExpress.XtraReports.Parameters.Parameter();
     this.paramOrdYear              = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSourceMainData     = new DevExpress.DataAccess.Sql.SqlDataSource();
     this.sqlDataSourceCategoryInfo = new DevExpress.DataAccess.Sql.SqlDataSource();
     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.ReportHeader              = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.PageHeader                = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel2                  = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2                  = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2               = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell3              = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4              = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("TotalPurchase", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     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.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;
     //
     // paramCategoryName
     //
     this.paramCategoryName.Description       = "CategoryName";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "Categories";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSourceCategoryInfo;
     dynamicListLookUpSettings1.DisplayMember = "CategoryName";
     dynamicListLookUpSettings1.FilterString  = null;
     dynamicListLookUpSettings1.ValueMember   = "CategoryName";
     this.paramCategoryName.LookUpSettings    = dynamicListLookUpSettings1;
     this.paramCategoryName.Name = "paramCategoryName";
     //
     // paramOrdYear
     //
     this.paramOrdYear.Description = "Order Year";
     this.paramOrdYear.Name        = "paramOrdYear";
     this.paramOrdYear.Type        = typeof(int);
     this.paramOrdYear.ValueInfo   = "1997";
     //
     // sqlDataSourceMainData
     //
     this.sqlDataSourceMainData.ConnectionName = "northwindConnection";
     this.sqlDataSourceMainData.Name           = "sqlDataSourceMainData";
     storedProcQuery1.Name = "SalesByCategory";
     queryParameter1.Name  = "@CategoryName";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.paramCategoryName]", typeof(string));
     queryParameter2.Name  = "@OrdYear";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.paramOrdYear]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.StoredProcName = "SalesByCategory";
     this.sqlDataSourceMainData.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSourceMainData.ResultSchemaSerializable = resources.GetString("sqlDataSourceMainData.ResultSchemaSerializable");
     //
     // sqlDataSourceCategoryInfo
     //
     this.sqlDataSourceCategoryInfo.ConnectionName = "northwindConnection";
     this.sqlDataSourceCategoryInfo.Name           = "sqlDataSourceCategoryInfo";
     tableQuery1.Name = "Categories";
     tableInfo1.Name  = "Categories";
     columnInfo1.Name = "CategoryName";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSourceCategoryInfo.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSourceCategoryInfo.ResultSchemaSerializable = "PERhdGFTZXQgTmFtZT0ic3FsRGF0YVNvdXJjZUNhdGVnb3J5SW5mbyI+PFZpZXcgTmFtZT0iQ2F0ZWdvc" +
                                                               "mllcyI+PEZpZWxkIE5hbWU9IkNhdGVnb3J5TmFtZSIgVHlwZT0iU3RyaW5nIiAvPjwvVmlldz48L0Rhd" +
                                                               "GFTZXQ+";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 11.5D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalesByCategory.ProductName")
     });
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "xrTableCell1";
     this.xrTableCell1.Weight = 0.22222222222222221D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalesByCategory.TotalPurchase")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell2";
     this.xrTableCell2.Weight = 0.22222222222222221D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2
     });
     this.ReportHeader.HeightF = 53.83334F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.PageHeader.HeightF = 25F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 26F, System.Drawing.FontStyle.Italic);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(335.4167F, 43.83334F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Sales By Category";
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 12F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable2.StylePriority.UseBackColor     = false;
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Product Name";
     this.xrTableCell3.Weight = 0.22222222222222221D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Total Purchase";
     this.xrTableCell4.Weight = 0.22222222222222221D;
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSourceMainData,
         this.sqlDataSourceCategoryInfo
     });
     this.DataMember = "SalesByCategory";
     this.DataSource = this.sqlDataSourceMainData;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.paramCategoryName,
         this.paramOrdYear
     });
     this.Version = "14.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()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters mySqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1         = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.RelationInfo         relationInfo1       = new DevExpress.DataAccess.Sql.RelationInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = 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.ColumnInfo           columnInfo4         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo5         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo2          = 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.ColumnInfo           columnInfo8         = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(reporteClientesMorosos));
     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.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
     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.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 100F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // 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.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblCreditos.#Credito")
     });
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders = false;
     this.xrTableCell1.Weight = 0.33653848862506675D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblCreditos.Codigo Deudor")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Weight = 0.44230766719442854D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblCreditos.Nombre")
     });
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Weight = 0.67307697607962935D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblCreditos.Apellido")
     });
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Weight = 0.61538488273916991D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblCreditos.Monto", "{0:Q0.00}")
     });
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Weight = 0.41826917998371649D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblCreditos.Fecha Vencimiento", "{0:d/MM/yyyy}")
     });
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders = false;
     this.xrTableCell6.Weight = 0.51442264540942373D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 50F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 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       = "dbsur_Connection";
     mySqlConnectionParameters1.DatabaseName  = "u983648979_dbsur";
     mySqlConnectionParameters1.Password      = "******";
     mySqlConnectionParameters1.ServerName    = "185.224.137.20";
     mySqlConnectionParameters1.UserName      = "******";
     this.sqlDataSource1.ConnectionParameters = mySqlConnectionParameters1;
     this.sqlDataSource1.Name = "sqlDataSource1";
     tableQuery1.FilterString = "[tblCreditos.tipo_cuenta] = 1b And [tblCreditos.monto] > 0.0m And [tblCreditos.fe" +
                                "cha_limite] < ?fechaActual";
     tableQuery1.GroupFilterString = "";
     tableQuery1.Name          = "tblCreditos";
     queryParameter1.Name      = "fechaActual";
     queryParameter1.Type      = typeof(System.DateTime);
     queryParameter1.ValueInfo = "2018-06-04";
     tableQuery1.Parameters.Add(queryParameter1);
     relationColumnInfo1.NestedKeyColumn = "id_cliente";
     relationColumnInfo1.ParentKeyColumn = "deudor";
     relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo1
     });
     relationInfo1.NestedTable = "tblCliente";
     relationInfo1.ParentTable = "tblCreditos";
     tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
         relationInfo1
     });
     tableInfo1.Name   = "tblCreditos";
     columnInfo1.Alias = "#Credito";
     columnInfo1.Name  = "id_creditos";
     columnInfo2.Alias = "Monto";
     columnInfo2.Name  = "monto";
     columnInfo3.Alias = "Fecha Vencimiento";
     columnInfo3.Name  = "fecha_limite";
     columnInfo4.Name  = "tipo_cuenta";
     columnInfo5.Alias = "Codigo Deudor";
     columnInfo5.Name  = "deudor";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5
     });
     tableInfo2.Name   = "tblCliente";
     columnInfo6.Alias = "Nombre";
     columnInfo6.Name  = "nombre";
     columnInfo7.Alias = "Apellido";
     columnInfo7.Name  = "apellido";
     columnInfo8.Alias = "NIT";
     columnInfo8.Name  = "nit";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo6,
         columnInfo7,
         columnInfo8
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1,
         tableInfo2
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2,
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 100F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 75F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "#CREDITO";
     this.xrTableCell7.Weight = 0.72916679382324223D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "COD. CLIENTE";
     this.xrTableCell8.Weight = 0.95833351135253908D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "NOMBRE";
     this.xrTableCell9.Weight = 1.458333740234375D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "APELLIDO";
     this.xrTableCell10.Weight = 1.3333340454101561D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "CANTIDAD";
     this.xrTableCell11.Weight = 0.90625D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "VENCIMIENTO";
     this.xrTableCell12.Weight = 1.1145819091796876D;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(137.5F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(364.5833F, 35.5F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "LISTADO CLIENTES MOROSOS";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // reporteClientesMorosos
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "tblCreditos";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(100, 100, 50, 100);
     this.Version    = "15.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()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(ProductsReport));
     this.tcUnitPrice          = new DevExpress.XtraReports.UI.XRTableCell();
     this.tbProductData        = new DevExpress.XtraReports.UI.XRTable();
     this.lbHeader             = new DevExpress.XtraReports.UI.XRLabel();
     this.tcUnitsOnOrderHeader = new DevExpress.XtraReports.UI.XRTableCell();
     this.trProductHeader      = new DevExpress.XtraReports.UI.XRTableRow();
     this.tcDiscontHeader      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tcUnitPriceHeader    = new DevExpress.XtraReports.UI.XRTableCell();
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.cbDiscont            = new DevExpress.XtraReports.UI.XRCheckBox();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.tcUnitsOnOrder       = new DevExpress.XtraReports.UI.XRTableCell();
     this.tcUnitsInStock       = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeaderTitle     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.tcDiscont            = new DevExpress.XtraReports.UI.XRTableCell();
     this.tcUnitsInStockHeader = new DevExpress.XtraReports.UI.XRTableCell();
     this.tcProductNameHeader  = new DevExpress.XtraReports.UI.XRTableCell();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.trProductData        = new DevExpress.XtraReports.UI.XRTableRow();
     this.tcProductName        = new DevExpress.XtraReports.UI.XRTableCell();
     this.tbProductHeader      = new DevExpress.XtraReports.UI.XRTable();
     this.nwindDataSource      = new DevExpress.DataAccess.Sql.SqlDataSource("nwindConnection");
     ((System.ComponentModel.ISupportInitialize)(this.tbProductData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbProductHeader)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // tcUnitPrice
     //
     this.tcUnitPrice.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.UnitPrice", "{0:c}")
     });
     this.tcUnitPrice.Name = "tcUnitPrice";
     this.tcUnitPrice.StylePriority.UseTextAlignment = false;
     this.tcUnitPrice.Text          = "tcUnitPrice";
     this.tcUnitPrice.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tcUnitPrice.Weight        = 0.4663461624235804D;
     //
     // tbProductData
     //
     this.tbProductData.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.tbProductData.Name          = "tbProductData";
     this.tbProductData.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.trProductData
     });
     this.tbProductData.SizeF = new System.Drawing.SizeF(649.9999F, 25F);
     //
     // lbHeader
     //
     this.lbHeader.Font                           = new System.Drawing.Font("Times New Roman", 36F);
     this.lbHeader.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 10F);
     this.lbHeader.Name                           = "lbHeader";
     this.lbHeader.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbHeader.SizeF                          = new System.Drawing.SizeF(650.0001F, 79.99998F);
     this.lbHeader.StylePriority.UseFont          = false;
     this.lbHeader.StylePriority.UseTextAlignment = false;
     this.lbHeader.Text                           = "Products Report";
     this.lbHeader.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // tcUnitsOnOrderHeader
     //
     this.tcUnitsOnOrderHeader.Name   = "tcUnitsOnOrderHeader";
     this.tcUnitsOnOrderHeader.Text   = "Units On Order";
     this.tcUnitsOnOrderHeader.Weight = 0.44903843327809806D;
     //
     // trProductHeader
     //
     this.trProductHeader.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tcProductNameHeader,
         this.tcUnitPriceHeader,
         this.tcUnitsInStockHeader,
         this.tcUnitsOnOrderHeader,
         this.tcDiscontHeader
     });
     this.trProductHeader.Name   = "trProductHeader";
     this.trProductHeader.Weight = 1D;
     //
     // tcDiscontHeader
     //
     this.tcDiscontHeader.Name   = "tcDiscontHeader";
     this.tcDiscontHeader.Text   = "Discont.";
     this.tcDiscontHeader.Weight = 0.23846170170351017D;
     //
     // tcUnitPriceHeader
     //
     this.tcUnitPriceHeader.Name   = "tcUnitPriceHeader";
     this.tcUnitPriceHeader.Text   = "Unit Price";
     this.tcUnitPriceHeader.Weight = 0.4663460215732067D;
     //
     // Detail
     //
     this.Detail.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tbProductData
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StylePriority.UseBorders       = false;
     this.Detail.StylePriority.UseTextAlignment = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // cbDiscont
     //
     this.cbDiscont.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.cbDiscont.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("CheckState", null, "Products.Discontinued")
     });
     this.cbDiscont.GlyphAlignment           = DevExpress.Utils.HorzAlignment.Center;
     this.cbDiscont.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.cbDiscont.Name                     = "cbDiscont";
     this.cbDiscont.SizeF                    = new System.Drawing.SizeF(50F, 23F);
     this.cbDiscont.StylePriority.UseBorders = false;
     //
     // 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;
     //
     // tcUnitsOnOrder
     //
     this.tcUnitsOnOrder.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.UnitsOnOrder")
     });
     this.tcUnitsOnOrder.Name = "tcUnitsOnOrder";
     this.tcUnitsOnOrder.StylePriority.UseTextAlignment = false;
     this.tcUnitsOnOrder.Text          = "tcUnitsOnOrder";
     this.tcUnitsOnOrder.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tcUnitsOnOrder.Weight        = 0.44903843327809811D;
     //
     // tcUnitsInStock
     //
     this.tcUnitsInStock.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.UnitsInStock")
     });
     this.tcUnitsInStock.Name = "tcUnitsInStock";
     this.tcUnitsInStock.StylePriority.UseTextAlignment = false;
     this.tcUnitsInStock.Text          = "tcUnitsInStock";
     this.tcUnitsInStock.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tcUnitsInStock.Weight        = 0.46634616242358046D;
     //
     // GroupHeaderTitle
     //
     this.GroupHeaderTitle.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.GroupHeaderTitle.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tbProductHeader
     });
     this.GroupHeaderTitle.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.GroupHeaderTitle.GroupUnion                     = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeaderTitle.HeightF                        = 25F;
     this.GroupHeaderTitle.Name                           = "GroupHeaderTitle";
     this.GroupHeaderTitle.RepeatEveryPage                = true;
     this.GroupHeaderTitle.StylePriority.UseBorders       = false;
     this.GroupHeaderTitle.StylePriority.UseFont          = false;
     this.GroupHeaderTitle.StylePriority.UseTextAlignment = false;
     this.GroupHeaderTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
     //
     // tcDiscont
     //
     this.tcDiscont.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.cbDiscont
     });
     this.tcDiscont.Name   = "tcDiscont";
     this.tcDiscont.Text   = "tcDiscont";
     this.tcDiscont.Weight = 0.2384614904279494D;
     //
     // tcUnitsInStockHeader
     //
     this.tcUnitsInStockHeader.Name   = "tcUnitsInStockHeader";
     this.tcUnitsInStockHeader.Text   = "Units In Stock";
     this.tcUnitsInStockHeader.Weight = 0.46634598636061309D;
     //
     // tcProductNameHeader
     //
     this.tcProductNameHeader.Name   = "tcProductNameHeader";
     this.tcProductNameHeader.Text   = "Product Name";
     this.tcProductNameHeader.Weight = 1.379807857084572D;
     //
     // 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;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbHeader
     });
     this.ReportHeader.HeightF = 100F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // trProductData
     //
     this.trProductData.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tcProductName,
         this.tcUnitPrice,
         this.tcUnitsInStock,
         this.tcUnitsOnOrder,
         this.tcDiscont
     });
     this.trProductData.Name   = "trProductData";
     this.trProductData.Weight = 1D;
     //
     // tcProductName
     //
     this.tcProductName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ProductName")
     });
     this.tcProductName.Name = "tcProductName";
     this.tcProductName.StylePriority.UseTextAlignment = false;
     this.tcProductName.Text          = "tcProductName";
     this.tcProductName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.tcProductName.Weight        = 1.3798077514467915D;
     //
     // tbProductHeader
     //
     this.tbProductHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.tbProductHeader.Name          = "tbProductHeader";
     this.tbProductHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.trProductHeader
     });
     this.tbProductHeader.SizeF = new System.Drawing.SizeF(649.9999F, 25F);
     //
     // nwindDataSource
     //
     tableQuery1.Name  = "Products";
     tableInfo1.Name   = "Products";
     columnInfo1.Name  = "ProductID";
     columnInfo2.Name  = "ProductName";
     columnInfo3.Name  = "SupplierID";
     columnInfo4.Name  = "CategoryID";
     columnInfo5.Name  = "QuantityPerUnit";
     columnInfo6.Name  = "UnitPrice";
     columnInfo7.Name  = "UnitsInStock";
     columnInfo8.Name  = "UnitsOnOrder";
     columnInfo9.Name  = "ReorderLevel";
     columnInfo10.Name = "Discontinued";
     columnInfo11.Name = "EAN13";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.nwindDataSource.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.nwindDataSource.ResultSchemaSerializable = resources.GetString("nwindDataSource.ResultSchemaSerializable");
     //
     // ProductsReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeaderTitle,
         this.ReportHeader
     });
     this.DataMember = "Products";
     this.DataSource = this.nwindDataSource;
     this.Version    = "14.1";
     ((System.ComponentModel.ISupportInitialize)(this.tbProductData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbProductHeader)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #4
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.MySqlConnectionParameters mySqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1         = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2     = new DevExpress.DataAccess.Sql.QueryParameter();
     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.RelationInfo         relationInfo6       = new DevExpress.DataAccess.Sql.RelationInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo6 = 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.ColumnInfo           columnInfo4         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo2          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo3          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo5         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo6         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo4          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo5          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo7         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo6          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo8         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo7          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo9         = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(reporteKardex));
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     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();
     ((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       = 26.04167F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650.0001F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // 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.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.fecha", "{0:d/MM/yyyy}")
     });
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.Weight = 1.138613740524443D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.documento")
     });
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Weight = 2.1386137968918506D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.cantidad_inicial")
     });
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Weight = 1.3168326903838303D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.cantidad_final")
     });
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseBorders = false;
     this.xrTableCell8.Weight = 1.5841582405576613D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 53.125F;
     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       = "dbsur_Connection";
     mySqlConnectionParameters1.DatabaseName  = "u983648979_dbsur";
     mySqlConnectionParameters1.Password      = "******";
     mySqlConnectionParameters1.ServerName    = "185.224.137.20";
     mySqlConnectionParameters1.UserName      = "******";
     this.sqlDataSource1.ConnectionParameters = mySqlConnectionParameters1;
     this.sqlDataSource1.Name = "sqlDataSource1";
     tableQuery1.FilterString = "[tblSucursal.nombre_sucursal] = ?sucursal And [tblProducto.id_producto] = ?idProd" +
                                "ucto";
     tableQuery1.GroupFilterString = "";
     tableQuery1.Name          = "tblKardex";
     queryParameter1.Name      = "sucursal";
     queryParameter1.Type      = typeof(string);
     queryParameter1.ValueInfo = "CENTRAL";
     queryParameter2.Name      = "idProducto";
     queryParameter2.Type      = typeof(string);
     queryParameter2.ValueInfo = "P1";
     tableQuery1.Parameters.Add(queryParameter1);
     tableQuery1.Parameters.Add(queryParameter2);
     relationColumnInfo1.NestedKeyColumn = "id_asignacionprecio";
     relationColumnInfo1.ParentKeyColumn = "id_asignacionprecio";
     relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo1
     });
     relationInfo1.NestedTable           = "tblAsignacionPrecio";
     relationInfo1.ParentTable           = "tblKardex";
     relationColumnInfo2.NestedKeyColumn = "id_producto";
     relationColumnInfo2.ParentKeyColumn = "id_producto";
     relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo2
     });
     relationInfo2.NestedTable           = "tblProducto";
     relationInfo2.ParentTable           = "tblAsignacionPrecio";
     relationColumnInfo3.NestedKeyColumn = "id_Presentacion";
     relationColumnInfo3.ParentKeyColumn = "id_Presentacion";
     relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo3
     });
     relationInfo3.NestedTable           = "tblPresentacion";
     relationInfo3.ParentTable           = "tblAsignacionPrecio";
     relationColumnInfo4.NestedKeyColumn = "id_marca";
     relationColumnInfo4.ParentKeyColumn = "id_marca";
     relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo4
     });
     relationInfo4.NestedTable           = "tblMarca";
     relationInfo4.ParentTable           = "tblProducto";
     relationColumnInfo5.NestedKeyColumn = "id_categoria";
     relationColumnInfo5.ParentKeyColumn = "id_categoria";
     relationInfo5.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo5
     });
     relationInfo5.NestedTable           = "tblCategoria";
     relationInfo5.ParentTable           = "tblProducto";
     relationColumnInfo6.NestedKeyColumn = "id_sucursal";
     relationColumnInfo6.ParentKeyColumn = "id_sucursal";
     relationInfo6.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo6
     });
     relationInfo6.NestedTable = "tblSucursal";
     relationInfo6.ParentTable = "tblKardex";
     tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
         relationInfo1,
         relationInfo2,
         relationInfo3,
         relationInfo4,
         relationInfo5,
         relationInfo6
     });
     tableInfo1.Name  = "tblKardex";
     columnInfo1.Name = "fecha";
     columnInfo2.Name = "documento";
     columnInfo3.Name = "cantidad_final";
     columnInfo4.Name = "cantidad_inicial";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4
     });
     tableInfo2.Name  = "tblAsignacionPrecio";
     tableInfo3.Name  = "tblProducto";
     columnInfo5.Name = "nombre_producto";
     columnInfo6.Name = "id_producto";
     tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo5,
         columnInfo6
     });
     tableInfo4.Name  = "tblPresentacion";
     tableInfo5.Name  = "tblMarca";
     columnInfo7.Name = "nombre_marca";
     tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo7
     });
     tableInfo6.Name  = "tblCategoria";
     columnInfo8.Name = "nombre_categoria";
     tableInfo6.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo8
     });
     tableInfo7.Name  = "tblSucursal";
     columnInfo9.Name = "nombre_sucursal";
     tableInfo7.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo9
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1,
         tableInfo2,
         tableInfo3,
         tableInfo4,
         tableInfo5,
         tableInfo6,
         tableInfo7
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel12,
         this.xrLabel11,
         this.xrTable1,
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 203.2917F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // 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.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.nombre_sucursal")
     });
     this.xrLabel12.LocationFloat            = new DevExpress.Utils.PointFloat(494.7917F, 70.87498F);
     this.xrLabel12.Name                     = "xrLabel12";
     this.xrLabel12.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                    = new System.Drawing.SizeF(155.2083F, 23F);
     this.xrLabel12.StylePriority.UseBorders = false;
     //
     // 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, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat            = new DevExpress.Utils.PointFloat(394.7917F, 70.87498F);
     this.xrLabel11.Name                     = "xrLabel11";
     this.xrLabel11.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                    = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.StylePriority.UseBorders = false;
     this.xrLabel11.StylePriority.UseFont    = false;
     this.xrLabel11.Text                     = "SUCURSAL:";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 178.2917F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650.0001F, 25F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "FECHA";
     this.xrTableCell1.Weight = 1.1979166412353517D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "DOCUMENTO";
     this.xrTableCell2.Weight = 2.2499999237060542D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "CANTIDAD INICIAL";
     this.xrTableCell3.Weight = 1.38541748046875D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "CANTIDAD FINAL";
     this.xrTableCell4.Weight = 1.6666671752929687D;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(231.25F, 141.5833F);
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(197.9167F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "DETALLES DE MOVIMIENTO";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // 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.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.id_producto")
     });
     this.xrLabel9.LocationFloat            = new DevExpress.Utils.PointFloat(550F, 47.87499F);
     this.xrLabel9.Name                     = "xrLabel9";
     this.xrLabel9.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                    = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel9.StylePriority.UseBorders = false;
     //
     // 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.Font                     = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat            = new DevExpress.Utils.PointFloat(450.0001F, 47.87499F);
     this.xrLabel8.Name                     = "xrLabel8";
     this.xrLabel8.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                    = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel8.StylePriority.UseBorders = false;
     this.xrLabel8.StylePriority.UseFont    = false;
     this.xrLabel8.Text                     = "CODIGO:";
     //
     // xrLabel7
     //
     this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.nombre_marca")
     });
     this.xrLabel7.LocationFloat            = new DevExpress.Utils.PointFloat(100F, 93.87496F);
     this.xrLabel7.Name                     = "xrLabel7";
     this.xrLabel7.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                    = new System.Drawing.SizeF(215.625F, 23F);
     this.xrLabel7.StylePriority.UseBorders = false;
     //
     // xrLabel6
     //
     this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblKardex.nombre_categoria")
     });
     this.xrLabel6.LocationFloat            = new DevExpress.Utils.PointFloat(100F, 70.87498F);
     this.xrLabel6.Name                     = "xrLabel6";
     this.xrLabel6.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                    = new System.Drawing.SizeF(215.625F, 23F);
     this.xrLabel6.StylePriority.UseBorders = false;
     //
     // 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.Font                     = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 93.87496F);
     this.xrLabel5.Name                     = "xrLabel5";
     this.xrLabel5.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                    = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.StylePriority.UseBorders = false;
     this.xrLabel5.StylePriority.UseFont    = false;
     this.xrLabel5.Text                     = "MARCA:";
     //
     // 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.Font                     = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 70.87498F);
     this.xrLabel4.Name                     = "xrLabel4";
     this.xrLabel4.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                    = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel4.StylePriority.UseBorders = false;
     this.xrLabel4.StylePriority.UseFont    = false;
     this.xrLabel4.Text                     = "CATEGORIA: ";
     //
     // xrLabel3
     //
     this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((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, "tblKardex.nombre_producto")
     });
     this.xrLabel3.LocationFloat            = new DevExpress.Utils.PointFloat(100F, 47.87499F);
     this.xrLabel3.Name                     = "xrLabel3";
     this.xrLabel3.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                    = new System.Drawing.SizeF(215.625F, 23F);
     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.Font                     = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 47.87499F);
     this.xrLabel2.Name                     = "xrLabel2";
     this.xrLabel2.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                    = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.StylePriority.UseBorders = false;
     this.xrLabel2.StylePriority.UseFont    = false;
     this.xrLabel2.Text                     = "PRODUCTO: ";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 18F);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(197.9167F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(320.8333F, 47.87499F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "KARDEX POR PRODUCTO";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // reporteKardex
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "tblKardex";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(100, 100, 53, 100);
     this.Version    = "15.2";
     ((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()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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.ColumnInfo           columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport1));
     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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF       = 100F;
     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.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 = "NORTHWNDConnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "Categories";
     tableInfo1.Name  = "Categories";
     columnInfo1.Name = "CategoryID";
     columnInfo2.Name = "CategoryName";
     columnInfo3.Name = "Description";
     columnInfo4.Name = "Picture";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.ComponentStorage.Add(this.sqlDataSource1);
     this.DataMember = "Categories";
     this.DataSource = this.sqlDataSource1;
     this.Version    = "14.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.TableQuery              tableQuery1     = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.QueryParameter          queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
     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.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.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();
     System.ComponentModel.ComponentResourceManager    resources       = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport2));
     DevExpress.XtraReports.CustomControls.XRSortField xrSortField1    = new DevExpress.XtraReports.CustomControls.XRSortField();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.HeaderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.CellStyle      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.paramCatId     = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrGrid1        = new DevExpress.XtraReports.CustomControls.XRGrid();
     this.xrGridColumn1  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn2  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn3  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn4  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn5  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn6  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn7  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn8  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn9  = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     this.xrGridColumn10 = new DevExpress.XtraReports.CustomControls.XRGridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.xrGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrGrid1
     });
     this.Detail.HeightF       = 109.375F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "TreeListExample.Properties.Settings.nwindConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.FilterString           = "[Products.CategoryID] = ?paramCategoryID";
     tableQuery1.Name      = "Products";
     queryParameter1.Name  = "paramCategoryID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.paramCatId]", typeof(int));
     tableQuery1.Parameters.Add(queryParameter1);
     tableInfo1.Name   = "Products";
     columnInfo1.Name  = "ProductID";
     columnInfo2.Name  = "ProductName";
     columnInfo3.Name  = "SupplierID";
     columnInfo4.Name  = "CategoryID";
     columnInfo5.Name  = "QuantityPerUnit";
     columnInfo6.Name  = "UnitPrice";
     columnInfo7.Name  = "UnitsInStock";
     columnInfo8.Name  = "UnitsOnOrder";
     columnInfo9.Name  = "ReorderLevel";
     columnInfo10.Name = "Discontinued";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 86F;
     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;
     //
     // HeaderStyle
     //
     this.HeaderStyle.BackColor     = System.Drawing.Color.RoyalBlue;
     this.HeaderStyle.BorderColor   = System.Drawing.Color.White;
     this.HeaderStyle.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.HeaderStyle.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.HeaderStyle.ForeColor     = System.Drawing.Color.White;
     this.HeaderStyle.Name          = "HeaderStyle";
     this.HeaderStyle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // CellStyle
     //
     this.CellStyle.BackColor     = System.Drawing.Color.PowderBlue;
     this.CellStyle.BorderColor   = System.Drawing.Color.White;
     this.CellStyle.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.CellStyle.Name          = "CellStyle";
     this.CellStyle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // paramCatId
     //
     this.paramCatId.Description = "Category ID";
     this.paramCatId.Name        = "paramCatId";
     this.paramCatId.Type        = typeof(int);
     this.paramCatId.ValueInfo   = "1";
     //
     // xrGrid1
     //
     this.xrGrid1.CellAutoHeight = true;
     this.xrGrid1.CellStyleName  = "CellStyle";
     this.xrGrid1.Columns.AddRange(new DevExpress.XtraReports.CustomControls.XRFieldHeader[] {
         this.xrGridColumn1,
         this.xrGridColumn2,
         this.xrGridColumn3,
         this.xrGridColumn4,
         this.xrGridColumn5,
         this.xrGridColumn6,
         this.xrGridColumn7,
         this.xrGridColumn8,
         this.xrGridColumn9,
         this.xrGridColumn10
     });
     this.xrGrid1.DataMember        = "Products";
     this.xrGrid1.DataSource        = this.sqlDataSource1;
     this.xrGrid1.EvenCellStyleName = "EvenStyle";
     this.xrGrid1.HeaderAutoHeight  = true;
     this.xrGrid1.HeaderStyleName   = "HeaderStyle";
     this.xrGrid1.LocationFloat     = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrGrid1.Name             = "xrGrid1";
     this.xrGrid1.OddCellStyleName = "OddStyle";
     this.xrGrid1.SizeF            = new System.Drawing.SizeF(650F, 109.375F);
     xrSortField1.FieldName        = "Discontinued";
     xrSortField1.SortOrder        = DevExpress.XtraReports.UI.XRColumnSortOrder.Descending;
     this.xrGrid1.SortFields.AddRange(new DevExpress.XtraReports.CustomControls.XRSortField[] {
         xrSortField1
     });
     //
     // xrGridColumn1
     //
     this.xrGridColumn1.Caption   = "ProductID";
     this.xrGridColumn1.FieldName = "ProductID";
     this.xrGridColumn1.FieldType = typeof(int);
     this.xrGridColumn1.Visible   = false;
     this.xrGridColumn1.Width     = 78F;
     //
     // xrGridColumn2
     //
     this.xrGridColumn2.Caption   = "ProductName";
     this.xrGridColumn2.FieldName = "ProductName";
     this.xrGridColumn2.FieldType = typeof(string);
     this.xrGridColumn2.Width     = 88F;
     //
     // xrGridColumn3
     //
     this.xrGridColumn3.Caption   = "SupplierID";
     this.xrGridColumn3.FieldName = "SupplierID";
     this.xrGridColumn3.FieldType = typeof(int);
     this.xrGridColumn3.Visible   = false;
     this.xrGridColumn3.Width     = 70F;
     //
     // xrGridColumn4
     //
     this.xrGridColumn4.Caption   = "CategoryID";
     this.xrGridColumn4.FieldName = "CategoryID";
     this.xrGridColumn4.FieldType = typeof(int);
     this.xrGridColumn4.Visible   = false;
     this.xrGridColumn4.Width     = 64F;
     //
     // xrGridColumn5
     //
     this.xrGridColumn5.Caption   = "QuantityPerUnit";
     this.xrGridColumn5.FieldName = "QuantityPerUnit";
     this.xrGridColumn5.FieldType = typeof(string);
     this.xrGridColumn5.Width     = 88F;
     //
     // xrGridColumn6
     //
     this.xrGridColumn6.Caption   = "UnitPrice";
     this.xrGridColumn6.FieldName = "UnitPrice";
     this.xrGridColumn6.FieldType = typeof(decimal);
     this.xrGridColumn6.Width     = 88F;
     //
     // xrGridColumn7
     //
     this.xrGridColumn7.Caption   = "UnitsInStock";
     this.xrGridColumn7.FieldName = "UnitsInStock";
     this.xrGridColumn7.FieldType = typeof(short);
     this.xrGridColumn7.Width     = 88F;
     //
     // xrGridColumn8
     //
     this.xrGridColumn8.Caption   = "UnitsOnOrder";
     this.xrGridColumn8.FieldName = "UnitsOnOrder";
     this.xrGridColumn8.FieldType = typeof(short);
     this.xrGridColumn8.Width     = 88F;
     //
     // xrGridColumn9
     //
     this.xrGridColumn9.Caption   = "ReorderLevel";
     this.xrGridColumn9.FieldName = "ReorderLevel";
     this.xrGridColumn9.FieldType = typeof(short);
     this.xrGridColumn9.Width     = 88F;
     //
     // xrGridColumn10
     //
     this.xrGridColumn10.Caption   = "Discontinued";
     this.xrGridColumn10.FieldName = "Discontinued";
     this.xrGridColumn10.FieldType = typeof(bool);
     this.xrGridColumn10.Width     = 122F;
     //
     // XtraReport2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.Margins = new System.Drawing.Printing.Margins(100, 100, 86, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.paramCatId
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.HeaderStyle,
         this.CellStyle
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrGrid1)).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()
        {
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            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.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.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Rpt_PenggunaSistem));
            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.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell16 = 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.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.pageHeaderBand1 = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell17 = 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.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.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
            this.lblAppName = new DevExpress.XtraReports.UI.XRLabel();
            this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
            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.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
            ((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 = 23F;
            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(5F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow4});
            this.xrTable2.SizeF = new System.Drawing.SizeF(1099.167F, 23F);
            this.xrTable2.StylePriority.UseBorders = false;
            // 
            // xrTableRow4
            // 
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell8,
            this.xrTableCell10,
            this.xrTableCell12,
            this.xrTableCell14,
            this.xrTableCell16,
            this.xrTableCell18});
            this.xrTableRow4.Name = "xrTableRow4";
            this.xrTableRow4.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserForReport.PTJ_FullName")});
            this.xrTableCell8.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.OddStyleName = "xrControlStyle1";
            this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell8.StyleName = "DataField";
            this.xrTableCell8.StylePriority.UseBorders = false;
            this.xrTableCell8.StylePriority.UseFont = false;
            this.xrTableCell8.StylePriority.UsePadding = false;
            this.xrTableCell8.Weight = 220.74886036446958D;
            // 
            // xrTableCell10
            // 
            this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserForReport.User_Name")});
            this.xrTableCell10.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.OddStyleName = "xrControlStyle1";
            this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell10.StyleName = "DataField";
            this.xrTableCell10.StylePriority.UseBorders = false;
            this.xrTableCell10.StylePriority.UseFont = false;
            this.xrTableCell10.StylePriority.UsePadding = false;
            this.xrTableCell10.Weight = 209.54413446206314D;
            // 
            // 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.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserForReport.User_EmployeeId")});
            this.xrTableCell12.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.OddStyleName = "xrControlStyle1";
            this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell12.StyleName = "DataField";
            this.xrTableCell12.StylePriority.UseBorders = false;
            this.xrTableCell12.StylePriority.UseFont = false;
            this.xrTableCell12.StylePriority.UsePadding = false;
            this.xrTableCell12.Weight = 93.0548529743636D;
            // 
            // xrTableCell14
            // 
            this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserForReport.Dsgt_Name")});
            this.xrTableCell14.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrTableCell14.Name = "xrTableCell14";
            this.xrTableCell14.OddStyleName = "xrControlStyle1";
            this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell14.StyleName = "DataField";
            this.xrTableCell14.StylePriority.UseBorders = false;
            this.xrTableCell14.StylePriority.UseFont = false;
            this.xrTableCell14.StylePriority.UsePadding = false;
            this.xrTableCell14.Weight = 203.18186948269329D;
            // 
            // xrTableCell16
            // 
            this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserForReport.UserGroupName")});
            this.xrTableCell16.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrTableCell16.Name = "xrTableCell16";
            this.xrTableCell16.OddStyleName = "xrControlStyle1";
            this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell16.StylePriority.UseBorders = false;
            this.xrTableCell16.StylePriority.UseFont = false;
            this.xrTableCell16.StylePriority.UsePadding = false;
            this.xrTableCell16.Weight = 180.05168789877291D;
            // 
            // xrTableCell18
            // 
            this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserForReport.RoleList")});
            this.xrTableCell18.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrTableCell18.Name = "xrTableCell18";
            this.xrTableCell18.OddStyleName = "xrControlStyle1";
            this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell18.StylePriority.UseBorders = false;
            this.xrTableCell18.StylePriority.UseFont = false;
            this.xrTableCell18.StylePriority.UsePadding = false;
            this.xrTableCell18.Weight = 190.86837970981054D;
            // 
            // TopMargin
            // 
            this.TopMargin.HeightF = 27F;
            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 = 30F;
            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 = "AMS_MasterConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.FilterString = "[V_SystemUserForReport.UserGroupName] Is Not Null";
            tableQuery1.Name = "V_SystemUserForReport";
            tableInfo1.Name = "V_SystemUserForReport";
            columnInfo1.Name = "PTJ_FullName";
            columnInfo2.Name = "User_Name";
            columnInfo3.Name = "User_EmployeeId";
            columnInfo4.Name = "Dsgt_Name";
            columnInfo5.Name = "UserGroupName";
            columnInfo6.Name = "User_Id";
            columnInfo7.Name = "RoleList";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5,
            columnInfo6,
            columnInfo7});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // pageHeaderBand1
            // 
            this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.pageHeaderBand1.HeightF = 41F;
            this.pageHeaderBand1.Name = "pageHeaderBand1";
            // 
            // xrTable1
            // 
            this.xrTable1.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(5F, 5F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3});
            this.xrTable1.SizeF = new System.Drawing.SizeF(1099.167F, 36F);
            // 
            // xrTableRow3
            // 
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell9,
            this.xrTableCell11,
            this.xrTableCell13,
            this.xrTableCell15,
            this.xrTableCell17});
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.CanGrow = false;
            this.xrTableCell7.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell7.StyleName = "FieldCaption";
            this.xrTableCell7.StylePriority.UseFont = false;
            this.xrTableCell7.StylePriority.UsePadding = false;
            this.xrTableCell7.StylePriority.UseTextAlignment = false;
            this.xrTableCell7.Text = "Pusat Tanggungjawab";
            this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell7.Weight = 182.36453283260471D;
            // 
            // xrTableCell9
            // 
            this.xrTableCell9.CanGrow = false;
            this.xrTableCell9.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell9.StyleName = "FieldCaption";
            this.xrTableCell9.StylePriority.UseFont = false;
            this.xrTableCell9.StylePriority.UsePadding = false;
            this.xrTableCell9.StylePriority.UseTextAlignment = false;
            this.xrTableCell9.Text = "Nama Staf";
            this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell9.Weight = 173.10817444750404D;
            // 
            // xrTableCell11
            // 
            this.xrTableCell11.CanGrow = false;
            this.xrTableCell11.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell11.StyleName = "FieldCaption";
            this.xrTableCell11.StylePriority.UseFont = false;
            this.xrTableCell11.StylePriority.UsePadding = false;
            this.xrTableCell11.StylePriority.UseTextAlignment = false;
            this.xrTableCell11.Text = "ID Staf";
            this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell11.Weight = 76.8742185372873D;
            // 
            // xrTableCell13
            // 
            this.xrTableCell13.CanGrow = false;
            this.xrTableCell13.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell13.Name = "xrTableCell13";
            this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell13.StyleName = "FieldCaption";
            this.xrTableCell13.StylePriority.UseFont = false;
            this.xrTableCell13.StylePriority.UsePadding = false;
            this.xrTableCell13.StylePriority.UseTextAlignment = false;
            this.xrTableCell13.Text = "Jawatan";
            this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell13.Weight = 158.9164577329127D;
            // 
            // xrTableCell15
            // 
            this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrTableCell15.CanGrow = false;
            this.xrTableCell15.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell15.Multiline = true;
            this.xrTableCell15.Name = "xrTableCell15";
            this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell15.StylePriority.UseBorders = false;
            this.xrTableCell15.StylePriority.UseFont = false;
            this.xrTableCell15.StylePriority.UsePadding = false;
            this.xrTableCell15.StylePriority.UseTextAlignment = false;
            this.xrTableCell15.Text = "Kumpulan Pengguna Sistem";
            this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell15.Weight = 157.67961154728346D;
            // 
            // xrTableCell17
            // 
            this.xrTableCell17.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrTableCell17.CanGrow = false;
            this.xrTableCell17.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell17.Name = "xrTableCell17";
            this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell17.StylePriority.UseBorders = false;
            this.xrTableCell17.StylePriority.UseFont = false;
            this.xrTableCell17.StylePriority.UsePadding = false;
            this.xrTableCell17.StylePriority.UseTextAlignment = false;
            this.xrTableCell17.Text = "Fungsian (Role)";
            this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell17.Weight = 157.67961154728346D;
            // 
            // 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;
            // 
            // 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.Name = "xrTableCell4";
            this.xrTableCell4.Text = "xrTableCell4";
            this.xrTableCell4.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Text = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // pageFooterBand1
            // 
            this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo2,
            this.lblAppName});
            this.pageFooterBand1.HeightF = 28F;
            this.pageFooterBand1.Name = "pageFooterBand1";
            // 
            // xrPageInfo2
            // 
            this.xrPageInfo2.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrPageInfo2.Format = "Mukasurat {0} daripada {1}";
            this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(864.1667F, 5F);
            this.xrPageInfo2.Name = "xrPageInfo2";
            this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrPageInfo2.SizeF = new System.Drawing.SizeF(233.8333F, 23F);
            this.xrPageInfo2.StyleName = "PageInfo";
            this.xrPageInfo2.StylePriority.UseFont = false;
            this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // lblAppName
            // 
            this.lblAppName.Font = new System.Drawing.Font("Calibri", 8F);
            this.lblAppName.LocationFloat = new DevExpress.Utils.PointFloat(5F, 5F);
            this.lblAppName.Name = "lblAppName";
            this.lblAppName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblAppName.SizeF = new System.Drawing.SizeF(524.1667F, 23F);
            this.lblAppName.StylePriority.UseFont = false;
            this.lblAppName.Text = "lblAppName";
            this.lblAppName.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lblAppName_BeforePrint);
            // 
            // reportHeaderBand1
            // 
            this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPictureBox1,
            this.xrLabel1,
            this.xrLabel2,
            this.xrLine1});
            this.reportHeaderBand1.HeightF = 80F;
            this.reportHeaderBand1.Name = "reportHeaderBand1";
            // 
            // xrPictureBox1
            // 
            this.xrPictureBox1.ImageUrl = "F:\\Projects\\Saf Pilihan\\AssetAndStoreManagementSystem\\AssetAndStoreManagementSyst" +
    "em\\Public\\Images\\Logo\\Logo.png";
            this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(8F, 0F);
            this.xrPictureBox1.Name = "xrPictureBox1";
            this.xrPictureBox1.SizeF = new System.Drawing.SizeF(80F, 80F);
            this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
            // 
            // xrLabel1
            // 
            this.xrLabel1.Font = new System.Drawing.Font("Tahoma", 16F, System.Drawing.FontStyle.Bold);
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(91.00001F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(689.9999F, 26.5F);
            this.xrLabel1.StyleName = "Title";
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.Text = "Universiti Pertahanan Nasional Malaysia";
            // 
            // xrLabel2
            // 
            this.xrLabel2.Font = new System.Drawing.Font("Tahoma", 10F);
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(91.00003F, 26.49999F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(689.9999F, 23.375F);
            this.xrLabel2.StyleName = "Title";
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.Text = "Senarai Pengguna Sistem";
            // 
            // xrLine1
            // 
            this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(91.00004F, 49.875F);
            this.xrLine1.Name = "xrLine1";
            this.xrLine1.SizeF = new System.Drawing.SizeF(1007F, 23F);
            // 
            // 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.Bottom;
            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);
            // 
            // xrControlStyle1
            // 
            this.xrControlStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xrControlStyle1.Name = "xrControlStyle1";
            this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            // 
            // Rpt_PenggunaSistem
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.pageHeaderBand1,
            this.pageFooterBand1,
            this.reportHeaderBand1});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "V_SystemUserForReport";
            this.DataSource = this.sqlDataSource1;
            this.Landscape = true;
            this.Margins = new System.Drawing.Printing.Margins(28, 33, 27, 30);
            this.PageHeight = 827;
            this.PageWidth = 1169;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField,
            this.xrControlStyle1});
            this.Version = "14.2";
            ((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.XtraReports.UI.XRSummary            xrSummary1   = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo22 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo23 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo24 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(rpt_ListeClient));
     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.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     ((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       = 6F;
     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;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrPictureBox2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrPictureBox1
     });
     this.ReportHeader.HeightF = 103.9583F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // ReportFooter
     //
     this.ReportFooter.HeightF = 40.625F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.HeightF = 0F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(229)))), ((int)(((byte)(244)))));
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(124.8751F, 70.54162F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(522.8749F, 33.41667F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "LISTE DES PASSAGERS";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "vrapportclient.logoEse")
     });
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(647.75F, 0F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(109.2083F, 103.9583F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox2.StylePriority.UseBorderColor = false;
     this.xrPictureBox2.StylePriority.UseBorders     = false;
     //
     // xrLabel3
     //
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.nomEse")
     });
     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(154.7918F, 3.147125E-05F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     this.xrLabel3.Text          = "xrLabel2";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.adresseEse")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(154.7918F, 23.00002F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrLabel2";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel5.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Font            = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat   = new DevExpress.Utils.PointFloat(154.7918F, 46.00002F);
     this.xrLabel5.Name            = "xrLabel5";
     this.xrLabel5.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF           = new System.Drawing.SizeF(439.5833F, 23.00002F);
     this.xrLabel5.StylePriority.UseBorderDashStyle = false;
     this.xrLabel5.StylePriority.UseBorders         = false;
     this.xrLabel5.StylePriority.UseFont            = false;
     this.xrLabel5.StylePriority.UseTextAlignment   = false;
     this.xrLabel5.Text          = "[telephoneEse] - [mailEse] - [sitewebEse]";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(744.4583F, 25F);
     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.xrTableCell7
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "N° ";
     this.xrTableCell1.Weight = 0.52624927817320077D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "NOM";
     this.xrTableCell2.Weight = 1.9795843162249431D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "ADRESSE";
     this.xrTableCell3.Weight = 1.21166617978079D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "CONTACT";
     this.xrTableCell4.Weight = 1.3962475796432192D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "MAIL";
     this.xrTableCell7.Weight = 2.33083677640526D;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(12.50002F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(744.4583F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name    = "xrTableCell5";
     xrSummary1.Func           = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell5.Summary = xrSummary1;
     this.xrTableCell5.Text    = "N° ";
     this.xrTableCell5.Weight  = 0.52624927817320077D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.noms")
     });
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "NOM";
     this.xrTableCell6.Weight = 1.9795843162249431D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.adresse")
     });
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "ADRESSE";
     this.xrTableCell8.Weight = 1.21166617978079D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.contact")
     });
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "CONTACT";
     this.xrTableCell9.Weight = 1.3962475796432192D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.mail")
     });
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "MAIL";
     this.xrTableCell10.Weight = 2.33083677640526D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_transpie_db_Connection 6";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "vrapportclient";
     tableInfo1.Name   = "vrapportclient";
     columnInfo1.Name  = "id";
     columnInfo2.Name  = "noms";
     columnInfo3.Name  = "adresse";
     columnInfo4.Name  = "contact";
     columnInfo5.Name  = "mail";
     columnInfo6.Name  = "typepieceid";
     columnInfo7.Name  = "numeropieceid";
     columnInfo8.Name  = "image";
     columnInfo9.Name  = "username";
     columnInfo10.Name = "password";
     columnInfo11.Name = "usersession";
     columnInfo12.Name = "compte";
     columnInfo13.Name = "qrCode";
     columnInfo14.Name = "photo";
     columnInfo15.Name = "nomEse";
     columnInfo16.Name = "adresseEse";
     columnInfo17.Name = "telephoneEse";
     columnInfo18.Name = "mailEse";
     columnInfo19.Name = "logoEse";
     columnInfo20.Name = "sitewebEse";
     columnInfo21.Name = "boitePostbEse";
     columnInfo22.Name = "rccmEse";
     columnInfo23.Name = "idNatEse";
     columnInfo24.Name = "NumImpotEse";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21,
         columnInfo22,
         columnInfo23,
         columnInfo24
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(12.50002F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(112.375F, 103.9583F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorderColor = false;
     this.xrPictureBox1.StylePriority.UseBorders     = false;
     //
     // rpt_ListeClient
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "vrapportclient";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(50, 35, 6, 100);
     this.Version    = "15.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()
        {
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            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.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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XtraReportQuestionnaire));
            DevExpress.DataAccess.Sql.TableQuery tableQuery2 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = 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();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrLabel2 = 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.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.sqlDataSource2 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
            this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource();
            this.objectDataSource2 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1,
            this.xrLabel2});
            this.Detail.HeightF = 32.37498F;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrTable1
            // 
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(328.125F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(229.7917F, 25F);
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell3});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Value", "{0}")});
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.StylePriority.UseBorderColor = false;
            this.xrTableCell3.StylePriority.UseBorders = false;
            this.xrTableCell3.StylePriority.UseTextAlignment = false;
            this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell3.Weight = 1D;
            // 
            // xrLabel2
            // 
            this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Key")});
            this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(264.5834F, 23F);
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            // 
            // 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.HeightF = 49F;
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // ReportHeader
            // 
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1});
            this.ReportHeader.HeightF = 77.08334F;
            this.ReportHeader.Name = "ReportHeader";
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6.357829E-05F, 10.00001F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(599.9999F, 57.08334F);
            this.xrLabel1.StylePriority.UseBorderColor = false;
            this.xrLabel1.StylePriority.UseBorders = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text = "Форма «опросник»";
            this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "DefaultConnection";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "AuditItems";
            tableInfo1.Name = "AuditItems";
            columnInfo1.Name = "Id";
            columnInfo2.Name = "Key";
            columnInfo3.Name = "UserValue";
            columnInfo4.Name = "AuditorValue";
            columnInfo5.Name = "Comment";
            columnInfo6.Name = "Audit_Id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5,
            columnInfo6});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // sqlDataSource2
            // 
            this.sqlDataSource2.ConnectionName = "DefaultConnection";
            this.sqlDataSource2.Name = "sqlDataSource2";
            tableQuery2.Name = "QuestionnaireItems";
            tableInfo2.Name = "QuestionnaireItems";
            columnInfo7.Name = "Id";
            columnInfo8.Name = "Key";
            columnInfo9.Name = "Value";
            columnInfo10.Name = "Questionnaire_Id";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo7,
            columnInfo8,
            columnInfo9,
            columnInfo10});
            tableQuery2.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo2});
            this.sqlDataSource2.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery2});
            this.sqlDataSource2.ResultSchemaSerializable = resources.GetString("sqlDataSource2.ResultSchemaSerializable");
            // 
            // ReportFooter
            // 
            this.ReportFooter.HeightF = 48.95833F;
            this.ReportFooter.Name = "ReportFooter";
            // 
            // PageFooter
            // 
            this.PageFooter.HeightF = 47.91667F;
            this.PageFooter.Name = "PageFooter";
            // 
            // objectDataSource1
            // 
            this.objectDataSource1.DataSource = typeof(Samruk.Web.Models.QuestionnaireItemViewModel);
            this.objectDataSource1.Name = "objectDataSource1";
            // 
            // objectDataSource2
            // 
            this.objectDataSource2.DataSource = typeof(Samruk.Web.Models.QuestionnaireItem);
            this.objectDataSource2.Name = "objectDataSource2";
            // 
            // XtraReportQuestionnaire
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.ReportFooter,
            this.PageFooter});
            this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
            this.objectDataSource1,
            this.objectDataSource2,
            this.sqlDataSource1,
            this.sqlDataSource2});
            this.DataSource = this.objectDataSource2;
            this.Margins = new System.Drawing.Printing.Margins(100, 127, 100, 49);
            this.PageHeight = 1169;
            this.PageWidth = 827;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Version = "14.2";
            this.DataSourceDemanded += new System.EventHandler<System.EventArgs>(this.XtraReportQuestionnaire_DataSourceDemanded);
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).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()
        {
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            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.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Rpt_KumpulanPenggunaSistem));
            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.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.pageHeaderBand1 = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell13 = 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.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.lblAppName = new DevExpress.XtraReports.UI.XRLabel();
            this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
            this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
            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.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
            this.xrSubreport1 = new DevExpress.XtraReports.UI.XRSubreport();
            this.rpt_Detail_KumpulanPenggunaSistem1 = new AssetAndStoreManagementSystem.PengurusanSistem.KumpulanPenggunaSistem.Rpt_Detail_KumpulanPenggunaSistem();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rpt_Detail_KumpulanPenggunaSistem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageBreak1,
            this.xrSubreport1,
            this.xrTable2});
            this.Detail.HeightF = 56.6667F;
            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(5F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow4});
            this.xrTable2.SizeF = new System.Drawing.SizeF(773F, 25F);
            // 
            // xrTableRow4
            // 
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell8,
            this.xrTableCell10,
            this.xrTableCell14,
            this.xrTableCell12});
            this.xrTableRow4.Name = "xrTableRow4";
            this.xrTableRow4.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserGroup.UserDefinedId")});
            this.xrTableCell8.Font = new System.Drawing.Font("Calibri", 9F);
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell8.StylePriority.UseFont = false;
            this.xrTableCell8.StylePriority.UsePadding = false;
            this.xrTableCell8.Weight = 2.0575860605637204D;
            // 
            // xrTableCell10
            // 
            this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserGroup.UserGroupName")});
            this.xrTableCell10.Font = new System.Drawing.Font("Calibri", 9F);
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell10.StylePriority.UseFont = false;
            this.xrTableCell10.StylePriority.UsePadding = false;
            this.xrTableCell10.Weight = 3.9370220947265615D;
            // 
            // xrTableCell14
            // 
            this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserGroup.MemberCount")});
            this.xrTableCell14.Font = new System.Drawing.Font("Calibri", 9F);
            this.xrTableCell14.Name = "xrTableCell14";
            this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell14.StylePriority.UseFont = false;
            this.xrTableCell14.StylePriority.UsePadding = false;
            this.xrTableCell14.Weight = 0.82200622558593706D;
            // 
            // xrTableCell12
            // 
            this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_SystemUserGroup.ActiveIndicatorText")});
            this.xrTableCell12.Font = new System.Drawing.Font("Calibri", 9F);
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell12.StylePriority.UseFont = false;
            this.xrTableCell12.StylePriority.UsePadding = false;
            this.xrTableCell12.Weight = 0.91338562011718749D;
            // 
            // TopMargin
            // 
            this.TopMargin.HeightF = 26.66667F;
            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 = 31.99999F;
            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 = "AMS_MasterConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "V_SystemUserGroup";
            tableInfo1.Name = "V_SystemUserGroup";
            columnInfo1.Name = "UserGroupId";
            columnInfo2.Name = "UserDefinedId";
            columnInfo3.Name = "UserGroupName";
            columnInfo4.Name = "ActiveIndicatorText";
            columnInfo5.Name = "MemberCount";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // pageHeaderBand1
            // 
            this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.pageHeaderBand1.HeightF = 41F;
            this.pageHeaderBand1.Name = "pageHeaderBand1";
            // 
            // xrTable1
            // 
            this.xrTable1.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
            this.xrTable1.Font = new System.Drawing.Font("Calibri", 9.75F);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(5F, 5F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3});
            this.xrTable1.SizeF = new System.Drawing.SizeF(773F, 36F);
            this.xrTable1.StylePriority.UseFont = false;
            // 
            // xrTableRow3
            // 
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell9,
            this.xrTableCell11,
            this.xrTableCell13});
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.CanGrow = false;
            this.xrTableCell7.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell7.StyleName = "FieldCaption";
            this.xrTableCell7.StylePriority.UseFont = false;
            this.xrTableCell7.StylePriority.UsePadding = false;
            this.xrTableCell7.StylePriority.UseTextAlignment = false;
            this.xrTableCell7.Text = "Nama ";
            this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell7.Weight = 84.912031047865469D;
            // 
            // xrTableCell9
            // 
            this.xrTableCell9.CanGrow = false;
            this.xrTableCell9.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell9.StyleName = "FieldCaption";
            this.xrTableCell9.StylePriority.UseFont = false;
            this.xrTableCell9.StylePriority.UsePadding = false;
            this.xrTableCell9.StylePriority.UseTextAlignment = false;
            this.xrTableCell9.Text = "Keterangan";
            this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell9.Weight = 162.47218628719276D;
            // 
            // xrTableCell11
            // 
            this.xrTableCell11.CanGrow = false;
            this.xrTableCell11.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell11.StyleName = "FieldCaption";
            this.xrTableCell11.StylePriority.UseFont = false;
            this.xrTableCell11.StylePriority.UsePadding = false;
            this.xrTableCell11.StylePriority.UseTextAlignment = false;
            this.xrTableCell11.Text = "Jumlah Ahli";
            this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell11.Weight = 33.922377187869529D;
            // 
            // xrTableCell13
            // 
            this.xrTableCell13.CanGrow = false;
            this.xrTableCell13.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell13.Name = "xrTableCell13";
            this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTableCell13.StyleName = "FieldCaption";
            this.xrTableCell13.StylePriority.UseFont = false;
            this.xrTableCell13.StylePriority.UsePadding = false;
            this.xrTableCell13.StylePriority.UseTextAlignment = false;
            this.xrTableCell13.Text = "Status";
            this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
            this.xrTableCell13.Weight = 37.693405477072261D;
            // 
            // 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;
            // 
            // 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.Name = "xrTableCell4";
            this.xrTableCell4.Text = "xrTableCell4";
            this.xrTableCell4.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Text = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // pageFooterBand1
            // 
            this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.lblAppName,
            this.xrPageInfo2});
            this.pageFooterBand1.HeightF = 28F;
            this.pageFooterBand1.Name = "pageFooterBand1";
            // 
            // lblAppName
            // 
            this.lblAppName.Font = new System.Drawing.Font("Calibri", 8F);
            this.lblAppName.LocationFloat = new DevExpress.Utils.PointFloat(5F, 5F);
            this.lblAppName.Name = "lblAppName";
            this.lblAppName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblAppName.SizeF = new System.Drawing.SizeF(524.1667F, 23F);
            this.lblAppName.StylePriority.UseFont = false;
            this.lblAppName.Text = "lblAppName";
            this.lblAppName.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lblAppName_BeforePrint);
            // 
            // xrPageInfo2
            // 
            this.xrPageInfo2.Font = new System.Drawing.Font("Calibri", 8F);
            this.xrPageInfo2.Format = "Mukasurat {0} daripada {1}";
            this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(544.1667F, 5F);
            this.xrPageInfo2.Name = "xrPageInfo2";
            this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrPageInfo2.SizeF = new System.Drawing.SizeF(233.8333F, 23F);
            this.xrPageInfo2.StyleName = "PageInfo";
            this.xrPageInfo2.StylePriority.UseFont = false;
            this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // reportHeaderBand1
            // 
            this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPictureBox1,
            this.xrLabel1,
            this.xrLabel2,
            this.xrLine1});
            this.reportHeaderBand1.HeightF = 80F;
            this.reportHeaderBand1.Name = "reportHeaderBand1";
            // 
            // xrPictureBox1
            // 
            this.xrPictureBox1.ImageUrl = "F:\\Projects\\Saf Pilihan\\AssetAndStoreManagementSystem\\AssetAndStoreManagementSyst" +
    "em\\Public\\Images\\Logo\\Logo.png";
            this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(5F, 0F);
            this.xrPictureBox1.Name = "xrPictureBox1";
            this.xrPictureBox1.SizeF = new System.Drawing.SizeF(80F, 80F);
            this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
            // 
            // xrLabel1
            // 
            this.xrLabel1.Font = new System.Drawing.Font("Tahoma", 16F, System.Drawing.FontStyle.Bold);
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(88.00001F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(689.9999F, 26.5F);
            this.xrLabel1.StyleName = "Title";
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.Text = "Universiti Pertahanan Nasional Malaysia";
            // 
            // xrLabel2
            // 
            this.xrLabel2.Font = new System.Drawing.Font("Tahoma", 10F);
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(88.00003F, 26.49999F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(689.9999F, 23.375F);
            this.xrLabel2.StyleName = "Title";
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.Text = "Senarai Kumpulan Pengguna Sistem";
            // 
            // xrLine1
            // 
            this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(88.00003F, 49.875F);
            this.xrLine1.Name = "xrLine1";
            this.xrLine1.SizeF = new System.Drawing.SizeF(690F, 23F);
            // 
            // 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.Bottom;
            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);
            // 
            // xrPageBreak1
            // 
            this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 54.6667F);
            this.xrPageBreak1.Name = "xrPageBreak1";
            // 
            // xrSubreport1
            // 
            this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(21.66667F, 31.66667F);
            this.xrSubreport1.Name = "xrSubreport1";
            this.xrSubreport1.ReportSource = new AssetAndStoreManagementSystem.PengurusanSistem.KumpulanPenggunaSistem.Rpt_Detail_KumpulanPenggunaSistem();
            this.xrSubreport1.SizeF = new System.Drawing.SizeF(756.3332F, 23.00001F);
            this.xrSubreport1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrSubreport1_BeforePrint);
            // 
            // rpt_Detail_KumpulanPenggunaSistem1
            // 
            this.rpt_Detail_KumpulanPenggunaSistem1.DataMember = "SP_SystemUserGroup_MenuItem_Vs_GroupCredentials";
            this.rpt_Detail_KumpulanPenggunaSistem1.Margins = new System.Drawing.Printing.Margins(35, 43, 22, 24);
            this.rpt_Detail_KumpulanPenggunaSistem1.Name = "rpt_Detail_KumpulanPenggunaSistem1";
            this.rpt_Detail_KumpulanPenggunaSistem1.PageHeight = 1100;
            this.rpt_Detail_KumpulanPenggunaSistem1.PageWidth = 850;
            this.rpt_Detail_KumpulanPenggunaSistem1.RequestParameters = false;
            this.rpt_Detail_KumpulanPenggunaSistem1.Version = "14.2";
            // 
            // Rpt_KumpulanPenggunaSistem
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.pageHeaderBand1,
            this.pageFooterBand1,
            this.reportHeaderBand1});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "V_SystemUserGroup";
            this.DataSource = this.sqlDataSource1;
            this.Margins = new System.Drawing.Printing.Margins(27, 35, 27, 32);
            this.RequestParameters = false;
            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.rpt_Detail_KumpulanPenggunaSistem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
	/// <summary>
	/// Required method for Designer support - do not modify
	/// the contents of this method with the code editor.
	/// </summary>
	public void InitializeComponent() {
            string resourceFileName = "OgrenciSinifListesi.resx";
            System.Resources.ResourceManager resources = global::Resources.OgrenciSinifListesi.ResourceManager;
            this.components = new System.ComponentModel.Container();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo();
            DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
            this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
            this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
            this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
            this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
            this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components);
            this.cat_id = new DevExpress.XtraReports.Parameters.Parameter();
            this.dersid = new DevExpress.XtraReports.Parameters.Parameter();
            this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "CustomSqlQuery";
            relationColumnInfo1.NestedKeyColumn = "ogr_no";
            relationColumnInfo1.ParentKeyColumn = "ogr_no";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "Ogrenci";
            relationInfo1.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo2.NestedKeyColumn = "Sinav_id";
            relationColumnInfo2.ParentKeyColumn = "Sinav_id";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "Sinavlar";
            relationInfo2.ParentTable = "ogr_sinav_derslik";
            relationColumnInfo3.NestedKeyColumn = "ders_id";
            relationColumnInfo3.ParentKeyColumn = "ders_id";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "Dersler";
            relationInfo3.ParentTable = "Sinavlar";
            relationColumnInfo4.NestedKeyColumn = "derslik_id";
            relationColumnInfo4.ParentKeyColumn = "derslik_id";
            relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo4});
            relationInfo4.NestedTable = "Derslik";
            relationInfo4.ParentTable = "ogr_sinav_derslik";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3,
            relationInfo4});
            tableInfo1.Name = "ogr_sinav_derslik";
            columnInfo1.Name = "ogr_no";
            columnInfo2.Name = "Sinav_id";
            columnInfo3.Name = "derslik_id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3});
            tableInfo2.Name = "Ogrenci";
            columnInfo4.Name = "ogr_adi";
            columnInfo5.Name = "ogr_soyadi";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo4,
            columnInfo5});
            tableInfo3.Name = "Sinavlar";
            columnInfo6.Name = "ders_id";
            columnInfo7.Name = "tarih";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo6,
            columnInfo7});
            tableInfo4.Name = "Dersler";
            columnInfo8.Alias = "Dersler_ders_id";
            columnInfo8.Name = "ders_id";
            columnInfo9.Name = "ders_adi";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo8,
            columnInfo9});
            tableInfo5.Name = "Derslik";
            columnInfo10.Name = "derslik_adi";
            tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo10});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1,
            tableInfo2,
            tableInfo3,
            tableInfo4,
            tableInfo5});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2});
            this.Detail.HeightF = 24.93844F;
            this.Detail.MultiColumn.ColumnSpacing = 10F;
            this.Detail.MultiColumn.ColumnWidth = 355F;
            this.Detail.MultiColumn.Layout = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
            this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
            this.Detail.Name = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StyleName = "DataField";
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrTable2
            // 
            this.xrTable2.BackColor = System.Drawing.Color.Transparent;
            this.xrTable2.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F);
            this.xrTable2.ForeColor = System.Drawing.Color.Black;
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(737.5F, 24.39223F);
            this.xrTable2.StylePriority.UseBackColor = false;
            this.xrTable2.StylePriority.UseBorderColor = false;
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont = false;
            this.xrTable2.StylePriority.UseForeColor = false;
            this.xrTable2.StylePriority.UsePadding = false;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell5,
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_no")});
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_adi")});
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_soyadi")});
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Text = "xrTableCell7";
            this.xrTableCell7.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.derslik_adi")});
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Weight = 1D;
            // 
            // Title
            // 
            this.Title.BackColor = System.Drawing.Color.Transparent;
            this.Title.BorderColor = System.Drawing.Color.Black;
            this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.Title.BorderWidth = 1F;
            this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
            this.Title.ForeColor = System.Drawing.Color.Maroon;
            this.Title.Name = "Title";
            // 
            // FieldCaption
            // 
            this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
            this.FieldCaption.BorderColor = System.Drawing.Color.Black;
            this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.FieldCaption.BorderWidth = 1F;
            this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
            this.FieldCaption.Name = "FieldCaption";
            // 
            // PageInfo
            // 
            this.PageInfo.BackColor = System.Drawing.Color.Transparent;
            this.PageInfo.BorderColor = System.Drawing.Color.Black;
            this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.PageInfo.BorderWidth = 1F;
            this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.PageInfo.ForeColor = System.Drawing.Color.Black;
            this.PageInfo.Name = "PageInfo";
            // 
            // DataField
            // 
            this.DataField.BackColor = System.Drawing.Color.Transparent;
            this.DataField.BorderColor = System.Drawing.Color.Black;
            this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.DataField.BorderWidth = 1F;
            this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.DataField.ForeColor = System.Drawing.Color.Black;
            this.DataField.Name = "DataField";
            this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            // 
            // topMarginBand1
            // 
            this.topMarginBand1.HeightF = 0F;
            this.topMarginBand1.Name = "topMarginBand1";
            // 
            // bottomMarginBand1
            // 
            this.bottomMarginBand1.HeightF = 0F;
            this.bottomMarginBand1.Name = "bottomMarginBand1";
            // 
            // ReportHeader
            // 
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1});
            this.ReportHeader.HeightF = 27.41666F;
            this.ReportHeader.Name = "ReportHeader";
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrLabel1.BorderWidth = 14F;
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrLabel1.ForeColor = System.Drawing.Color.Black;
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(253.125F, 26.41666F);
            this.xrLabel1.StylePriority.UseBorderColor = false;
            this.xrLabel1.StylePriority.UseBorderWidth = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseForeColor = false;
            this.xrLabel1.Text = "Öğrenci Sınıf Listesi";
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.PageHeader.HeightF = 33.37498F;
            this.PageHeader.Name = "PageHeader";
            // 
            // xrTable1
            // 
            this.xrTable1.BackColor = System.Drawing.Color.SlateGray;
            this.xrTable1.BorderColor = System.Drawing.Color.Gainsboro;
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) 
            | DevExpress.XtraPrinting.BorderSide.Right) 
            | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(737.5F, 32.29167F);
            this.xrTable1.StylePriority.UseBackColor = false;
            this.xrTable1.StylePriority.UseBorderColor = false;
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseFont = false;
            this.xrTable1.StylePriority.UsePadding = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.Text = "Öğrenci Numarası";
            this.xrTableCell1.Weight = 1D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Text = "Öğrenci Adi";
            this.xrTableCell2.Weight = 1D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.Text = "Öğrenci Soyadı";
            this.xrTableCell3.Weight = 1D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.Text = "Derslik";
            this.xrTableCell4.Weight = 1D;
            // 
            // sharedImageCollection1
            // 
            // 
            // 
            // 
            this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream")));
            this.sharedImageCollection1.ParentControl = null;
            // 
            // cat_id
            // 
            this.cat_id.Description = "categoryid";
            this.cat_id.Name = "cat_id";
            this.cat_id.Type = typeof(int);
            this.cat_id.ValueInfo = "1";
            this.cat_id.Visible = false;
            // 
            // dersid
            // 
            this.dersid.Description = "dersid";
            this.dersid.Name = "dersid";
            this.dersid.Type = typeof(int);
            this.dersid.ValueInfo = "0";
            this.dersid.Visible = false;
            // 
            // formattingRule1
            // 
            this.formattingRule1.Name = "formattingRule1";
            // 
            // XtraReport1
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.topMarginBand1,
            this.bottomMarginBand1,
            this.ReportHeader,
            this.PageHeader});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "CustomSqlQuery";
            this.DataSource = this.sqlDataSource1;
            this.FilterString = "[Sinav_id] = ?dersid";
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
            this.formattingRule1});
            this.Margins = new System.Drawing.Printing.Margins(65, 0, 0, 0);
            this.PageHeight = 1169;
            this.PageWidth = 827;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.cat_id,
            this.dersid});
            this.ReportPrintOptions.DetailCountOnEmptyDataSource = 12;
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

	}
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            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.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AutoReport));
            DevExpress.DataAccess.Sql.TableQuery tableQuery2 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.TableInfo tableInfo2 = 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.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();
            this.files = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.folders = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.labelControlFolderDown = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFolderUp = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFolderDelete = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFolderNew = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFileDown = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFileNew = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFileUp = new DevExpress.XtraEditors.LabelControl();
            this.labelControlFileDelete = new DevExpress.XtraEditors.LabelControl();
            this.xpCollectionFolders = new DevExpress.Xpo.XPCollection(this.components);
            this.session1 = new DevExpress.Xpo.Session(this.components);
            this.xpCollectionFiles = new DevExpress.Xpo.XPCollection(this.components);
            this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
            this.unitOfWork1 = new DevExpress.Xpo.UnitOfWork(this.components);
            this.splitContainerMain = new System.Windows.Forms.SplitContainer();
            this.splitContainerTop = new System.Windows.Forms.SplitContainer();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.splitContainerTopTop = new System.Windows.Forms.SplitContainer();
            this.gridControlFolder = new DevExpress.XtraGrid.GridControl();
            this.gridViewFolder = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colpath1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colprocessingOrder1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.coldoRefresh = new DevExpress.XtraGrid.Columns.GridColumn();
            this.coldoExport = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colschedule1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.splitContainerBottom = new System.Windows.Forms.SplitContainer();
            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
            this.splitContainerBottomBottom = new System.Windows.Forms.SplitContainer();
            this.gridControlFile = new DevExpress.XtraGrid.GridControl();
            this.gridViewFile = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colpath = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colprocessingOrder = new DevExpress.XtraGrid.Columns.GridColumn();
            this.coldoRefresh1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.coldoExport1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colschedule = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            ((System.ComponentModel.ISupportInitialize)(this.xpCollectionFolders)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.session1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xpCollectionFiles)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.unitOfWork1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerMain)).BeginInit();
            this.splitContainerMain.Panel1.SuspendLayout();
            this.splitContainerMain.Panel2.SuspendLayout();
            this.splitContainerMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerTop)).BeginInit();
            this.splitContainerTop.Panel1.SuspendLayout();
            this.splitContainerTop.Panel2.SuspendLayout();
            this.splitContainerTop.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerTopTop)).BeginInit();
            this.splitContainerTopTop.Panel2.SuspendLayout();
            this.splitContainerTopTop.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlFolder)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFolder)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerBottom)).BeginInit();
            this.splitContainerBottom.Panel1.SuspendLayout();
            this.splitContainerBottom.Panel2.SuspendLayout();
            this.splitContainerBottom.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerBottomBottom)).BeginInit();
            this.splitContainerBottomBottom.Panel2.SuspendLayout();
            this.splitContainerBottomBottom.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlFile)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFile)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            this.SuspendLayout();
            // 
            // files
            // 
            this.files.ConnectionName = "files";
            this.files.Name = "files";
            tableQuery1.Name = "files";
            tableInfo1.Name = "files";
            columnInfo1.Alias = "Path";
            columnInfo1.Name = "path";
            columnInfo2.Alias = "Refresh";
            columnInfo2.Name = "doRefresh";
            columnInfo3.Alias = "Export";
            columnInfo3.Name = "doExport";
            columnInfo4.Alias = "Processing Order";
            columnInfo4.Name = "processingOrder";
            columnInfo5.Alias = "Schedule";
            columnInfo5.Name = "schedule";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1});
            this.files.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.files.ResultSchemaSerializable = resources.GetString("files.ResultSchemaSerializable");
            // 
            // folders
            // 
            this.folders.ConnectionName = "folders";
            this.folders.Name = "folders";
            tableQuery2.Name = "folders";
            tableInfo2.Name = "folders";
            columnInfo6.Alias = "Path";
            columnInfo6.Name = "path";
            columnInfo7.Alias = "Refresh";
            columnInfo7.Name = "doRefresh";
            columnInfo8.Alias = "Export";
            columnInfo8.Name = "doExport";
            columnInfo9.Alias = "Processing Order";
            columnInfo9.Name = "processingOrder";
            columnInfo10.Alias = "Schedule";
            columnInfo10.Name = "schedule";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo6,
            columnInfo7,
            columnInfo8,
            columnInfo9,
            columnInfo10});
            tableQuery2.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo2});
            this.folders.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery2});
            this.folders.ResultSchemaSerializable = resources.GetString("folders.ResultSchemaSerializable");
            // 
            // labelControlFolderDown
            // 
            this.labelControlFolderDown.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFolderDown.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFolderDown.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFolderDown.Appearance.Image")));
            this.labelControlFolderDown.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFolderDown.Location = new System.Drawing.Point(8, 179);
            this.labelControlFolderDown.Name = "labelControlFolderDown";
            this.labelControlFolderDown.Size = new System.Drawing.Size(99, 36);
            this.labelControlFolderDown.TabIndex = 5;
            this.labelControlFolderDown.Text = "Move Down";
            this.labelControlFolderDown.Click += new System.EventHandler(this.labelControlFolderDown_Click);
            // 
            // labelControlFolderUp
            // 
            this.labelControlFolderUp.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFolderUp.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFolderUp.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFolderUp.Appearance.Image")));
            this.labelControlFolderUp.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFolderUp.Location = new System.Drawing.Point(8, 137);
            this.labelControlFolderUp.Name = "labelControlFolderUp";
            this.labelControlFolderUp.Size = new System.Drawing.Size(83, 36);
            this.labelControlFolderUp.TabIndex = 4;
            this.labelControlFolderUp.Text = "Move Up";
            this.labelControlFolderUp.Click += new System.EventHandler(this.labelControlFolderUp_Click);
            // 
            // labelControlFolderDelete
            // 
            this.labelControlFolderDelete.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFolderDelete.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFolderDelete.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFolderDelete.Appearance.Image")));
            this.labelControlFolderDelete.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFolderDelete.Location = new System.Drawing.Point(8, 95);
            this.labelControlFolderDelete.Name = "labelControlFolderDelete";
            this.labelControlFolderDelete.Size = new System.Drawing.Size(70, 36);
            this.labelControlFolderDelete.TabIndex = 1;
            this.labelControlFolderDelete.Text = "Delete";
            this.labelControlFolderDelete.Click += new System.EventHandler(this.labelControlFolderDelete_Click);
            // 
            // labelControlFolderNew
            // 
            this.labelControlFolderNew.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFolderNew.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFolderNew.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFolderNew.Appearance.Image")));
            this.labelControlFolderNew.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFolderNew.Location = new System.Drawing.Point(8, 53);
            this.labelControlFolderNew.Name = "labelControlFolderNew";
            this.labelControlFolderNew.Size = new System.Drawing.Size(60, 36);
            this.labelControlFolderNew.TabIndex = 0;
            this.labelControlFolderNew.Text = "New";
            this.labelControlFolderNew.Click += new System.EventHandler(this.labelControlFolderNew_Click);
            // 
            // labelControlFileDown
            // 
            this.labelControlFileDown.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFileDown.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFileDown.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFileDown.Appearance.Image")));
            this.labelControlFileDown.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFileDown.Location = new System.Drawing.Point(8, 182);
            this.labelControlFileDown.Name = "labelControlFileDown";
            this.labelControlFileDown.Size = new System.Drawing.Size(99, 36);
            this.labelControlFileDown.TabIndex = 9;
            this.labelControlFileDown.Text = "Move Down";
            this.labelControlFileDown.Click += new System.EventHandler(this.labelControlFileDown_Click);
            // 
            // labelControlFileNew
            // 
            this.labelControlFileNew.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFileNew.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFileNew.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFileNew.Appearance.Image")));
            this.labelControlFileNew.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFileNew.Location = new System.Drawing.Point(8, 56);
            this.labelControlFileNew.Name = "labelControlFileNew";
            this.labelControlFileNew.Size = new System.Drawing.Size(60, 36);
            this.labelControlFileNew.TabIndex = 6;
            this.labelControlFileNew.Text = "New";
            this.labelControlFileNew.Click += new System.EventHandler(this.labelControlFileNew_Click);
            // 
            // labelControlFileUp
            // 
            this.labelControlFileUp.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFileUp.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFileUp.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFileUp.Appearance.Image")));
            this.labelControlFileUp.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFileUp.Location = new System.Drawing.Point(8, 140);
            this.labelControlFileUp.Name = "labelControlFileUp";
            this.labelControlFileUp.Size = new System.Drawing.Size(83, 36);
            this.labelControlFileUp.TabIndex = 8;
            this.labelControlFileUp.Text = "Move Up";
            this.labelControlFileUp.Click += new System.EventHandler(this.labelControlFileUp_Click);
            // 
            // labelControlFileDelete
            // 
            this.labelControlFileDelete.Appearance.Font = new System.Drawing.Font("Segoe UI", 8.25F);
            this.labelControlFileDelete.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControlFileDelete.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("labelControlFileDelete.Appearance.Image")));
            this.labelControlFileDelete.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
            this.labelControlFileDelete.Location = new System.Drawing.Point(8, 98);
            this.labelControlFileDelete.Name = "labelControlFileDelete";
            this.labelControlFileDelete.Size = new System.Drawing.Size(70, 36);
            this.labelControlFileDelete.TabIndex = 7;
            this.labelControlFileDelete.Text = "Delete";
            this.labelControlFileDelete.Click += new System.EventHandler(this.labelControlFileDelete_Click);
            // 
            // xpCollectionFolders
            // 
            this.xpCollectionFolders.DeleteObjectOnRemove = true;
            this.xpCollectionFolders.ObjectType = typeof(WF_Report_Refresh.AppDatabase.folders);
            this.xpCollectionFolders.Session = this.session1;
            this.xpCollectionFolders.Sorting.AddRange(new DevExpress.Xpo.SortProperty[] {
            new DevExpress.Xpo.SortProperty("[processingOrder]", DevExpress.Xpo.DB.SortingDirection.Ascending)});
            // 
            // session1
            // 
            this.session1.IsObjectModifiedOnNonPersistentPropertyChange = null;
            this.session1.TrackPropertiesModifications = false;
            // 
            // xpCollectionFiles
            // 
            this.xpCollectionFiles.DeleteObjectOnRemove = true;
            this.xpCollectionFiles.ObjectType = typeof(WF_Report_Refresh.AppDatabase.files);
            this.xpCollectionFiles.Session = this.session1;
            this.xpCollectionFiles.Sorting.AddRange(new DevExpress.Xpo.SortProperty[] {
            new DevExpress.Xpo.SortProperty("[processingOrder]", DevExpress.Xpo.DB.SortingDirection.Ascending)});
            // 
            // defaultLookAndFeel1
            // 
            this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2013";
            // 
            // unitOfWork1
            // 
            this.unitOfWork1.IsObjectModifiedOnNonPersistentPropertyChange = null;
            this.unitOfWork1.TrackPropertiesModifications = false;
            // 
            // splitContainerMain
            // 
            this.splitContainerMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerMain.IsSplitterFixed = true;
            this.splitContainerMain.Location = new System.Drawing.Point(0, 0);
            this.splitContainerMain.Name = "splitContainerMain";
            this.splitContainerMain.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerMain.Panel1
            // 
            this.splitContainerMain.Panel1.Controls.Add(this.splitContainerTop);
            // 
            // splitContainerMain.Panel2
            // 
            this.splitContainerMain.Panel2.Controls.Add(this.splitContainerBottom);
            this.splitContainerMain.Size = new System.Drawing.Size(984, 962);
            this.splitContainerMain.SplitterDistance = 481;
            this.splitContainerMain.SplitterWidth = 20;
            this.splitContainerMain.TabIndex = 13;
            this.splitContainerMain.TabStop = false;
            // 
            // splitContainerTop
            // 
            this.splitContainerTop.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerTop.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainerTop.IsSplitterFixed = true;
            this.splitContainerTop.Location = new System.Drawing.Point(0, 0);
            this.splitContainerTop.Name = "splitContainerTop";
            // 
            // splitContainerTop.Panel1
            // 
            this.splitContainerTop.Panel1.BackColor = System.Drawing.Color.SteelBlue;
            this.splitContainerTop.Panel1.Controls.Add(this.labelControl1);
            this.splitContainerTop.Panel1.Controls.Add(this.labelControlFolderUp);
            this.splitContainerTop.Panel1.Controls.Add(this.labelControlFolderNew);
            this.splitContainerTop.Panel1.Controls.Add(this.labelControlFolderDown);
            this.splitContainerTop.Panel1.Controls.Add(this.labelControlFolderDelete);
            this.splitContainerTop.Panel1MinSize = 50;
            // 
            // splitContainerTop.Panel2
            // 
            this.splitContainerTop.Panel2.Controls.Add(this.splitContainerTopTop);
            this.splitContainerTop.Size = new System.Drawing.Size(984, 481);
            this.splitContainerTop.SplitterDistance = 185;
            this.splitContainerTop.TabIndex = 7;
            this.splitContainerTop.TabStop = false;
            // 
            // labelControl1
            // 
            this.labelControl1.Appearance.Font = new System.Drawing.Font("Segoe UI Light", 16F);
            this.labelControl1.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControl1.Location = new System.Drawing.Point(8, 12);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(64, 30);
            this.labelControl1.TabIndex = 6;
            this.labelControl1.Text = "Folders";
            // 
            // splitContainerTopTop
            // 
            this.splitContainerTopTop.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerTopTop.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainerTopTop.IsSplitterFixed = true;
            this.splitContainerTopTop.Location = new System.Drawing.Point(0, 0);
            this.splitContainerTopTop.Name = "splitContainerTopTop";
            this.splitContainerTopTop.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerTopTop.Panel1
            // 
            this.splitContainerTopTop.Panel1.BackColor = System.Drawing.Color.SteelBlue;
            this.splitContainerTopTop.Panel1MinSize = 10;
            // 
            // splitContainerTopTop.Panel2
            // 
            this.splitContainerTopTop.Panel2.Controls.Add(this.gridControlFolder);
            this.splitContainerTopTop.Size = new System.Drawing.Size(795, 481);
            this.splitContainerTopTop.SplitterDistance = 25;
            this.splitContainerTopTop.TabIndex = 2;
            this.splitContainerTopTop.TabStop = false;
            // 
            // gridControlFolder
            // 
            this.gridControlFolder.DataSource = this.xpCollectionFolders;
            this.gridControlFolder.Dock = System.Windows.Forms.DockStyle.Left;
            this.gridControlFolder.Location = new System.Drawing.Point(0, 0);
            this.gridControlFolder.MainView = this.gridViewFolder;
            this.gridControlFolder.Name = "gridControlFolder";
            this.gridControlFolder.Size = new System.Drawing.Size(1000, 452);
            this.gridControlFolder.TabIndex = 0;
            this.gridControlFolder.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewFolder,
            this.gridView1});
            // 
            // gridViewFolder
            // 
            this.gridViewFolder.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colpath1,
            this.colprocessingOrder1,
            this.coldoRefresh,
            this.coldoExport,
            this.colschedule1});
            this.gridViewFolder.GridControl = this.gridControlFolder;
            this.gridViewFolder.Name = "gridViewFolder";
            this.gridViewFolder.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewFolder.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
            this.gridViewFolder.OptionsBehavior.EditingMode = DevExpress.XtraGrid.Views.Grid.GridEditingMode.Inplace;
            this.gridViewFolder.OptionsCustomization.AllowSort = false;
            this.gridViewFolder.OptionsEditForm.EditFormColumnCount = 10;
            this.gridViewFolder.OptionsView.ShowGroupPanel = false;
            // 
            // colpath1
            // 
            this.colpath1.Caption = "Path";
            this.colpath1.FieldName = "path";
            this.colpath1.MaxWidth = 600;
            this.colpath1.MinWidth = 600;
            this.colpath1.Name = "colpath1";
            this.colpath1.OptionsColumn.AllowEdit = false;
            this.colpath1.OptionsColumn.FixedWidth = true;
            this.colpath1.OptionsColumn.ReadOnly = true;
            this.colpath1.OptionsEditForm.Visible = DevExpress.Utils.DefaultBoolean.False;
            this.colpath1.Visible = true;
            this.colpath1.VisibleIndex = 0;
            // 
            // colprocessingOrder1
            // 
            this.colprocessingOrder1.Caption = "Processing Order";
            this.colprocessingOrder1.FieldName = "processingOrder";
            this.colprocessingOrder1.MaxWidth = 100;
            this.colprocessingOrder1.MinWidth = 100;
            this.colprocessingOrder1.Name = "colprocessingOrder1";
            this.colprocessingOrder1.OptionsColumn.AllowEdit = false;
            this.colprocessingOrder1.OptionsColumn.FixedWidth = true;
            this.colprocessingOrder1.OptionsColumn.ReadOnly = true;
            this.colprocessingOrder1.OptionsEditForm.Visible = DevExpress.Utils.DefaultBoolean.False;
            this.colprocessingOrder1.Visible = true;
            this.colprocessingOrder1.VisibleIndex = 1;
            this.colprocessingOrder1.Width = 40;
            // 
            // coldoRefresh
            // 
            this.coldoRefresh.Caption = "Refresh";
            this.coldoRefresh.FieldName = "doRefresh";
            this.coldoRefresh.MaxWidth = 50;
            this.coldoRefresh.MinWidth = 50;
            this.coldoRefresh.Name = "coldoRefresh";
            this.coldoRefresh.OptionsColumn.FixedWidth = true;
            this.coldoRefresh.Visible = true;
            this.coldoRefresh.VisibleIndex = 2;
            this.coldoRefresh.Width = 20;
            // 
            // coldoExport
            // 
            this.coldoExport.Caption = "Export";
            this.coldoExport.FieldName = "doExport";
            this.coldoExport.MaxWidth = 50;
            this.coldoExport.MinWidth = 50;
            this.coldoExport.Name = "coldoExport";
            this.coldoExport.OptionsColumn.FixedWidth = true;
            this.coldoExport.Visible = true;
            this.coldoExport.VisibleIndex = 3;
            this.coldoExport.Width = 20;
            // 
            // colschedule1
            // 
            this.colschedule1.Caption = "Schedule";
            this.colschedule1.FieldName = "schedule";
            this.colschedule1.MaxWidth = 150;
            this.colschedule1.MinWidth = 150;
            this.colschedule1.Name = "colschedule1";
            this.colschedule1.OptionsColumn.FixedWidth = true;
            this.colschedule1.Visible = true;
            this.colschedule1.VisibleIndex = 4;
            this.colschedule1.Width = 20;
            // 
            // gridView1
            // 
            this.gridView1.GridControl = this.gridControlFolder;
            this.gridView1.Name = "gridView1";
            // 
            // splitContainerBottom
            // 
            this.splitContainerBottom.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerBottom.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainerBottom.IsSplitterFixed = true;
            this.splitContainerBottom.Location = new System.Drawing.Point(0, 0);
            this.splitContainerBottom.Name = "splitContainerBottom";
            // 
            // splitContainerBottom.Panel1
            // 
            this.splitContainerBottom.Panel1.BackColor = System.Drawing.Color.SteelBlue;
            this.splitContainerBottom.Panel1.Controls.Add(this.labelControl2);
            this.splitContainerBottom.Panel1.Controls.Add(this.labelControlFileNew);
            this.splitContainerBottom.Panel1.Controls.Add(this.labelControlFileUp);
            this.splitContainerBottom.Panel1.Controls.Add(this.labelControlFileDown);
            this.splitContainerBottom.Panel1.Controls.Add(this.labelControlFileDelete);
            this.splitContainerBottom.Panel1MinSize = 50;
            // 
            // splitContainerBottom.Panel2
            // 
            this.splitContainerBottom.Panel2.Controls.Add(this.splitContainerBottomBottom);
            this.splitContainerBottom.Size = new System.Drawing.Size(984, 461);
            this.splitContainerBottom.SplitterDistance = 185;
            this.splitContainerBottom.TabIndex = 10;
            this.splitContainerBottom.TabStop = false;
            // 
            // labelControl2
            // 
            this.labelControl2.Appearance.Font = new System.Drawing.Font("Segoe UI Light", 16F);
            this.labelControl2.Appearance.ForeColor = System.Drawing.Color.White;
            this.labelControl2.Location = new System.Drawing.Point(8, 11);
            this.labelControl2.Name = "labelControl2";
            this.labelControl2.Size = new System.Drawing.Size(37, 30);
            this.labelControl2.TabIndex = 7;
            this.labelControl2.Text = "Files";
            // 
            // splitContainerBottomBottom
            // 
            this.splitContainerBottomBottom.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerBottomBottom.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainerBottomBottom.IsSplitterFixed = true;
            this.splitContainerBottomBottom.Location = new System.Drawing.Point(0, 0);
            this.splitContainerBottomBottom.Name = "splitContainerBottomBottom";
            this.splitContainerBottomBottom.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerBottomBottom.Panel1
            // 
            this.splitContainerBottomBottom.Panel1.BackColor = System.Drawing.Color.SteelBlue;
            this.splitContainerBottomBottom.Panel1MinSize = 10;
            // 
            // splitContainerBottomBottom.Panel2
            // 
            this.splitContainerBottomBottom.Panel2.Controls.Add(this.gridControlFile);
            this.splitContainerBottomBottom.Size = new System.Drawing.Size(795, 461);
            this.splitContainerBottomBottom.SplitterDistance = 25;
            this.splitContainerBottomBottom.TabIndex = 1;
            this.splitContainerBottomBottom.TabStop = false;
            // 
            // gridControlFile
            // 
            this.gridControlFile.DataSource = this.xpCollectionFiles;
            this.gridControlFile.Dock = System.Windows.Forms.DockStyle.Left;
            this.gridControlFile.Location = new System.Drawing.Point(0, 0);
            this.gridControlFile.MainView = this.gridViewFile;
            this.gridControlFile.Name = "gridControlFile";
            this.gridControlFile.Size = new System.Drawing.Size(1000, 432);
            this.gridControlFile.TabIndex = 0;
            this.gridControlFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewFile,
            this.gridView2});
            // 
            // gridViewFile
            // 
            this.gridViewFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colpath,
            this.colprocessingOrder,
            this.coldoRefresh1,
            this.coldoExport1,
            this.colschedule});
            this.gridViewFile.GridControl = this.gridControlFile;
            this.gridViewFile.Name = "gridViewFile";
            this.gridViewFile.OptionsBehavior.EditingMode = DevExpress.XtraGrid.Views.Grid.GridEditingMode.Inplace;
            this.gridViewFile.OptionsCustomization.AllowSort = false;
            this.gridViewFile.OptionsView.ShowGroupPanel = false;
            // 
            // colpath
            // 
            this.colpath.Caption = "Path";
            this.colpath.FieldName = "path";
            this.colpath.MaxWidth = 600;
            this.colpath.MinWidth = 600;
            this.colpath.Name = "colpath";
            this.colpath.OptionsColumn.AllowEdit = false;
            this.colpath.OptionsColumn.FixedWidth = true;
            this.colpath.Visible = true;
            this.colpath.VisibleIndex = 0;
            // 
            // colprocessingOrder
            // 
            this.colprocessingOrder.Caption = "Processing Order";
            this.colprocessingOrder.FieldName = "processingOrder";
            this.colprocessingOrder.MaxWidth = 100;
            this.colprocessingOrder.MinWidth = 100;
            this.colprocessingOrder.Name = "colprocessingOrder";
            this.colprocessingOrder.OptionsColumn.AllowEdit = false;
            this.colprocessingOrder.OptionsColumn.FixedWidth = true;
            this.colprocessingOrder.Visible = true;
            this.colprocessingOrder.VisibleIndex = 1;
            // 
            // coldoRefresh1
            // 
            this.coldoRefresh1.Caption = "Refresh";
            this.coldoRefresh1.FieldName = "doRefresh";
            this.coldoRefresh1.MaxWidth = 50;
            this.coldoRefresh1.MinWidth = 50;
            this.coldoRefresh1.Name = "coldoRefresh1";
            this.coldoRefresh1.OptionsColumn.FixedWidth = true;
            this.coldoRefresh1.Visible = true;
            this.coldoRefresh1.VisibleIndex = 2;
            this.coldoRefresh1.Width = 50;
            // 
            // coldoExport1
            // 
            this.coldoExport1.Caption = "Export";
            this.coldoExport1.FieldName = "doExport";
            this.coldoExport1.MaxWidth = 50;
            this.coldoExport1.MinWidth = 50;
            this.coldoExport1.Name = "coldoExport1";
            this.coldoExport1.OptionsColumn.FixedWidth = true;
            this.coldoExport1.Visible = true;
            this.coldoExport1.VisibleIndex = 3;
            this.coldoExport1.Width = 50;
            // 
            // colschedule
            // 
            this.colschedule.Caption = "Schedule";
            this.colschedule.FieldName = "schedule";
            this.colschedule.MaxWidth = 150;
            this.colschedule.MinWidth = 150;
            this.colschedule.Name = "colschedule";
            this.colschedule.OptionsColumn.FixedWidth = true;
            this.colschedule.Visible = true;
            this.colschedule.VisibleIndex = 4;
            // 
            // gridView2
            // 
            this.gridView2.GridControl = this.gridControlFile;
            this.gridView2.Name = "gridView2";
            // 
            // AutoReport
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.ClientSize = new System.Drawing.Size(984, 962);
            this.Controls.Add(this.splitContainerMain);
            this.Name = "AutoReport";
            this.Text = "AutoReport";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.xpCollectionFolders)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.session1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xpCollectionFiles)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.unitOfWork1)).EndInit();
            this.splitContainerMain.Panel1.ResumeLayout(false);
            this.splitContainerMain.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerMain)).EndInit();
            this.splitContainerMain.ResumeLayout(false);
            this.splitContainerTop.Panel1.ResumeLayout(false);
            this.splitContainerTop.Panel1.PerformLayout();
            this.splitContainerTop.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerTop)).EndInit();
            this.splitContainerTop.ResumeLayout(false);
            this.splitContainerTopTop.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerTopTop)).EndInit();
            this.splitContainerTopTop.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlFolder)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFolder)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            this.splitContainerBottom.Panel1.ResumeLayout(false);
            this.splitContainerBottom.Panel1.PerformLayout();
            this.splitContainerBottom.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerBottom)).EndInit();
            this.splitContainerBottom.ResumeLayout(false);
            this.splitContainerBottomBottom.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerBottomBottom)).EndInit();
            this.splitContainerBottomBottom.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlFile)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewFile)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            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.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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XtraReportAuditForm));
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource();
            this.objectDataSource2 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2});
            this.Detail.HeightF = 37.5F;
            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.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTable2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(1126.458F, 34F);
            this.xrTable2.StylePriority.UseBorderColor = false;
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UseFont = false;
            this.xrTable2.StylePriority.UseTextAlignment = false;
            this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 12F);
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.StylePriority.UseFont = false;
            xrSummary1.FormatString = "{0:#,#}";
            xrSummary1.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
            xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
            this.xrTableCell6.Summary = xrSummary1;
            this.xrTableCell6.Text = "1";
            this.xrTableCell6.Weight = 0.489583327009981D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Key")});
            this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 12F);
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.StylePriority.UseFont = false;
            this.xrTableCell7.StylePriority.UseTextAlignment = false;
            this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell7.Weight = 4.8645841114521824D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "UserValue", "{0}")});
            this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.StylePriority.UseFont = false;
            this.xrTableCell8.StylePriority.UseTextAlignment = false;
            this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell8.Weight = 2.2187493797338504D;
            // 
            // xrTableCell9
            // 
            this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "AuditorValue", "{0}")});
            this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.StylePriority.UseFont = false;
            this.xrTableCell9.Weight = 1.8020830900111977D;
            // 
            // xrTableCell10
            // 
            this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Comment")});
            this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.StylePriority.UseFont = false;
            this.xrTableCell10.Weight = 1.8895824702497892D;
            // 
            // 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.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;
            // 
            // ReportHeader
            // 
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.xrTable1});
            this.ReportHeader.HeightF = 126.0417F;
            this.ReportHeader.Name = "ReportHeader";
            // 
            // xrLabel1
            // 
            this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 25F, System.Drawing.FontStyle.Bold);
            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(1126.458F, 53.62503F);
            this.xrLabel1.StylePriority.UseBorderColor = false;
            this.xrLabel1.StylePriority.UseBorders = false;
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text = "                     Форма аудита";
            this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrTable1
            // 
            this.xrTable1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTable1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
            this.xrTable1.BorderWidth = 2F;
            this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(2.384186E-05F, 68.20837F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(1126.458F, 47.83334F);
            this.xrTable1.StylePriority.UseBorderColor = false;
            this.xrTable1.StylePriority.UseBorders = false;
            this.xrTable1.StylePriority.UseBorderWidth = false;
            this.xrTable1.StylePriority.UseFont = false;
            this.xrTable1.StylePriority.UseTextAlignment = false;
            this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell3});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseFont = false;
            this.xrTableCell1.Text = "№";
            this.xrTableCell1.Weight = 0.489583327009981D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseFont = false;
            this.xrTableCell2.Text = "Наименование";
            this.xrTableCell2.Weight = 4.8645835011006273D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.StylePriority.UseFont = false;
            this.xrTableCell4.Text = "Значение пользователя";
            this.xrTableCell4.Weight = 2.2187506004369597D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.StylePriority.UseFont = false;
            this.xrTableCell5.Text = "Значение аудитора";
            this.xrTableCell5.Weight = 1.8020824796596433D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.StylePriority.UseFont = false;
            this.xrTableCell3.Text = "Комментарий";
            this.xrTableCell3.Weight = 1.8895824702497888D;
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "DefaultConnection";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.Name = "AuditItems";
            tableInfo1.Name = "AuditItems";
            columnInfo1.Name = "Id";
            columnInfo2.Name = "Key";
            columnInfo3.Name = "UserValue";
            columnInfo4.Name = "AuditorValue";
            columnInfo5.Name = "Comment";
            columnInfo6.Name = "Audit_Id";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5,
            columnInfo6});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // objectDataSource1
            // 
            this.objectDataSource1.DataSource = typeof(Samruk.Web.Models.AuditDetailItemViewModel);
            this.objectDataSource1.Name = "objectDataSource1";
            // 
            // objectDataSource2
            // 
            this.objectDataSource2.DataSource = typeof(Samruk.Web.Models.AuditItem);
            this.objectDataSource2.Name = "objectDataSource2";
            // 
            // XtraReportAuditForm
            // 
            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.objectDataSource2,
            this.sqlDataSource1});
            this.DataSource = this.objectDataSource2;
            this.Margins = new System.Drawing.Printing.Margins(36, 36, 100, 100);
            this.PageHeight = 500;
            this.PageWidth = 1200;
            this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
            this.Version = "14.2";
            this.DataSourceDemanded += new System.EventHandler<System.EventArgs>(this.XtraReportAuditForm_DataSourceDemanded);
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.objectDataSource2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
예제 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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.ColumnInfo           columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(CategoriesReport));
     this.ReportHeader    = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lbDescription   = new DevExpress.XtraReports.UI.XRLabel();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.pbPicture       = new DevExpress.XtraReports.UI.XRPictureBox();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.lbHeader        = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.lbCategoryName  = new DevExpress.XtraReports.UI.XRLabel();
     this.nwindDataSource = new DevExpress.DataAccess.Sql.SqlDataSource("nwindConnection");
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbHeader
     });
     this.ReportHeader.HeightF = 100F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lbDescription
     //
     this.lbDescription.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.Description")
     });
     this.lbDescription.Font                  = new System.Drawing.Font("Times New Roman", 14F);
     this.lbDescription.LocationFloat         = new DevExpress.Utils.PointFloat(220F, 53.08332F);
     this.lbDescription.Multiline             = true;
     this.lbDescription.Name                  = "lbDescription";
     this.lbDescription.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbDescription.SizeF                 = new System.Drawing.SizeF(430F, 56.91668F);
     this.lbDescription.StylePriority.UseFont = false;
     this.lbDescription.Text                  = "lbDescription";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbDescription,
         this.pbPicture,
         this.lbCategoryName
     });
     this.Detail.HeightF       = 110F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pbPicture
     //
     this.pbPicture.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "Categories.Picture")
     });
     this.pbPicture.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10F);
     this.pbPicture.Name          = "pbPicture";
     this.pbPicture.SizeF         = new System.Drawing.SizeF(200F, 100F);
     this.pbPicture.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // 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;
     //
     // lbHeader
     //
     this.lbHeader.Font                           = new System.Drawing.Font("Times New Roman", 36F);
     this.lbHeader.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.lbHeader.Name                           = "lbHeader";
     this.lbHeader.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbHeader.SizeF                          = new System.Drawing.SizeF(650.0001F, 79.99998F);
     this.lbHeader.StylePriority.UseFont          = false;
     this.lbHeader.StylePriority.UseTextAlignment = false;
     this.lbHeader.Text                           = "Categories Report";
     this.lbHeader.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // 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;
     //
     // lbCategoryName
     //
     this.lbCategoryName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryName")
     });
     this.lbCategoryName.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.lbCategoryName.LocationFloat         = new DevExpress.Utils.PointFloat(220F, 10.00001F);
     this.lbCategoryName.Name                  = "lbCategoryName";
     this.lbCategoryName.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbCategoryName.SizeF                 = new System.Drawing.SizeF(430F, 32F);
     this.lbCategoryName.StylePriority.UseFont = false;
     this.lbCategoryName.Text                  = "lbCategoryName";
     //
     // nwindDataSource
     //
     tableQuery1.Name = "Categories";
     tableInfo1.Name  = "Categories";
     columnInfo1.Name = "CategoryID";
     columnInfo2.Name = "CategoryName";
     columnInfo3.Name = "Description";
     columnInfo4.Name = "Picture";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.nwindDataSource.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.nwindDataSource.ResultSchemaSerializable = resources.GetString("nwindDataSource.ResultSchemaSerializable");
     //
     // CategoriesReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader
     });
     this.DataMember = "Categories";
     this.DataSource = this.nwindDataSource;
     this.Version    = "14.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.TableInfo  tableInfo1  = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo();
     this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin              = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin           = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.gmao_bdDataSet1        = new RibbonSimplePad.gmao_bdDataSet();
     this.commandefrTableAdapter = new RibbonSimplePad.gmao_bdDataSetTableAdapters.CommandefrTableAdapter();
     this.sqlDataSource1         = new DevExpress.DataAccess.Sql.SqlDataSource();
     this.xrLabel1               = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.gmao_bdDataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.Detail.HeightF       = 100F;
     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.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;
     //
     // gmao_bdDataSet1
     //
     this.gmao_bdDataSet1.DataSetName             = "gmao_bdDataSet";
     this.gmao_bdDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // commandefrTableAdapter
     //
     this.commandefrTableAdapter.ClearBeforeFill = true;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_Connection123";
     tableQuery1.Name = "piece_commandefr";
     tableInfo1.Name  = "piece_commandefr";
     columnInfo1.Name = "code_art";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = "PERhdGFTZXQ+PFZpZXcgTmFtZT0icGllY2VfY29tbWFuZGVmciI+PEZpZWxkIE5hbWU9ImNvZGVfYXJ0I" +
                                                    "iBUeXBlPSJTdHJpbmciIC8+PC9WaWV3PjwvRGF0YVNldD4=";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "piece_commandefr.code_art")
     });
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(259.375F, 47.87499F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "xrLabel1";
     //
     // XtraReport3
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.DataMember = "piece_commandefr";
     this.DataSource = this.sqlDataSource1;
     this.Version    = "14.1";
     ((System.ComponentModel.ISupportInitialize)(this.gmao_bdDataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1   = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo22 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(rpt_ListeEngin));
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     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.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable3       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(718.4166F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name    = "xrTableCell6";
     xrSummary1.Func           = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell6.Summary = xrSummary1;
     this.xrTableCell6.Text    = "N° ";
     this.xrTableCell6.Weight  = 0.412290141156168D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "[marque] - [couleur] - [numeroplaque]";
     this.xrTableCell7.Weight = 2.50041779863098D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportengin.Categorie")
     });
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "CATEGORIE";
     this.xrTableCell8.Weight = 1.38874930370469D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportengin.noms")
     });
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "PROPRIETAIRE";
     this.xrTableCell9.Weight = 1.63187561185078D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportengin.compte")
     });
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "COMPTE";
     this.xrTableCell10.Weight = 1.25083253478295D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 9F;
     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;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrPictureBox2,
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 114.5833F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel5
     //
     this.xrLabel5.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel5.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Font            = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat   = new DevExpress.Utils.PointFloat(138.0626F, 51.31254F);
     this.xrLabel5.Name            = "xrLabel5";
     this.xrLabel5.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF           = new System.Drawing.SizeF(439.5833F, 23.00002F);
     this.xrLabel5.StylePriority.UseBorderDashStyle = false;
     this.xrLabel5.StylePriority.UseBorders         = false;
     this.xrLabel5.StylePriority.UseFont            = false;
     this.xrLabel5.StylePriority.UseTextAlignment   = false;
     this.xrLabel5.Text          = "[telephoneEse] - [mailEse] - [sitewebEse]";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.adresseEse")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(138.0626F, 28.31254F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrLabel2";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportclient.nomEse")
     });
     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(138.0626F, 5.312551F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     this.xrLabel3.Text          = "xrLabel2";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "vrapportclient.logoEse")
     });
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(620.6041F, 5.312522F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(109.2083F, 103.9583F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox2.StylePriority.UseBorderColor = false;
     this.xrPictureBox2.StylePriority.UseBorders     = false;
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(229)))), ((int)(((byte)(244)))));
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(123.7709F, 75.85414F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(496.8332F, 33.41667F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "LISTE DES ENGINS";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.HeightF = 100F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("refCategorie", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(718.4166F, 25F);
     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.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "N° ";
     this.xrTableCell1.Weight = 0.41229021745011D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "ENGIN";
     this.xrTableCell2.Weight = 2.50041764648696D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "CATEGORIE";
     this.xrTableCell3.Weight = 1.38874930370469D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "PROPRIETAIRE";
     this.xrTableCell4.Weight = 1.63187606961442D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "COMPTE";
     this.xrTableCell5.Weight = 1.25083192443143D;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupFooter1.HeightF = 25F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrTable3
     //
     this.xrTable3.BackColor = System.Drawing.Color.MintCream;
     this.xrTable3.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(11.39595F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(717.0206F, 25F);
     this.xrTable3.StylePriority.UseBackColor     = false;
     this.xrTable3.StylePriority.UseBorders       = false;
     this.xrTable3.StylePriority.UseFont          = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportengin.Categorie")
     });
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "PROPRIETAIRE";
     this.xrTableCell14.Weight = 1.63187561185078D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_transpie_db_Connection 9";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "vrapportengin";
     tableInfo1.Name   = "vrapportengin";
     columnInfo1.Name  = "id";
     columnInfo2.Name  = "marque";
     columnInfo3.Name  = "couleur";
     columnInfo4.Name  = "numeroplaque";
     columnInfo5.Name  = "refProprietaire";
     columnInfo6.Name  = "refCategorie";
     columnInfo7.Name  = "nombreplace";
     columnInfo8.Name  = "compte";
     columnInfo9.Name  = "usersession";
     columnInfo10.Name = "noms";
     columnInfo11.Name = "Categorie";
     columnInfo12.Name = "detailEngin";
     columnInfo13.Name = "nomEse";
     columnInfo14.Name = "adresseEse";
     columnInfo15.Name = "telephoneEse";
     columnInfo16.Name = "mailEse";
     columnInfo17.Name = "logoEse";
     columnInfo18.Name = "sitewebEse";
     columnInfo19.Name = "boitePostbEse";
     columnInfo20.Name = "rccmEse";
     columnInfo21.Name = "idNatEse";
     columnInfo22.Name = "NumImpotEse";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21,
         columnInfo22
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(11.39592F, 5.312506F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(112.375F, 103.9583F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorderColor = false;
     this.xrPictureBox1.StylePriority.UseBorders     = false;
     //
     // rpt_ListeEngin
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "vrapportengin";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(53, 50, 9, 100);
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1         = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.TableQuery           tableQuery2         = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo2          = 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.ColumnInfo           columnInfo11        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12        = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(MasterReport));
     this.Title           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrLabel1        = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.xrSubreport1    = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrLabel2        = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource();
     this.DataField       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrPageInfo2     = new DevExpress.XtraReports.UI.XRPageInfo();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.FieldCaption    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrPageInfo1     = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
     this.PageInfo        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrPageBreak1    = new DevExpress.XtraReports.UI.XRPageBreak();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.CategoryName")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 16F);
     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, 50.08334F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // xrPictureBox1
     //
     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(400F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(250F, 98.08334F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageBreak1,
         this.xrSubreport1,
         this.xrLabel2,
         this.xrPictureBox1,
         this.xrLabel1
     });
     this.Detail.HeightF       = 131.5F;
     this.Detail.KeepTogether  = true;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.PageBreak     = DevExpress.XtraReports.UI.PageBreak.AfterBand;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrSubreport1
     //
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 108.5F);
     this.xrSubreport1.Name          = "xrSubreport1";
     this.xrSubreport1.ReportSource  = new dxSample.DetailReport();
     this.xrSubreport1.SizeF         = new System.Drawing.SizeF(650F, 23F);
     this.xrSubreport1.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.xrSubreport1_BeforePrint);
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Categories.Description")
     });
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 50.08335F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(400F, 48F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "xrLabel2";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "dxSample.Properties.Settings.nwindConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "Categories";
     tableInfo1.Name  = "Categories";
     columnInfo1.Name = "CategoryID";
     columnInfo2.Name = "CategoryName";
     columnInfo3.Name = "Description";
     columnInfo4.Name = "Picture";
     columnInfo5.Name = "Icon_17";
     columnInfo6.Name = "Icon_25";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     tableQuery2.Name  = "Products";
     tableInfo2.Name   = "Products";
     columnInfo7.Name  = "ProductID";
     columnInfo8.Name  = "ProductName";
     columnInfo9.Name  = "SupplierID";
     columnInfo10.Name = "CategoryID";
     columnInfo11.Name = "QuantityPerUnit";
     columnInfo12.Name = "UnitPrice";
     columnInfo13.Name = "UnitsInStock";
     columnInfo14.Name = "UnitsOnOrder";
     columnInfo15.Name = "ReorderLevel";
     columnInfo16.Name = "Discontinued";
     columnInfo17.Name = "EAN13";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17
     });
     tableQuery2.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo2
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1,
         tableQuery2
     });
     masterDetailInfo1.DetailQueryName   = "Products";
     relationColumnInfo1.NestedKeyColumn = "CategoryID";
     relationColumnInfo1.ParentKeyColumn = "CategoryID";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo1);
     masterDetailInfo1.MasterQueryName = "Categories";
     masterDetailInfo1.Name            = "CategoriesProducts";
     this.sqlDataSource1.Relations.Add(masterDetailInfo1);
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // 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);
     //
     // 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;
     //
     // 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;
     //
     // 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;
     //
     // 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";
     //
     // 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";
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // 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";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPageBreak1.Name          = "xrPageBreak1";
     //
     // MasterReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1
     });
     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.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.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.SortingInfo          sortingInfo1        = new DevExpress.DataAccess.Sql.SortingInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo1          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo1         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo2          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo2         = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo3         = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(VentasporClientes));
     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.pageHeaderBand1   = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.groupHeaderBand1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     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;
     //
     // 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.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 = "POSIXConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "VENTAS";
     relationColumnInfo1.NestedKeyColumn = "IdCliente";
     relationColumnInfo1.ParentKeyColumn = "IdCliente";
     relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo1
     });
     relationInfo1.NestedTable = "CLIENTES";
     relationInfo1.ParentTable = "VENTAS";
     tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
         relationInfo1
     });
     sortingInfo1.Column = "Total";
     sortingInfo1.Table  = "VENTAS";
     tableQuery1.Sorting.AddRange(new DevExpress.DataAccess.Sql.SortingInfo[] {
         sortingInfo1
     });
     tableInfo1.Name  = "VENTAS";
     columnInfo1.Name = "Total";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1
     });
     tableInfo2.Name  = "CLIENTES";
     columnInfo2.Name = "Nombres";
     columnInfo3.Name = "Apellidos";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo2,
         columnInfo3
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1,
         tableInfo2
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // pageHeaderBand1
     //
     this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLine1,
         this.xrLine2
     });
     this.pageHeaderBand1.HeightF = 45F;
     this.pageHeaderBand1.Name    = "pageHeaderBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 7F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(242.8516F, 36F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "Nombres";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(248.8516F, 7F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(246.9677F, 36F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "Apellidos";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(495.8193F, 7F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(148.1807F, 36F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Total";
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 5F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 43F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.groupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Nombres", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand1.HeightF   = 23F;
     this.groupHeaderBand1.Name      = "groupHeaderBand1";
     this.groupHeaderBand1.StyleName = "DataField";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VENTAS.Nombres")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(6F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(242.8516F, 23F);
     this.xrLabel4.Text          = "xrLabel4";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VENTAS.Apellidos")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(248.8516F, 0F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(246.9677F, 23F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VENTAS.Total", "{0:C2}")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(495.8193F, 0F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(148.1807F, 23F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // 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        = "Página {0} de {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel7,
         this.xrLine3
     });
     this.reportHeaderBand1.HeightF = 57F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel7
     //
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(173.7083F, 7.999992F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(285.9167F, 39F);
     this.xrLabel7.StyleName     = "Title";
     this.xrLabel7.Text          = "Ventas por Clientes";
     //
     // xrLine3
     //
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(6F, 0F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // 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);
     //
     // VentasporClientes
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageHeaderBand1,
         this.groupHeaderBand1,
         this.pageFooterBand1,
         this.reportHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "VENTAS";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(rpt_ChargementCompte));
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6   = 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.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable3       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell17  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23  = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader2   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = 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.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter2   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable4       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19  = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(9.999983F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(778.9998F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name    = "xrTableCell6";
     xrSummary1.Func           = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell6.Summary = xrSummary1;
     this.xrTableCell6.Text    = "N° ";
     this.xrTableCell6.Weight  = 0.52624962178948365D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.id")
     });
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "ID";
     this.xrTableCell9.Weight = 0.54583425263793062D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.Client")
     });
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "Client";
     this.xrTableCell10.Weight = 1.4904159289111829D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.contact")
     });
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "Adresse";
     this.xrTableCell11.Weight = 1.0762505033832577D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.mail")
     });
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "Contact";
     this.xrTableCell12.Weight = 1.7812487182129289D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.montant")
     });
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "Montant";
     this.xrTableCell13.Weight = 1.0833320827487434D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.datecharge", "{0:dd/MM/yyyy}")
     });
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "Date";
     this.xrTableCell14.Weight = 1.2866682864686445D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 7.124996F;
     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       = 4.166667F;
     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.xrLabel1,
         this.xrPictureBox2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrPictureBox1
     });
     this.ReportHeader.HeightF = 122.7084F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(229)))), ((int)(((byte)(244)))));
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(117.2083F, 70.54167F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(575.0833F, 33.41667F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "RAPPORT JOURNALIER DES RECHARGES DES COMPTES CLIENTS";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "vrapportchargecompte.logoEse")
     });
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(692.2916F, 0F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(96.70831F, 103.9583F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox2.StylePriority.UseBorderColor = false;
     this.xrPictureBox2.StylePriority.UseBorders     = false;
     //
     // xrLabel3
     //
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.nomEse")
     });
     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(156.6251F, 2.288818E-05F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     this.xrLabel3.Text          = "xrLabel2";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.adresseEse")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(156.6251F, 23.00002F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrLabel2";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel5.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Font            = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat   = new DevExpress.Utils.PointFloat(156.6251F, 46.00002F);
     this.xrLabel5.Name            = "xrLabel5";
     this.xrLabel5.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF           = new System.Drawing.SizeF(439.5832F, 23.00001F);
     this.xrLabel5.StylePriority.UseBorderDashStyle = false;
     this.xrLabel5.StylePriority.UseBorders         = false;
     this.xrLabel5.StylePriority.UseFont            = false;
     this.xrLabel5.StylePriority.UseTextAlignment   = false;
     this.xrLabel5.Text          = "[telephoneEse] - [mail] - [sitewebEse]";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.HeightF = 22.91667F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // GroupHeader1
     //
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("refClient", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 0F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupFooter1.HeightF = 25F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrTable3
     //
     this.xrTable3.BackColor = System.Drawing.Color.PaleTurquoise;
     this.xrTable3.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(778.9998F, 25F);
     this.xrTable3.StylePriority.UseBackColor     = false;
     this.xrTable3.StylePriority.UseBorders       = false;
     this.xrTable3.StylePriority.UseFont          = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell17,
         this.xrTableCell23
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text          = "TOTAL(Par Client) :";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell17.Weight        = 5.4200010480301382D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.montant")
     });
     this.xrTableCell23.Name    = "xrTableCell23";
     xrSummary2.Running         = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell23.Summary = xrSummary2;
     this.xrTableCell23.Weight  = 2.3699991902672424D;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Level   = 1;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10.00003F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(778.9998F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont    = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell5,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "N° ";
     this.xrTableCell1.Weight = 0.52624916402573985D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "ID";
     this.xrTableCell5.Weight = 0.54583425263793051D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Client";
     this.xrTableCell2.Weight = 1.490416157793055D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Contact";
     this.xrTableCell3.Weight = 1.0762495115618127D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Adresse Mail";
     this.xrTableCell4.Weight = 1.781249938916246D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "Montant";
     this.xrTableCell7.Weight = 1.0833320827487434D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Date";
     this.xrTableCell8.Weight = 1.2866682864686445D;
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4
     });
     this.GroupFooter2.HeightF = 25F;
     this.GroupFooter2.Level   = 1;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // xrTable4
     //
     this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(781.4999F, 25F);
     this.xrTable4.StylePriority.UseBorders = false;
     this.xrTable4.StylePriority.UseFont    = false;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrTableCell19
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text          = "TOTAL :";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell18.Weight        = 5.4200016583818638D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportchargecompte.montant")
     });
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     xrSummary3.Running               = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell19.Summary       = xrSummary3;
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell19.Weight        = 2.3949998072600218D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_transpie_db_Connection 3";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "vrapportchargecompte";
     tableInfo1.Name   = "vrapportchargecompte";
     columnInfo1.Name  = "id";
     columnInfo2.Name  = "Client";
     columnInfo3.Name  = "montant";
     columnInfo4.Name  = "datecharge";
     columnInfo5.Name  = "compte";
     columnInfo6.Name  = "contact";
     columnInfo7.Name  = "mail";
     columnInfo8.Name  = "usersession";
     columnInfo9.Name  = "refClient";
     columnInfo10.Name = "nomEse";
     columnInfo11.Name = "adresseEse";
     columnInfo12.Name = "telephoneEse";
     columnInfo13.Name = "mailEse";
     columnInfo14.Name = "logoEse";
     columnInfo15.Name = "sitewebEse";
     columnInfo16.Name = "boitePostbEse";
     columnInfo17.Name = "rccmEse";
     columnInfo18.Name = "idNatEse";
     columnInfo19.Name = "NumImpotEse";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(10.00003F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(107.2083F, 103.9583F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorderColor = false;
     this.xrPictureBox1.StylePriority.UseBorders     = false;
     //
     // rpt_ChargementCompte
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1,
         this.GroupFooter1,
         this.GroupHeader2,
         this.GroupFooter2
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "vrapportchargecompte";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(32, 19, 7, 4);
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).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()
        {
            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.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.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.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.ColumnInfo columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
            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.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo17 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo18 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo22 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo23 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo24 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo25 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo26 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo27 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo28 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo29 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo30 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo31 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo32 = new DevExpress.DataAccess.Sql.ColumnInfo();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MillReportsXtraReport));
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.heatNumber = new DevExpress.XtraReports.UI.XRLabel();
            this.type = new DevExpress.XtraReports.UI.XRLabel();
            this.wallThickness = new DevExpress.XtraReports.UI.XRLabel();
            this.weight = new DevExpress.XtraReports.UI.XRLabel();
            this.purchaseOrderDate = new DevExpress.XtraReports.UI.XRLabel();
            this.purchaseOrderNumber = new DevExpress.XtraReports.UI.XRLabel();
            this.number = new DevExpress.XtraReports.UI.XRLabel();
            this.pipeStatus = new DevExpress.XtraReports.UI.XRLabel();
            this.plateNumber = new DevExpress.XtraReports.UI.XRLabel();
            this.length = new DevExpress.XtraReports.UI.XRLabel();
            this.diameter = new DevExpress.XtraReports.UI.XRLabel();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.wallThicknessLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.typeLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.weightLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.purchaseOrderDateLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.purchaseOrderNumberLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.plateNumberLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.statusLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.numberLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.lengthLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.activeLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.diameterLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.pageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
            this.datePageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
            this.numberOfPageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
            this.reportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.reportDateTimeInfo = new DevExpress.XtraReports.UI.XRPageInfo();
            this.reportHeaderLabel = 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.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
            this.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.pageHeaderLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.heatNumberLabel = new DevExpress.XtraReports.UI.XRLabel();
            this.sqlDataSourceForReport = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.GroupHeader = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.StatusParameter = new DevExpress.XtraReports.Parameters.Parameter();
            this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1,
            this.heatNumber,
            this.type,
            this.wallThickness,
            this.weight,
            this.purchaseOrderDate,
            this.purchaseOrderNumber,
            this.number,
            this.pipeStatus,
            this.plateNumber,
            this.length,
            this.diameter});
            this.Detail.HeightF = 37.66669F;
            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("number", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
            this.Detail.StyleName = "DataField";
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel1
            // 
            this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "calculatedField1")});
            this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(932.6842F, 0F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(82.3158F, 37.66669F);
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.Text = "xrLabel1";
            // 
            // heatNumber
            // 
            this.heatNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.Heat_number")});
            this.heatNumber.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.heatNumber.LocationFloat = new DevExpress.Utils.PointFloat(825.288F, 0F);
            this.heatNumber.Name = "heatNumber";
            this.heatNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.heatNumber.SizeF = new System.Drawing.SizeF(107.3962F, 37.66668F);
            this.heatNumber.StylePriority.UseFont = false;
            this.heatNumber.Text = "heatNumber";
            // 
            // type
            // 
            this.type.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.type")});
            this.type.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.type.LocationFloat = new DevExpress.Utils.PointFloat(83.67316F, 0F);
            this.type.Name = "type";
            this.type.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.type.SizeF = new System.Drawing.SizeF(136.9572F, 37.66668F);
            this.type.StyleName = "DataField";
            this.type.StylePriority.UseFont = false;
            this.type.Text = "type";
            // 
            // wallThickness
            // 
            this.wallThickness.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.wallThickness")});
            this.wallThickness.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.wallThickness.LocationFloat = new DevExpress.Utils.PointFloat(467.5757F, 0F);
            this.wallThickness.Name = "wallThickness";
            this.wallThickness.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.wallThickness.SizeF = new System.Drawing.SizeF(72.46927F, 37.66668F);
            this.wallThickness.StyleName = "DataField";
            this.wallThickness.StylePriority.UseFont = false;
            this.wallThickness.Text = "wallThickness";
            // 
            // weight
            // 
            this.weight.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.weight")});
            this.weight.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.weight.LocationFloat = new DevExpress.Utils.PointFloat(540.0449F, 0F);
            this.weight.Name = "weight";
            this.weight.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.weight.SizeF = new System.Drawing.SizeF(54.31165F, 37.66668F);
            this.weight.StyleName = "DataField";
            this.weight.StylePriority.UseFont = false;
            this.weight.Text = "weight";
            // 
            // purchaseOrderDate
            // 
            this.purchaseOrderDate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.PurchaseOrder_date", "{0:M/d/yyyy}")});
            this.purchaseOrderDate.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.purchaseOrderDate.LocationFloat = new DevExpress.Utils.PointFloat(295.864F, 0F);
            this.purchaseOrderDate.Name = "purchaseOrderDate";
            this.purchaseOrderDate.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.purchaseOrderDate.SizeF = new System.Drawing.SizeF(70.34799F, 37.66668F);
            this.purchaseOrderDate.StyleName = "DataField";
            this.purchaseOrderDate.StylePriority.UseFont = false;
            this.purchaseOrderDate.Text = "purchaseOrderDate";
            // 
            // purchaseOrderNumber
            // 
            this.purchaseOrderNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.PurchaseOrder_number")});
            this.purchaseOrderNumber.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.purchaseOrderNumber.LocationFloat = new DevExpress.Utils.PointFloat(366.2119F, 0F);
            this.purchaseOrderNumber.Name = "purchaseOrderNumber";
            this.purchaseOrderNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.purchaseOrderNumber.SizeF = new System.Drawing.SizeF(101.3637F, 37.66668F);
            this.purchaseOrderNumber.StyleName = "DataField";
            this.purchaseOrderNumber.StylePriority.UseFont = false;
            this.purchaseOrderNumber.Text = "purchaseOrderNumber";
            // 
            // number
            // 
            this.number.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.number")});
            this.number.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.number.LocationFloat = new DevExpress.Utils.PointFloat(6.357829E-05F, 0F);
            this.number.Name = "number";
            this.number.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.number.SizeF = new System.Drawing.SizeF(83.673F, 37.66668F);
            this.number.StyleName = "DataField";
            this.number.StylePriority.UseFont = false;
            this.number.Text = "number";
            // 
            // pipeStatus
            // 
            this.pipeStatus.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.pipeMillStatus")});
            this.pipeStatus.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.pipeStatus.LocationFloat = new DevExpress.Utils.PointFloat(220.6304F, 0F);
            this.pipeStatus.Name = "pipeStatus";
            this.pipeStatus.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.pipeStatus.SizeF = new System.Drawing.SizeF(75.23363F, 37.66668F);
            this.pipeStatus.StyleName = "DataField";
            this.pipeStatus.StylePriority.UseFont = false;
            this.pipeStatus.Text = "pipeStatus";
            // 
            // plateNumber
            // 
            this.plateNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.Plate_number")});
            this.plateNumber.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.plateNumber.LocationFloat = new DevExpress.Utils.PointFloat(730.7495F, 0F);
            this.plateNumber.Name = "plateNumber";
            this.plateNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.plateNumber.SizeF = new System.Drawing.SizeF(94.53857F, 37.66669F);
            this.plateNumber.StyleName = "DataField";
            this.plateNumber.StylePriority.UseFont = false;
            this.plateNumber.Text = "plateNumber";
            // 
            // length
            // 
            this.length.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.length")});
            this.length.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.length.LocationFloat = new DevExpress.Utils.PointFloat(594.3566F, 0F);
            this.length.Name = "length";
            this.length.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.length.SizeF = new System.Drawing.SizeF(68.41034F, 37.66669F);
            this.length.StyleName = "DataField";
            this.length.StylePriority.UseFont = false;
            this.length.Text = "length";
            // 
            // diameter
            // 
            this.diameter.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.diameter")});
            this.diameter.Font = new System.Drawing.Font("Times New Roman", 8F);
            this.diameter.LocationFloat = new DevExpress.Utils.PointFloat(662.7671F, 0F);
            this.diameter.Name = "diameter";
            this.diameter.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.diameter.SizeF = new System.Drawing.SizeF(67.98236F, 37.66668F);
            this.diameter.StyleName = "DataField";
            this.diameter.StylePriority.UseFont = false;
            this.diameter.Text = "diameter";
            // 
            // TopMargin
            // 
            this.TopMargin.HeightF = 51F;
            this.TopMargin.Name = "TopMargin";
            this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // BottomMargin
            // 
            this.BottomMargin.HeightF = 64F;
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // wallThicknessLabel
            // 
            this.wallThicknessLabel.ForeColor = System.Drawing.Color.Black;
            this.wallThicknessLabel.LocationFloat = new DevExpress.Utils.PointFloat(467.5757F, 0F);
            this.wallThicknessLabel.Name = "wallThicknessLabel";
            this.wallThicknessLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.wallThicknessLabel.SizeF = new System.Drawing.SizeF(72.46924F, 32F);
            this.wallThicknessLabel.StyleName = "FieldCaption";
            this.wallThicknessLabel.StylePriority.UseForeColor = false;
            this.wallThicknessLabel.Text = "Толщина";
            // 
            // typeLabel
            // 
            this.typeLabel.ForeColor = System.Drawing.Color.Black;
            this.typeLabel.LocationFloat = new DevExpress.Utils.PointFloat(83.67307F, 0F);
            this.typeLabel.Name = "typeLabel";
            this.typeLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.typeLabel.SizeF = new System.Drawing.SizeF(136.9573F, 32F);
            this.typeLabel.StyleName = "FieldCaption";
            this.typeLabel.StylePriority.UseForeColor = false;
            this.typeLabel.Text = "Тип трубы";
            // 
            // weightLabel
            // 
            this.weightLabel.ForeColor = System.Drawing.Color.Black;
            this.weightLabel.LocationFloat = new DevExpress.Utils.PointFloat(540.0449F, 0F);
            this.weightLabel.Name = "weightLabel";
            this.weightLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.weightLabel.SizeF = new System.Drawing.SizeF(54.31171F, 32F);
            this.weightLabel.StyleName = "FieldCaption";
            this.weightLabel.StylePriority.UseForeColor = false;
            this.weightLabel.Text = "Вес";
            // 
            // purchaseOrderDateLabel
            // 
            this.purchaseOrderDateLabel.ForeColor = System.Drawing.Color.Black;
            this.purchaseOrderDateLabel.LocationFloat = new DevExpress.Utils.PointFloat(295.864F, 0F);
            this.purchaseOrderDateLabel.Name = "purchaseOrderDateLabel";
            this.purchaseOrderDateLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.purchaseOrderDateLabel.SizeF = new System.Drawing.SizeF(70.34799F, 32F);
            this.purchaseOrderDateLabel.StyleName = "FieldCaption";
            this.purchaseOrderDateLabel.StylePriority.UseForeColor = false;
            this.purchaseOrderDateLabel.Text = "Дата";
            // 
            // purchaseOrderNumberLabel
            // 
            this.purchaseOrderNumberLabel.ForeColor = System.Drawing.Color.Black;
            this.purchaseOrderNumberLabel.LocationFloat = new DevExpress.Utils.PointFloat(366.2119F, 0F);
            this.purchaseOrderNumberLabel.Name = "purchaseOrderNumberLabel";
            this.purchaseOrderNumberLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.purchaseOrderNumberLabel.SizeF = new System.Drawing.SizeF(101.3637F, 32F);
            this.purchaseOrderNumberLabel.StyleName = "FieldCaption";
            this.purchaseOrderNumberLabel.StylePriority.UseForeColor = false;
            this.purchaseOrderNumberLabel.Text = "Номер";
            // 
            // plateNumberLabel
            // 
            this.plateNumberLabel.ForeColor = System.Drawing.Color.Black;
            this.plateNumberLabel.LocationFloat = new DevExpress.Utils.PointFloat(730.7495F, 0F);
            this.plateNumberLabel.Name = "plateNumberLabel";
            this.plateNumberLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.plateNumberLabel.SizeF = new System.Drawing.SizeF(94.53857F, 32F);
            this.plateNumberLabel.StyleName = "FieldCaption";
            this.plateNumberLabel.StylePriority.UseForeColor = false;
            this.plateNumberLabel.Text = "Номер листа";
            // 
            // statusLabel
            // 
            this.statusLabel.ForeColor = System.Drawing.Color.Black;
            this.statusLabel.LocationFloat = new DevExpress.Utils.PointFloat(220.6304F, 0F);
            this.statusLabel.Name = "statusLabel";
            this.statusLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.statusLabel.SizeF = new System.Drawing.SizeF(75.23357F, 32F);
            this.statusLabel.StyleName = "FieldCaption";
            this.statusLabel.StylePriority.UseForeColor = false;
            this.statusLabel.Text = "Статус";
            // 
            // numberLabel
            // 
            this.numberLabel.ForeColor = System.Drawing.Color.Black;
            this.numberLabel.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.numberLabel.Name = "numberLabel";
            this.numberLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.numberLabel.SizeF = new System.Drawing.SizeF(83.67307F, 32F);
            this.numberLabel.StyleName = "FieldCaption";
            this.numberLabel.StylePriority.UseForeColor = false;
            this.numberLabel.Text = "Номер";
            // 
            // lengthLabel
            // 
            this.lengthLabel.ForeColor = System.Drawing.Color.Black;
            this.lengthLabel.LocationFloat = new DevExpress.Utils.PointFloat(594.3566F, 0F);
            this.lengthLabel.Name = "lengthLabel";
            this.lengthLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lengthLabel.SizeF = new System.Drawing.SizeF(68.41034F, 32F);
            this.lengthLabel.StyleName = "FieldCaption";
            this.lengthLabel.StylePriority.UseForeColor = false;
            this.lengthLabel.Text = "Длина";
            // 
            // activeLabel
            // 
            this.activeLabel.ForeColor = System.Drawing.Color.Black;
            this.activeLabel.LocationFloat = new DevExpress.Utils.PointFloat(932.6842F, 0F);
            this.activeLabel.Name = "activeLabel";
            this.activeLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.activeLabel.SizeF = new System.Drawing.SizeF(82.3158F, 32F);
            this.activeLabel.StyleName = "FieldCaption";
            this.activeLabel.StylePriority.UseForeColor = false;
            this.activeLabel.Text = "Active";
            // 
            // diameterLabel
            // 
            this.diameterLabel.ForeColor = System.Drawing.Color.Black;
            this.diameterLabel.LocationFloat = new DevExpress.Utils.PointFloat(662.767F, 0F);
            this.diameterLabel.Name = "diameterLabel";
            this.diameterLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.diameterLabel.SizeF = new System.Drawing.SizeF(67.98248F, 32F);
            this.diameterLabel.StyleName = "FieldCaption";
            this.diameterLabel.StylePriority.UseForeColor = false;
            this.diameterLabel.Text = "Диаметр";
            // 
            // pageFooter
            // 
            this.pageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.datePageInfo,
            this.numberOfPageInfo});
            this.pageFooter.HeightF = 23F;
            this.pageFooter.Name = "pageFooter";
            // 
            // datePageInfo
            // 
            this.datePageInfo.Format = "{0:dddd, d MMMM, yyyy HH:mm:ss}";
            this.datePageInfo.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.datePageInfo.Name = "datePageInfo";
            this.datePageInfo.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.datePageInfo.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
            this.datePageInfo.SizeF = new System.Drawing.SizeF(295.864F, 23F);
            this.datePageInfo.StyleName = "PageInfo";
            // 
            // numberOfPageInfo
            // 
            this.numberOfPageInfo.Format = "{0} / {1}";
            this.numberOfPageInfo.LocationFloat = new DevExpress.Utils.PointFloat(730.7495F, 0F);
            this.numberOfPageInfo.Name = "numberOfPageInfo";
            this.numberOfPageInfo.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.numberOfPageInfo.SizeF = new System.Drawing.SizeF(284.2507F, 23F);
            this.numberOfPageInfo.StyleName = "PageInfo";
            this.numberOfPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // reportHeader
            // 
            this.reportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.reportDateTimeInfo,
            this.reportHeaderLabel});
            this.reportHeader.HeightF = 56.91666F;
            this.reportHeader.Name = "reportHeader";
            // 
            // reportDateTimeInfo
            // 
            this.reportDateTimeInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.reportDateTimeInfo.Format = "{0:dd-MM-yyyy H:mm:ss}";
            this.reportDateTimeInfo.LocationFloat = new DevExpress.Utils.PointFloat(730.7495F, 0F);
            this.reportDateTimeInfo.Name = "reportDateTimeInfo";
            this.reportDateTimeInfo.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.reportDateTimeInfo.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
            this.reportDateTimeInfo.SizeF = new System.Drawing.SizeF(284.2507F, 23.91666F);
            this.reportDateTimeInfo.StylePriority.UseFont = false;
            this.reportDateTimeInfo.StylePriority.UseTextAlignment = false;
            this.reportDateTimeInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // reportHeaderLabel
            // 
            this.reportHeaderLabel.ForeColor = System.Drawing.Color.Black;
            this.reportHeaderLabel.LocationFloat = new DevExpress.Utils.PointFloat(0F, 23.91666F);
            this.reportHeaderLabel.Name = "reportHeaderLabel";
            this.reportHeaderLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.reportHeaderLabel.SizeF = new System.Drawing.SizeF(1015F, 33F);
            this.reportHeaderLabel.StyleName = "Title";
            this.reportHeaderLabel.StylePriority.UseForeColor = false;
            this.reportHeaderLabel.Text = "Отчет на заводе";
            // 
            // 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);
            // 
            // PageHeader
            // 
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel12,
            this.xrLabel11,
            this.xrLabel10,
            this.xrLabel9,
            this.xrLabel8,
            this.xrLabel7,
            this.xrLabel6,
            this.xrLabel5,
            this.xrLabel4,
            this.xrLabel3,
            this.xrLabel2,
            this.pageHeaderLabel});
            this.PageHeader.HeightF = 21.5F;
            this.PageHeader.Name = "PageHeader";
            this.PageHeader.PrintOn = DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader;
            // 
            // xrLabel12
            // 
            this.xrLabel12.ForeColor = System.Drawing.Color.Black;
            this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(932.6842F, 0F);
            this.xrLabel12.Name = "xrLabel12";
            this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel12.SizeF = new System.Drawing.SizeF(82.3161F, 21.5F);
            this.xrLabel12.StyleName = "Title";
            this.xrLabel12.StylePriority.UseForeColor = false;
            // 
            // xrLabel11
            // 
            this.xrLabel11.ForeColor = System.Drawing.Color.Black;
            this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(825.2881F, 0F);
            this.xrLabel11.Name = "xrLabel11";
            this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel11.SizeF = new System.Drawing.SizeF(107.3961F, 21.5F);
            this.xrLabel11.StyleName = "Title";
            this.xrLabel11.StylePriority.UseForeColor = false;
            // 
            // xrLabel10
            // 
            this.xrLabel10.ForeColor = System.Drawing.Color.Black;
            this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(730.7495F, 0F);
            this.xrLabel10.Name = "xrLabel10";
            this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel10.SizeF = new System.Drawing.SizeF(94.53857F, 21.5F);
            this.xrLabel10.StyleName = "Title";
            this.xrLabel10.StylePriority.UseForeColor = false;
            // 
            // xrLabel9
            // 
            this.xrLabel9.ForeColor = System.Drawing.Color.Black;
            this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(662.7671F, 0F);
            this.xrLabel9.Name = "xrLabel9";
            this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel9.SizeF = new System.Drawing.SizeF(67.98242F, 21.5F);
            this.xrLabel9.StyleName = "Title";
            this.xrLabel9.StylePriority.UseForeColor = false;
            // 
            // xrLabel8
            // 
            this.xrLabel8.ForeColor = System.Drawing.Color.Black;
            this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(594.3566F, 0F);
            this.xrLabel8.Name = "xrLabel8";
            this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel8.SizeF = new System.Drawing.SizeF(68.41034F, 21.5F);
            this.xrLabel8.StyleName = "Title";
            this.xrLabel8.StylePriority.UseForeColor = false;
            // 
            // xrLabel7
            // 
            this.xrLabel7.ForeColor = System.Drawing.Color.Black;
            this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(540.0449F, 0F);
            this.xrLabel7.Name = "xrLabel7";
            this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel7.SizeF = new System.Drawing.SizeF(54.31171F, 21.5F);
            this.xrLabel7.StyleName = "Title";
            this.xrLabel7.StylePriority.UseForeColor = false;
            // 
            // xrLabel6
            // 
            this.xrLabel6.ForeColor = System.Drawing.Color.Black;
            this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(467.5757F, 0F);
            this.xrLabel6.Name = "xrLabel6";
            this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel6.SizeF = new System.Drawing.SizeF(72.46921F, 21.5F);
            this.xrLabel6.StyleName = "Title";
            this.xrLabel6.StylePriority.UseForeColor = false;
            // 
            // xrLabel5
            // 
            this.xrLabel5.ForeColor = System.Drawing.Color.Black;
            this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(366.2119F, 0F);
            this.xrLabel5.Name = "xrLabel5";
            this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel5.SizeF = new System.Drawing.SizeF(101.3637F, 21.5F);
            this.xrLabel5.StyleName = "Title";
            this.xrLabel5.StylePriority.UseForeColor = false;
            // 
            // xrLabel4
            // 
            this.xrLabel4.ForeColor = System.Drawing.Color.Black;
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(295.864F, 0F);
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(70.34793F, 21.5F);
            this.xrLabel4.StyleName = "Title";
            this.xrLabel4.StylePriority.UseForeColor = false;
            // 
            // xrLabel3
            // 
            this.xrLabel3.ForeColor = System.Drawing.Color.Black;
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(220.6304F, 0F);
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(75.23363F, 21.5F);
            this.xrLabel3.StyleName = "Title";
            this.xrLabel3.StylePriority.UseForeColor = false;
            // 
            // xrLabel2
            // 
            this.xrLabel2.ForeColor = System.Drawing.Color.Black;
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(83.67316F, 0F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(136.9572F, 21.5F);
            this.xrLabel2.StyleName = "Title";
            this.xrLabel2.StylePriority.UseForeColor = false;
            // 
            // pageHeaderLabel
            // 
            this.pageHeaderLabel.ForeColor = System.Drawing.Color.Black;
            this.pageHeaderLabel.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.pageHeaderLabel.Name = "pageHeaderLabel";
            this.pageHeaderLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.pageHeaderLabel.SizeF = new System.Drawing.SizeF(83.67307F, 21.5F);
            this.pageHeaderLabel.StyleName = "Title";
            this.pageHeaderLabel.StylePriority.UseForeColor = false;
            // 
            // heatNumberLabel
            // 
            this.heatNumberLabel.ForeColor = System.Drawing.Color.Black;
            this.heatNumberLabel.LocationFloat = new DevExpress.Utils.PointFloat(825.288F, 0F);
            this.heatNumberLabel.Name = "heatNumberLabel";
            this.heatNumberLabel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.heatNumberLabel.SizeF = new System.Drawing.SizeF(107.3962F, 32F);
            this.heatNumberLabel.StyleName = "FieldCaption";
            this.heatNumberLabel.StylePriority.UseForeColor = false;
            this.heatNumberLabel.Text = "Номер плавки";
            // 
            // sqlDataSourceForReport
            // 
            this.sqlDataSourceForReport.ConnectionName = "PrismDatabase";
            this.sqlDataSourceForReport.Name = "sqlDataSourceForReport";
            tableQuery1.Name = "Pipe";
            relationColumnInfo1.NestedKeyColumn = "id";
            relationColumnInfo1.ParentKeyColumn = "plateId";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "Plate";
            relationInfo1.ParentTable = "Pipe";
            relationColumnInfo2.NestedKeyColumn = "id";
            relationColumnInfo2.ParentKeyColumn = "heatId";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "Heat";
            relationInfo2.ParentTable = "Plate";
            relationColumnInfo3.NestedKeyColumn = "id";
            relationColumnInfo3.ParentKeyColumn = "purchaseOrderId";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "PurchaseOrder";
            relationInfo3.ParentTable = "Pipe";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3});
            tableInfo1.Name = "Pipe";
            columnInfo1.Name = "id";
            columnInfo2.Name = "wallThickness";
            columnInfo3.Name = "diameter";
            columnInfo4.Name = "weight";
            columnInfo5.Name = "mill";
            columnInfo6.Name = "pipeMillStatus";
            columnInfo7.Name = "number";
            columnInfo8.Name = "isActive";
            columnInfo9.Name = "inspectionStatus";
            columnInfo10.Name = "constructionStatus";
            columnInfo11.Name = "typeId";
            columnInfo12.Name = "plateId";
            columnInfo13.Name = "purchaseOrderId";
            columnInfo14.Name = "railcarId";
            columnInfo15.Name = "chemicalCompositionId";
            columnInfo16.Name = "length";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5,
            columnInfo6,
            columnInfo7,
            columnInfo8,
            columnInfo9,
            columnInfo10,
            columnInfo11,
            columnInfo12,
            columnInfo13,
            columnInfo14,
            columnInfo15,
            columnInfo16});
            tableInfo2.Name = "Plate";
            columnInfo17.Alias = "Plate_id";
            columnInfo17.Name = "id";
            columnInfo18.Alias = "Plate_number";
            columnInfo18.Name = "number";
            columnInfo19.Name = "thickness";
            columnInfo20.Alias = "Plate_chemicalCompositionId";
            columnInfo20.Name = "chemicalCompositionId";
            columnInfo21.Name = "heatId";
            columnInfo22.Alias = "Plate_isActive";
            columnInfo22.Name = "isActive";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo17,
            columnInfo18,
            columnInfo19,
            columnInfo20,
            columnInfo21,
            columnInfo22});
            tableInfo3.Name = "Heat";
            columnInfo23.Alias = "Heat_id";
            columnInfo23.Name = "id";
            columnInfo24.Alias = "Heat_number";
            columnInfo24.Name = "number";
            columnInfo25.Name = "steelGrade";
            columnInfo26.Name = "plateManufacturer";
            columnInfo27.Alias = "Heat_chemicalCompositionId";
            columnInfo27.Name = "chemicalCompositionId";
            columnInfo28.Alias = "Heat_isActive";
            columnInfo28.Name = "isActive";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo23,
            columnInfo24,
            columnInfo25,
            columnInfo26,
            columnInfo27,
            columnInfo28});
            tableInfo4.Name = "PurchaseOrder";
            columnInfo29.Alias = "PurchaseOrder_id";
            columnInfo29.Name = "id";
            columnInfo30.Alias = "PurchaseOrder_number";
            columnInfo30.Name = "number";
            columnInfo31.Name = "date";
            columnInfo32.Alias = "PurchaseOrder_isActive";
            columnInfo32.Name = "isActive";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo29,
            columnInfo30,
            columnInfo31,
            columnInfo32});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1,
            tableInfo2,
            tableInfo3,
            tableInfo4});
            this.sqlDataSourceForReport.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSourceForReport.ResultSchemaSerializable = resources.GetString("sqlDataSourceForReport.ResultSchemaSerializable");
            // 
            // GroupHeader
            // 
            this.GroupHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.activeLabel,
            this.plateNumberLabel,
            this.wallThicknessLabel,
            this.weightLabel,
            this.diameterLabel,
            this.lengthLabel,
            this.purchaseOrderNumberLabel,
            this.numberLabel,
            this.purchaseOrderDateLabel,
            this.statusLabel,
            this.typeLabel,
            this.heatNumberLabel});
            this.GroupHeader.HeightF = 32F;
            this.GroupHeader.Name = "GroupHeader";
            // 
            // StatusParameter
            // 
            this.StatusParameter.Description = "StatusParameter";
            this.StatusParameter.Name = "StatusParameter";
            // 
            // calculatedField1
            // 
            this.calculatedField1.Expression = "Iif([Pipe.isActive] ==True , 1  , 0 )";
            this.calculatedField1.Name = "calculatedField1";
            // 
            // MillReportsXtraReport
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.pageFooter,
            this.reportHeader,
            this.PageHeader,
            this.GroupHeader});
            this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
            this.calculatedField1});
            this.DataMember = "Pipe";
            this.DataSource = this.sqlDataSourceForReport;
            this.FilterString = "StartsWith([pipeMillStatus], ?StatusParameter)";
            this.Landscape = true;
            this.Margins = new System.Drawing.Printing.Margins(70, 83, 51, 64);
            this.PageHeight = 827;
            this.PageWidth = 1169;
            this.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.StatusParameter});
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
예제 #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(La_liste_des_cours));
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo22 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo23 = new DevExpress.DataAccess.Sql.ColumnInfo();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrRichText4    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrRichText3    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrRichText2    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrRichText1    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     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.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10.00009F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(223.9583F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.codecours")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Cours";
     this.xrTableCell2.Weight = 2.23958343505859D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 5.624994F;
     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       = 16F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrRichText4,
         this.xrLabel3,
         this.xrRichText3,
         this.xrRichText2,
         this.xrRichText1,
         this.xrTable2,
         this.xrLabel2
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("classe", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("section", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("optioneleve", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 139.5833F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrRichText4
     //
     this.xrRichText4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Rtf", null, "liste_affectation.Annee")
     });
     this.xrRichText4.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrRichText4.LocationFloat         = new DevExpress.Utils.PointFloat(79.16666F, 81.16665F);
     this.xrRichText4.Name                  = "xrRichText4";
     this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
     this.xrRichText4.SizeF                 = new System.Drawing.SizeF(136.4583F, 23F);
     //
     // xrLabel3
     //
     this.xrLabel3.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(9.375F, 81.16665F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(69.79167F, 23F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "Annee :";
     //
     // xrRichText3
     //
     this.xrRichText3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Rtf", null, "liste_affectation.optioneleve")
     });
     this.xrRichText3.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrRichText3.LocationFloat         = new DevExpress.Utils.PointFloat(79.79173F, 55.99995F);
     this.xrRichText3.Name                  = "xrRichText3";
     this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
     this.xrRichText3.SizeF                 = new System.Drawing.SizeF(110.4166F, 23F);
     //
     // xrRichText2
     //
     this.xrRichText2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Rtf", null, "liste_affectation.section")
     });
     this.xrRichText2.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrRichText2.LocationFloat         = new DevExpress.Utils.PointFloat(79.79173F, 32.99996F);
     this.xrRichText2.Name                  = "xrRichText2";
     this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
     this.xrRichText2.SizeF                 = new System.Drawing.SizeF(104.1667F, 23F);
     //
     // xrRichText1
     //
     this.xrRichText1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Rtf", null, "liste_affectation.classe")
     });
     this.xrRichText1.Font                  = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(79.16666F, 9.999974F);
     this.xrRichText1.Name                  = "xrRichText1";
     this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                 = new System.Drawing.SizeF(67.70831F, 23F);
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 114.5833F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(223.9584F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Cours";
     this.xrTableCell4.Weight = 2.23958374023437D;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(9.375F, 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(69.79167F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Classe :";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 15.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(113.6667F, 78.125F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(230.2083F, 32.375F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "LISTE DES COURS";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 115.7084F;
     this.PageHeader.Name    = "PageHeader";
     //
     // GroupFooter1
     //
     this.GroupFooter1.HeightF = 0F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 41.66667F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLabel4
     //
     this.xrLabel4.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(10.0001F, 32.99999F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(69.16656F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Section :";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(10.0001F, 55.99998F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(69.16656F, 23F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "Option :";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.nomEcol")
     });
     this.xrLabel6.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(113.6667F, 9.12501F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(268.4998F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.telephoneEcol")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(113.6667F, 32.12501F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(101.9583F, 23F);
     this.xrLabel7.Text          = "xrLabel6";
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.adresseEcol")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(113.6667F, 55.12502F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(268.4998F, 23F);
     this.xrLabel8.Text          = "xrLabel6";
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.mailEcol")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(215.625F, 32.12501F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(166.5416F, 23F);
     this.xrLabel9.Text          = "xrLabel6";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_ecole_bd_Connection 24";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "liste_affectation";
     tableInfo1.Name   = "liste_affectation";
     columnInfo1.Name  = "codeaffect";
     columnInfo2.Name  = "maxima";
     columnInfo3.Name  = "codecours";
     columnInfo4.Name  = "codeanne";
     columnInfo5.Name  = "codeens";
     columnInfo6.Name  = "NomEns";
     columnInfo7.Name  = "postnomEns";
     columnInfo8.Name  = "Code_classe";
     columnInfo9.Name  = "classe";
     columnInfo10.Name = "code_section";
     columnInfo11.Name = "section";
     columnInfo12.Name = "codeop";
     columnInfo13.Name = "optioneleve";
     columnInfo14.Name = "code_periode";
     columnInfo15.Name = "des_periode";
     columnInfo16.Name = "Annee";
     columnInfo17.Name = "NumCours";
     columnInfo18.Name = "RefEcole";
     columnInfo19.Name = "nomEcol";
     columnInfo20.Name = "adresseEcol";
     columnInfo21.Name = "telephoneEcol";
     columnInfo22.Name = "mailEcol";
     columnInfo23.Name = "Logo";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21,
         columnInfo22,
         columnInfo23
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "liste_affectation.Logo")
     });
     this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrPictureBox1.Name                     = "xrPictureBox1";
     this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(113.6667F, 105.7084F);
     this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorders = false;
     //
     // La_liste_des_cours
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.GroupFooter1,
         this.PageFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "liste_affectation";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(4, 2, 6, 16);
     this.PageHeight = 583;
     this.PageWidth  = 413;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A6;
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.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.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.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.ColumnInfo           columnInfo11        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12        = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.TableInfo            tableInfo2          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo17        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo18        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo19        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo22        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo3          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo23        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo24        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo25        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo26        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo27        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo28        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo4          = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo29        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo30        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo31        = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo32        = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(MillReportsXtraReport));
     this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
     this.heatNumber               = new DevExpress.XtraReports.UI.XRLabel();
     this.type                     = new DevExpress.XtraReports.UI.XRLabel();
     this.wallThickness            = new DevExpress.XtraReports.UI.XRLabel();
     this.weight                   = new DevExpress.XtraReports.UI.XRLabel();
     this.purchaseOrderDate        = new DevExpress.XtraReports.UI.XRLabel();
     this.purchaseOrderNumber      = new DevExpress.XtraReports.UI.XRLabel();
     this.number                   = new DevExpress.XtraReports.UI.XRLabel();
     this.pipeStatus               = new DevExpress.XtraReports.UI.XRLabel();
     this.plateNumber              = new DevExpress.XtraReports.UI.XRLabel();
     this.length                   = new DevExpress.XtraReports.UI.XRLabel();
     this.diameter                 = new DevExpress.XtraReports.UI.XRLabel();
     this.active                   = new DevExpress.XtraReports.UI.XRCheckBox();
     this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.wallThicknessLabel       = new DevExpress.XtraReports.UI.XRLabel();
     this.typeLabel                = new DevExpress.XtraReports.UI.XRLabel();
     this.weightLabel              = new DevExpress.XtraReports.UI.XRLabel();
     this.purchaseOrderDateLabel   = new DevExpress.XtraReports.UI.XRLabel();
     this.purchaseOrderNumberLabel = new DevExpress.XtraReports.UI.XRLabel();
     this.plateNumberLabel         = new DevExpress.XtraReports.UI.XRLabel();
     this.statusLabel              = new DevExpress.XtraReports.UI.XRLabel();
     this.numberLabel              = new DevExpress.XtraReports.UI.XRLabel();
     this.lengthLabel              = new DevExpress.XtraReports.UI.XRLabel();
     this.activeLabel              = new DevExpress.XtraReports.UI.XRLabel();
     this.diameterLabel            = new DevExpress.XtraReports.UI.XRLabel();
     this.pageFooter               = new DevExpress.XtraReports.UI.PageFooterBand();
     this.datePageInfo             = new DevExpress.XtraReports.UI.XRPageInfo();
     this.numberOfPageInfo         = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeader             = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.reportHeaderLabel        = 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.PageHeader               = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.pageHeaderLabel          = new DevExpress.XtraReports.UI.XRLabel();
     this.heatNumberLabel          = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSourceForReport   = new DevExpress.DataAccess.Sql.SqlDataSource("PrismDatabase");
     this.GroupHeader              = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.StatusParameter          = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.heatNumber,
         this.type,
         this.wallThickness,
         this.weight,
         this.purchaseOrderDate,
         this.purchaseOrderNumber,
         this.number,
         this.pipeStatus,
         this.plateNumber,
         this.length,
         this.diameter,
         this.active
     });
     this.Detail.HeightF       = 24.125F;
     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;
     //
     // heatNumber
     //
     this.heatNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.Heat_number")
     });
     this.heatNumber.LocationFloat = new DevExpress.Utils.PointFloat(852.1213F, 0F);
     this.heatNumber.Name          = "heatNumber";
     this.heatNumber.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.heatNumber.SizeF         = new System.Drawing.SizeF(73.95831F, 22.04166F);
     this.heatNumber.Text          = "heatNumber";
     //
     // type
     //
     this.type.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.type")
     });
     this.type.LocationFloat = new DevExpress.Utils.PointFloat(89.67304F, 0F);
     this.type.Name          = "type";
     this.type.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.type.SizeF         = new System.Drawing.SizeF(150.4989F, 22.04167F);
     this.type.StyleName     = "DataField";
     this.type.Text          = "type";
     //
     // wallThickness
     //
     this.wallThickness.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.wallThickness")
     });
     this.wallThickness.LocationFloat = new DevExpress.Utils.PointFloat(494.409F, 0F);
     this.wallThickness.Name          = "wallThickness";
     this.wallThickness.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.wallThickness.SizeF         = new System.Drawing.SizeF(72.46927F, 22.04166F);
     this.wallThickness.StyleName     = "DataField";
     this.wallThickness.Text          = "wallThickness";
     //
     // weight
     //
     this.weight.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.weight")
     });
     this.weight.LocationFloat = new DevExpress.Utils.PointFloat(566.8782F, 0F);
     this.weight.Name          = "weight";
     this.weight.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.weight.SizeF         = new System.Drawing.SizeF(54.31158F, 22.04166F);
     this.weight.StyleName     = "DataField";
     this.weight.Text          = "weight";
     //
     // purchaseOrderDate
     //
     this.purchaseOrderDate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.PurchaseOrder_date", "{0:M/d/yyyy}")
     });
     this.purchaseOrderDate.LocationFloat = new DevExpress.Utils.PointFloat(322.6973F, 0F);
     this.purchaseOrderDate.Name          = "purchaseOrderDate";
     this.purchaseOrderDate.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.purchaseOrderDate.SizeF         = new System.Drawing.SizeF(70.34799F, 22.04166F);
     this.purchaseOrderDate.StyleName     = "DataField";
     this.purchaseOrderDate.Text          = "purchaseOrderDate";
     //
     // purchaseOrderNumber
     //
     this.purchaseOrderNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.PurchaseOrder_number")
     });
     this.purchaseOrderNumber.LocationFloat = new DevExpress.Utils.PointFloat(393.0453F, 0F);
     this.purchaseOrderNumber.Name          = "purchaseOrderNumber";
     this.purchaseOrderNumber.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.purchaseOrderNumber.SizeF         = new System.Drawing.SizeF(101.3637F, 22.04166F);
     this.purchaseOrderNumber.StyleName     = "DataField";
     this.purchaseOrderNumber.Text          = "purchaseOrderNumber";
     //
     // number
     //
     this.number.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.number")
     });
     this.number.LocationFloat = new DevExpress.Utils.PointFloat(6F, 0F);
     this.number.Name          = "number";
     this.number.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.number.SizeF         = new System.Drawing.SizeF(83.673F, 22.04166F);
     this.number.StyleName     = "DataField";
     this.number.Text          = "number";
     //
     // pipeStatus
     //
     this.pipeStatus.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.pipeMillStatus")
     });
     this.pipeStatus.LocationFloat = new DevExpress.Utils.PointFloat(240.172F, 0F);
     this.pipeStatus.Name          = "pipeStatus";
     this.pipeStatus.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.pipeStatus.SizeF         = new System.Drawing.SizeF(61.69193F, 22.04166F);
     this.pipeStatus.StyleName     = "DataField";
     this.pipeStatus.Text          = "pipeStatus";
     //
     // plateNumber
     //
     this.plateNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.Plate_number")
     });
     this.plateNumber.LocationFloat = new DevExpress.Utils.PointFloat(757.5827F, 0F);
     this.plateNumber.Name          = "plateNumber";
     this.plateNumber.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.plateNumber.SizeF         = new System.Drawing.SizeF(70.93787F, 22.04166F);
     this.plateNumber.StyleName     = "DataField";
     this.plateNumber.Text          = "plateNumber";
     //
     // length
     //
     this.length.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.length")
     });
     this.length.LocationFloat = new DevExpress.Utils.PointFloat(621.1899F, 0F);
     this.length.Name          = "length";
     this.length.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.length.SizeF         = new System.Drawing.SizeF(46.40631F, 22.04166F);
     this.length.StyleName     = "DataField";
     this.length.Text          = "length";
     //
     // diameter
     //
     this.diameter.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Pipe.diameter")
     });
     this.diameter.LocationFloat = new DevExpress.Utils.PointFloat(689.6002F, 0F);
     this.diameter.Name          = "diameter";
     this.diameter.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.diameter.SizeF         = new System.Drawing.SizeF(67.98236F, 22.04167F);
     this.diameter.StyleName     = "DataField";
     this.diameter.Text          = "diameter";
     //
     // active
     //
     this.active.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("CheckState", null, "Pipe.isActive")
     });
     this.active.LocationFloat = new DevExpress.Utils.PointFloat(959.5175F, 0F);
     this.active.Name          = "active";
     this.active.SizeF         = new System.Drawing.SizeF(55.48248F, 22.04167F);
     this.active.StyleName     = "DataField";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 51F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 64F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // wallThicknessLabel
     //
     this.wallThicknessLabel.ForeColor     = System.Drawing.Color.Black;
     this.wallThicknessLabel.LocationFloat = new DevExpress.Utils.PointFloat(494.409F, 10.00001F);
     this.wallThicknessLabel.Name          = "wallThicknessLabel";
     this.wallThicknessLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.wallThicknessLabel.SizeF         = new System.Drawing.SizeF(72.46924F, 28.70834F);
     this.wallThicknessLabel.StyleName     = "FieldCaption";
     this.wallThicknessLabel.StylePriority.UseForeColor = false;
     this.wallThicknessLabel.Text = "Толщина";
     //
     // typeLabel
     //
     this.typeLabel.ForeColor     = System.Drawing.Color.Black;
     this.typeLabel.LocationFloat = new DevExpress.Utils.PointFloat(89.67298F, 10F);
     this.typeLabel.Name          = "typeLabel";
     this.typeLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.typeLabel.SizeF         = new System.Drawing.SizeF(150.499F, 28.70834F);
     this.typeLabel.StyleName     = "FieldCaption";
     this.typeLabel.StylePriority.UseForeColor = false;
     this.typeLabel.Text = "Тип трубы";
     //
     // weightLabel
     //
     this.weightLabel.ForeColor     = System.Drawing.Color.Black;
     this.weightLabel.LocationFloat = new DevExpress.Utils.PointFloat(566.8782F, 10.00001F);
     this.weightLabel.Name          = "weightLabel";
     this.weightLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.weightLabel.SizeF         = new System.Drawing.SizeF(54.31171F, 28.70834F);
     this.weightLabel.StyleName     = "FieldCaption";
     this.weightLabel.StylePriority.UseForeColor = false;
     this.weightLabel.Text = "Вес";
     //
     // purchaseOrderDateLabel
     //
     this.purchaseOrderDateLabel.ForeColor     = System.Drawing.Color.Black;
     this.purchaseOrderDateLabel.LocationFloat = new DevExpress.Utils.PointFloat(322.6973F, 10.00001F);
     this.purchaseOrderDateLabel.Name          = "purchaseOrderDateLabel";
     this.purchaseOrderDateLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.purchaseOrderDateLabel.SizeF         = new System.Drawing.SizeF(70.34799F, 28.70834F);
     this.purchaseOrderDateLabel.StyleName     = "FieldCaption";
     this.purchaseOrderDateLabel.StylePriority.UseForeColor = false;
     this.purchaseOrderDateLabel.Text = "Дата";
     //
     // purchaseOrderNumberLabel
     //
     this.purchaseOrderNumberLabel.ForeColor     = System.Drawing.Color.Black;
     this.purchaseOrderNumberLabel.LocationFloat = new DevExpress.Utils.PointFloat(393.0453F, 10.00001F);
     this.purchaseOrderNumberLabel.Name          = "purchaseOrderNumberLabel";
     this.purchaseOrderNumberLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.purchaseOrderNumberLabel.SizeF         = new System.Drawing.SizeF(101.3637F, 28.70834F);
     this.purchaseOrderNumberLabel.StyleName     = "FieldCaption";
     this.purchaseOrderNumberLabel.StylePriority.UseForeColor = false;
     this.purchaseOrderNumberLabel.Text = "Номер";
     //
     // plateNumberLabel
     //
     this.plateNumberLabel.ForeColor     = System.Drawing.Color.Black;
     this.plateNumberLabel.LocationFloat = new DevExpress.Utils.PointFloat(757.5827F, 10.00001F);
     this.plateNumberLabel.Name          = "plateNumberLabel";
     this.plateNumberLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.plateNumberLabel.SizeF         = new System.Drawing.SizeF(94.53857F, 28.70834F);
     this.plateNumberLabel.StyleName     = "FieldCaption";
     this.plateNumberLabel.StylePriority.UseForeColor = false;
     this.plateNumberLabel.Text = "Номер листа";
     //
     // statusLabel
     //
     this.statusLabel.ForeColor     = System.Drawing.Color.Black;
     this.statusLabel.LocationFloat = new DevExpress.Utils.PointFloat(240.172F, 10F);
     this.statusLabel.Name          = "statusLabel";
     this.statusLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.statusLabel.SizeF         = new System.Drawing.SizeF(61.69189F, 28.70834F);
     this.statusLabel.StyleName     = "FieldCaption";
     this.statusLabel.StylePriority.UseForeColor = false;
     this.statusLabel.Text = "Статус";
     //
     // numberLabel
     //
     this.numberLabel.ForeColor     = System.Drawing.Color.Black;
     this.numberLabel.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 10.00001F);
     this.numberLabel.Name          = "numberLabel";
     this.numberLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.numberLabel.SizeF         = new System.Drawing.SizeF(83.67307F, 28.70834F);
     this.numberLabel.StyleName     = "FieldCaption";
     this.numberLabel.StylePriority.UseForeColor = false;
     this.numberLabel.Text = "Номер";
     //
     // lengthLabel
     //
     this.lengthLabel.ForeColor     = System.Drawing.Color.Black;
     this.lengthLabel.LocationFloat = new DevExpress.Utils.PointFloat(621.1899F, 10.00001F);
     this.lengthLabel.Name          = "lengthLabel";
     this.lengthLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lengthLabel.SizeF         = new System.Drawing.SizeF(68.41034F, 28.70834F);
     this.lengthLabel.StyleName     = "FieldCaption";
     this.lengthLabel.StylePriority.UseForeColor = false;
     this.lengthLabel.Text = "Длина";
     //
     // activeLabel
     //
     this.activeLabel.ForeColor     = System.Drawing.Color.Black;
     this.activeLabel.LocationFloat = new DevExpress.Utils.PointFloat(959.5175F, 10.00001F);
     this.activeLabel.Name          = "activeLabel";
     this.activeLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.activeLabel.SizeF         = new System.Drawing.SizeF(55.48254F, 28.70834F);
     this.activeLabel.StyleName     = "FieldCaption";
     this.activeLabel.StylePriority.UseForeColor = false;
     this.activeLabel.Text = "Active";
     //
     // diameterLabel
     //
     this.diameterLabel.ForeColor     = System.Drawing.Color.Black;
     this.diameterLabel.LocationFloat = new DevExpress.Utils.PointFloat(689.6002F, 10.00001F);
     this.diameterLabel.Name          = "diameterLabel";
     this.diameterLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.diameterLabel.SizeF         = new System.Drawing.SizeF(67.98248F, 28.70834F);
     this.diameterLabel.StyleName     = "FieldCaption";
     this.diameterLabel.StylePriority.UseForeColor = false;
     this.diameterLabel.Text = "Диаметр";
     //
     // pageFooter
     //
     this.pageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.datePageInfo,
         this.numberOfPageInfo
     });
     this.pageFooter.HeightF = 52.9583F;
     this.pageFooter.Name    = "pageFooter";
     //
     // datePageInfo
     //
     this.datePageInfo.LocationFloat = new DevExpress.Utils.PointFloat(6F, 19.9583F);
     this.datePageInfo.Name          = "datePageInfo";
     this.datePageInfo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.datePageInfo.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.datePageInfo.SizeF         = new System.Drawing.SizeF(438F, 23F);
     this.datePageInfo.StyleName     = "PageInfo";
     //
     // numberOfPageInfo
     //
     this.numberOfPageInfo.Format        = "Page {0} of {1}";
     this.numberOfPageInfo.LocationFloat = new DevExpress.Utils.PointFloat(546.0001F, 19.95831F);
     this.numberOfPageInfo.Name          = "numberOfPageInfo";
     this.numberOfPageInfo.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.numberOfPageInfo.SizeF         = new System.Drawing.SizeF(438F, 23F);
     this.numberOfPageInfo.StyleName     = "PageInfo";
     this.numberOfPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeader
     //
     this.reportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.reportHeaderLabel
     });
     this.reportHeader.HeightF = 49.95832F;
     this.reportHeader.Name    = "reportHeader";
     //
     // reportHeaderLabel
     //
     this.reportHeaderLabel.ForeColor     = System.Drawing.Color.Black;
     this.reportHeaderLabel.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.reportHeaderLabel.Name          = "reportHeaderLabel";
     this.reportHeaderLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.reportHeaderLabel.SizeF         = new System.Drawing.SizeF(888F, 33F);
     this.reportHeaderLabel.StyleName     = "Title";
     this.reportHeaderLabel.StylePriority.UseForeColor = false;
     this.reportHeaderLabel.Text = "Отчет на заводе";
     //
     // 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);
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageHeaderLabel
     });
     this.PageHeader.HeightF = 72.29166F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.PrintOn = DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader;
     //
     // pageHeaderLabel
     //
     this.pageHeaderLabel.ForeColor     = System.Drawing.Color.Black;
     this.pageHeaderLabel.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.pageHeaderLabel.Name          = "pageHeaderLabel";
     this.pageHeaderLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.pageHeaderLabel.SizeF         = new System.Drawing.SizeF(905.7083F, 33F);
     this.pageHeaderLabel.StyleName     = "Title";
     this.pageHeaderLabel.StylePriority.UseForeColor = false;
     this.pageHeaderLabel.Text = "Отчет на заводе";
     //
     // heatNumberLabel
     //
     this.heatNumberLabel.ForeColor     = System.Drawing.Color.Black;
     this.heatNumberLabel.LocationFloat = new DevExpress.Utils.PointFloat(852.1213F, 10.00001F);
     this.heatNumberLabel.Name          = "heatNumberLabel";
     this.heatNumberLabel.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.heatNumberLabel.SizeF         = new System.Drawing.SizeF(107.3962F, 28.70834F);
     this.heatNumberLabel.StyleName     = "FieldCaption";
     this.heatNumberLabel.StylePriority.UseForeColor = false;
     this.heatNumberLabel.Text = "Номер плавки";
     //
     // sqlDataSourceForReport
     //
     tableQuery1.Name = "Pipe";
     relationColumnInfo1.NestedKeyColumn = "id";
     relationColumnInfo1.ParentKeyColumn = "plateId";
     relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo1
     });
     relationInfo1.NestedTable           = "Plate";
     relationInfo1.ParentTable           = "Pipe";
     relationColumnInfo2.NestedKeyColumn = "id";
     relationColumnInfo2.ParentKeyColumn = "heatId";
     relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo2
     });
     relationInfo2.NestedTable           = "Heat";
     relationInfo2.ParentTable           = "Plate";
     relationColumnInfo3.NestedKeyColumn = "id";
     relationColumnInfo3.ParentKeyColumn = "purchaseOrderId";
     relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo3
     });
     relationInfo3.NestedTable = "PurchaseOrder";
     relationInfo3.ParentTable = "Pipe";
     tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
         relationInfo1,
         relationInfo2,
         relationInfo3
     });
     tableInfo1.Name   = "Pipe";
     columnInfo1.Name  = "id";
     columnInfo2.Name  = "wallThickness";
     columnInfo3.Name  = "diameter";
     columnInfo4.Name  = "weight";
     columnInfo5.Name  = "mill";
     columnInfo6.Name  = "pipeMillStatus";
     columnInfo7.Name  = "number";
     columnInfo8.Name  = "isActive";
     columnInfo9.Name  = "inspectionStatus";
     columnInfo10.Name = "constructionStatus";
     columnInfo11.Name = "typeId";
     columnInfo12.Name = "plateId";
     columnInfo13.Name = "purchaseOrderId";
     columnInfo14.Name = "railcarId";
     columnInfo15.Name = "chemicalCompositionId";
     columnInfo16.Name = "length";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16
     });
     tableInfo2.Name    = "Plate";
     columnInfo17.Alias = "Plate_id";
     columnInfo17.Name  = "id";
     columnInfo18.Alias = "Plate_number";
     columnInfo18.Name  = "number";
     columnInfo19.Name  = "thickness";
     columnInfo20.Alias = "Plate_chemicalCompositionId";
     columnInfo20.Name  = "chemicalCompositionId";
     columnInfo21.Name  = "heatId";
     columnInfo22.Alias = "Plate_isActive";
     columnInfo22.Name  = "isActive";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21,
         columnInfo22
     });
     tableInfo3.Name    = "Heat";
     columnInfo23.Alias = "Heat_id";
     columnInfo23.Name  = "id";
     columnInfo24.Alias = "Heat_number";
     columnInfo24.Name  = "number";
     columnInfo25.Name  = "steelGrade";
     columnInfo26.Name  = "plateManufacturer";
     columnInfo27.Alias = "Heat_chemicalCompositionId";
     columnInfo27.Name  = "chemicalCompositionId";
     columnInfo28.Alias = "Heat_isActive";
     columnInfo28.Name  = "isActive";
     tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo23,
         columnInfo24,
         columnInfo25,
         columnInfo26,
         columnInfo27,
         columnInfo28
     });
     tableInfo4.Name    = "PurchaseOrder";
     columnInfo29.Alias = "PurchaseOrder_id";
     columnInfo29.Name  = "id";
     columnInfo30.Alias = "PurchaseOrder_number";
     columnInfo30.Name  = "number";
     columnInfo31.Name  = "date";
     columnInfo32.Alias = "PurchaseOrder_isActive";
     columnInfo32.Name  = "isActive";
     tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo29,
         columnInfo30,
         columnInfo31,
         columnInfo32
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1,
         tableInfo2,
         tableInfo3,
         tableInfo4
     });
     this.sqlDataSourceForReport.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSourceForReport.ResultSchemaSerializable = resources.GetString("sqlDataSourceForReport.ResultSchemaSerializable");
     //
     // GroupHeader
     //
     this.GroupHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.activeLabel,
         this.plateNumberLabel,
         this.wallThicknessLabel,
         this.weightLabel,
         this.diameterLabel,
         this.lengthLabel,
         this.purchaseOrderNumberLabel,
         this.numberLabel,
         this.purchaseOrderDateLabel,
         this.statusLabel,
         this.typeLabel,
         this.heatNumberLabel
     });
     this.GroupHeader.HeightF = 40F;
     this.GroupHeader.Name    = "GroupHeader";
     //
     // StatusParameter
     //
     this.StatusParameter.Description = "StatusParameter";
     this.StatusParameter.Name        = "StatusParameter";
     //
     // MillReportsXtraReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooter,
         this.reportHeader,
         this.PageHeader,
         this.GroupHeader
     });
     this.DataMember   = "Pipe";
     this.DataSource   = this.sqlDataSourceForReport;
     this.FilterString = "StartsWith([pipeMillStatus], ?StatusParameter)";
     this.Landscape    = true;
     this.Margins      = new System.Drawing.Printing.Margins(59, 26, 51, 64);
     this.PageHeight   = 850;
     this.PageWidth    = 1100;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.StatusParameter
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "14.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.ColumnInfo           columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(ClientStatement));
     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.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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.HeightF       = 16.66667F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // 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.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 = "connStatement";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "ClientStatement";
     tableInfo1.Name  = "ClientStatement";
     columnInfo1.Name = "id";
     columnInfo2.Name = "transdate";
     columnInfo3.Name = "transcode";
     columnInfo4.Name = "dealno";
     columnInfo5.Name = "transdescription";
     columnInfo6.Name = "transdetails";
     columnInfo7.Name = "amount";
     columnInfo8.Name = "userid";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ClientStatement.transdate", "{0:yyyy-MM-dd}")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Arial", 8F);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(100F, 13.95835F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ClientStatement.transcode")
     });
     this.xrLabel2.Font                  = new System.Drawing.Font("Arial", 8F);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(110F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(107.2917F, 13.95835F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "xrLabel2";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ClientStatement.transdescription")
     });
     this.xrLabel3.Font                  = new System.Drawing.Font("Arial", 8F);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(217.2917F, 0F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(222.7083F, 13.95835F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.Text                  = "xrLabel3";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ClientStatement.transdetails")
     });
     this.xrLabel4.Font                  = new System.Drawing.Font("Arial", 8F);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(440F, 0.9583473F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(100F, 13.95835F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "xrLabel4";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ClientStatement.amount", "{0:n2}")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 8F);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(539.9999F, 0F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(100F, 13.95835F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "xrLabel5";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // ClientStatement
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "ClientStatement";
     this.DataSource = this.sqlDataSource1;
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1   = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2   = new DevExpress.XtraReports.UI.XRSummary();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(rpt_RapportPaiement));
     DevExpress.XtraReports.UI.XRSummary            xrSummary3   = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo22 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo23 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo24 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo25 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo26 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo27 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16  = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable3       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell17  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23  = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader   = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     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.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter2   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable4       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19  = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.GroupHeader2   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(6.000094F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(780.9999F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell15,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name    = "xrTableCell9";
     xrSummary1.Func           = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell9.Summary = xrSummary1;
     this.xrTableCell9.Text    = "N° ";
     this.xrTableCell9.Weight  = 0.447083053588867D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.Client")
     });
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "Client";
     this.xrTableCell10.Weight = 1.25D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.Proprietaire")
     });
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "Proprietaire";
     this.xrTableCell11.Weight = 1.19791656494141D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.Chauffeur")
     });
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "Chauffeur";
     this.xrTableCell12.Weight = 1.12500007629395D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "[NomBus] - [numeroplaqueBus]";
     this.xrTableCell13.Weight = 2.1041681318951495D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.montant")
     });
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "Montant";
     this.xrTableCell15.Weight = 0.71874755388173617D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.datepaiement", "{0:dd/MM/yyyy}")
     });
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Text   = "Date";
     this.xrTableCell16.Weight = 0.96708374087601634D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 6F;
     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;
     //
     // GroupHeader1
     //
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("refProprietaire", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 0F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupFooter1.HeightF = 25F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrTable3
     //
     this.xrTable3.BackColor = System.Drawing.Color.PaleTurquoise;
     this.xrTable3.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(6.000153F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(780.9999F, 25F);
     this.xrTable3.StylePriority.UseBackColor     = false;
     this.xrTable3.StylePriority.UseBorders       = false;
     this.xrTable3.StylePriority.UseFont          = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell17,
         this.xrTableCell23
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text          = "TOTAL(Par Propriétaire) :";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell17.Weight        = 6.12416871555547D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.montant")
     });
     this.xrTableCell23.Name    = "xrTableCell23";
     xrSummary2.Running         = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell23.Summary = xrSummary2;
     this.xrTableCell23.Weight  = 1.68583213840648D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox1,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrPictureBox2,
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 137.5F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox1.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(8.000064F, 8.95834F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(107.2083F, 103.9583F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorderColor = false;
     this.xrPictureBox1.StylePriority.UseBorders     = false;
     //
     // xrLabel5
     //
     this.xrLabel5.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel5.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel5.Font            = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat   = new DevExpress.Utils.PointFloat(154.6251F, 54.95836F);
     this.xrLabel5.Name            = "xrLabel5";
     this.xrLabel5.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF           = new System.Drawing.SizeF(439.5833F, 23.00002F);
     this.xrLabel5.StylePriority.UseBorderDashStyle = false;
     this.xrLabel5.StylePriority.UseBorders         = false;
     this.xrLabel5.StylePriority.UseFont            = false;
     this.xrLabel5.StylePriority.UseTextAlignment   = false;
     this.xrLabel5.Text          = "[telephoneEse] - [mailEse] - [sitewebEse]";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel4
     //
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.adresseEse")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(154.6251F, 31.95835F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrLabel2";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.nomEse")
     });
     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(154.6251F, 8.958363F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(439.5833F, 23F);
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     this.xrLabel3.Text          = "xrLabel2";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.xrPictureBox2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                              | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "vrapportpaiement.logoEse")
     });
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(690.2917F, 8.95834F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(96.70831F, 103.9583F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox2.StylePriority.UseBorderColor = false;
     this.xrPictureBox2.StylePriority.UseBorders     = false;
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(229)))), ((int)(((byte)(244)))));
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(115.2084F, 79.50001F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(575.0833F, 33.41667F);
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "RAPPORT JOURNALIER DES PAIEMENTS DE TRANSPORTS";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.HeightF = 0F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(6.000098F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(780.9999F, 25F);
     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.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "N° ";
     this.xrTableCell1.Weight = 0.447083053588867D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Client";
     this.xrTableCell2.Weight = 1.25D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Proprietaire";
     this.xrTableCell3.Weight = 1.1979167175293D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Chauffeur";
     this.xrTableCell4.Weight = 1.125D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Engin";
     this.xrTableCell5.Weight = 2.104167785644536D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "Montant";
     this.xrTableCell7.Weight = 0.71874877929687486D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Date";
     this.xrTableCell8.Weight = 0.96708244323730519D;
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4
     });
     this.GroupFooter2.HeightF = 25F;
     this.GroupFooter2.Level   = 1;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // xrTable4
     //
     this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(6.000125F, 0F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(778.9999F, 25F);
     this.xrTable4.StylePriority.UseBorders = false;
     this.xrTable4.StylePriority.UseFont    = false;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrTableCell19
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text          = "TOTAL :";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell18.Weight        = 6.1241693259072D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "vrapportpaiement.montant")
     });
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     xrSummary3.Running               = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell19.Summary       = xrSummary3;
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell19.Weight        = 1.66583213309363D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_transpie_db_Connection 2";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "vrapportpaiement";
     tableInfo1.Name   = "vrapportpaiement";
     columnInfo1.Name  = "id";
     columnInfo2.Name  = "Client";
     columnInfo3.Name  = "montant";
     columnInfo4.Name  = "datepaiement";
     columnInfo5.Name  = "usersession";
     columnInfo6.Name  = "contactClient";
     columnInfo7.Name  = "detailEngin";
     columnInfo8.Name  = "refClient";
     columnInfo9.Name  = "refAffectChauffeur";
     columnInfo10.Name = "refEngin";
     columnInfo11.Name = "refChauffeur";
     columnInfo12.Name = "refProprietaire";
     columnInfo13.Name = "refCategorie";
     columnInfo14.Name = "numeroplaqueBus";
     columnInfo15.Name = "NomBus";
     columnInfo16.Name = "Chauffeur";
     columnInfo17.Name = "Proprietaire";
     columnInfo18.Name = "nomEse";
     columnInfo19.Name = "adresseEse";
     columnInfo20.Name = "telephoneEse";
     columnInfo21.Name = "mailEse";
     columnInfo22.Name = "logoEse";
     columnInfo23.Name = "sitewebEse";
     columnInfo24.Name = "boitePostbEse";
     columnInfo25.Name = "rccmEse";
     columnInfo26.Name = "idNatEse";
     columnInfo27.Name = "NumImpotEse";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21,
         columnInfo22,
         columnInfo23,
         columnInfo24,
         columnInfo25,
         columnInfo26,
         columnInfo27
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Level   = 1;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // rpt_RapportPaiement
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.GroupFooter1,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupFooter2,
         this.GroupHeader2
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "vrapportpaiement";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(39, 14, 6, 100);
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).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()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(Xtra_Luong));
     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.pageHeaderBand1   = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.groupHeaderBand1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel7          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3           = new DevExpress.XtraReports.UI.XRLine();
     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.xrLabel25         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     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;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel25,
         this.xrLabel24
     });
     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.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 = "BI_QuanLyChamCongConnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "QL_Luong";
     tableInfo1.Name  = "QL_Luong";
     columnInfo1.Name = "MaNhanVien";
     columnInfo2.Name = "MaPhieu";
     columnInfo3.Name = "TongLuong";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // pageHeaderBand1
     //
     this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLine1,
         this.xrLine2
     });
     this.pageHeaderBand1.HeightF = 45F;
     this.pageHeaderBand1.Name    = "pageHeaderBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 7F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(168.5772F, 36F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "Ma Phieu";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(174.5772F, 7.000001F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(248.9756F, 38F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "Ma Nhan Vien";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(423.5528F, 7F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(220.4472F, 36F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Tong Luong";
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 5F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 43F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.groupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("MaPhieu", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("MaNhanVien", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("TongLuong", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand1.HeightF   = 23F;
     this.groupHeaderBand1.Name      = "groupHeaderBand1";
     this.groupHeaderBand1.StyleName = "DataField";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "QL_Luong.MaPhieu")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(6F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(168.5772F, 23F);
     this.xrLabel4.Text          = "xrLabel4";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "QL_Luong.MaNhanVien")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(174.5772F, 0F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(248.9756F, 23F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "QL_Luong.TongLuong")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(423.5528F, 0F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(220.4472F, 23F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel7,
         this.xrLine3
     });
     this.reportHeaderBand1.HeightF = 51F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel7
     //
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 7.999992F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(638F, 33F);
     this.xrLabel7.StyleName     = "Title";
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "DANH SÁCH LƯƠNG NHÂN VIÊN";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLine3
     //
     this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 0F);
     this.xrLine3.Name          = "xrLine3";
     this.xrLine3.SizeF         = new System.Drawing.SizeF(744F, 2.083333F);
     //
     // 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);
     //
     // xrLabel25
     //
     this.xrLabel25.Font                  = new System.Drawing.Font("Times New Roman", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrLabel25.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 63.6875F);
     this.xrLabel25.Name                  = "xrLabel25";
     this.xrLabel25.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.SizeF                 = new System.Drawing.SizeF(322.9167F, 23F);
     this.xrLabel25.StylePriority.UseFont = false;
     this.xrLabel25.Text                  = "140, Lê Trọng Tấn, P.Sơn Kỳ, Q.Tân Phú";
     //
     // xrLabel24
     //
     this.xrLabel24.Font                  = new System.Drawing.Font("Times New Roman", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrLabel24.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 23.72917F);
     this.xrLabel24.Name                  = "xrLabel24";
     this.xrLabel24.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.SizeF                 = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel24.StylePriority.UseFont = false;
     this.xrLabel24.Text                  = "Công ty ABC";
     //
     // Xtra_Luong
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageHeaderBand1,
         this.groupHeaderBand1,
         this.pageFooterBand1,
         this.reportHeaderBand1
     });
     this.ComponentStorage.Add(this.sqlDataSource1);
     this.DataMember = "QL_Luong";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(100, 0, 100, 100);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "14.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.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.SortingInfo          sortingInfo1        = new DevExpress.DataAccess.Sql.SortingInfo();
     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();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(ProductosporExistensiaMinima));
     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.pageHeaderBand1   = new DevExpress.XtraReports.UI.PageHeaderBand();
     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.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.groupHeaderBand1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     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.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel9          = 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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel8
     });
     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;
     //
     // 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.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 = "POSIXConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "PRODUCTOS";
     relationColumnInfo1.NestedKeyColumn = "IdCategoria";
     relationColumnInfo1.ParentKeyColumn = "IdCategoria";
     relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo1
     });
     relationInfo1.NestedTable = "CATEGORIAS_PRODUCTOS";
     relationInfo1.ParentTable = "PRODUCTOS";
     tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
         relationInfo1
     });
     sortingInfo1.Column = "Existecia_Min";
     sortingInfo1.Table  = "PRODUCTOS";
     tableQuery1.Sorting.AddRange(new DevExpress.DataAccess.Sql.SortingInfo[] {
         sortingInfo1
     });
     tableInfo1.Name  = "PRODUCTOS";
     columnInfo1.Name = "Nombre_Producto";
     columnInfo2.Name = "Cod_Barra";
     columnInfo3.Name = "Existecia_Min";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3
     });
     tableInfo2.Name  = "CATEGORIAS_PRODUCTOS";
     columnInfo4.Name = "Categoria";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo4
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1,
         tableInfo2
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // pageHeaderBand1
     //
     this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLine1,
         this.xrLine2
     });
     this.pageHeaderBand1.HeightF = 45F;
     this.pageHeaderBand1.Name    = "pageHeaderBand1";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 7F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(132.2683F, 36F);
     this.xrLabel1.StyleName     = "FieldCaption";
     this.xrLabel1.Text          = "Cod Barra";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(138.2683F, 7F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(215.9085F, 36F);
     this.xrLabel2.StyleName     = "FieldCaption";
     this.xrLabel2.Text          = "Nombre Producto";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(354.1768F, 7F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(167.2805F, 36F);
     this.xrLabel3.StyleName     = "FieldCaption";
     this.xrLabel3.Text          = "Existecia Min";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(521.4573F, 7F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(122.5427F, 36F);
     this.xrLabel4.StyleName     = "FieldCaption";
     this.xrLabel4.Text          = "Categoria";
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 5F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 43F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(638F, 2F);
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Cod_Barra", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand1.HeightF   = 23F;
     this.groupHeaderBand1.Name      = "groupHeaderBand1";
     this.groupHeaderBand1.StyleName = "DataField";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PRODUCTOS.Cod_Barra")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(132.2683F, 23F);
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PRODUCTOS.Nombre_Producto")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(132.2683F, 0F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(191.9502F, 23F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PRODUCTOS.Existecia_Min")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(325F, 0F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(167.2805F, 23F);
     this.xrLabel7.Text          = "xrLabel7";
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PRODUCTOS.Categoria")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(492.2805F, 0F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(122.5427F, 23F);
     this.xrLabel8.Text          = "xrLabel8";
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // 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        = "Página {0} de {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9
     });
     this.reportHeaderBand1.HeightF = 57F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel9
     //
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(88.29168F, 1.999998F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(485.9166F, 39F);
     this.xrLabel9.StyleName     = "Title";
     this.xrLabel9.Text          = "Productos por Existencia Minima";
     //
     // 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);
     //
     // ProductosporExistensiaMinima
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageHeaderBand1,
         this.groupHeaderBand1,
         this.pageFooterBand1,
         this.reportHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "PRODUCTOS";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1      = new DevExpress.DataAccess.Sql.TableQuery();
     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();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport1));
     this.Detail                    = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin                 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin              = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.paramCustID               = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSourceMainData     = new DevExpress.DataAccess.Sql.SqlDataSource();
     this.sqlDataSourceCustomerInfo = new DevExpress.DataAccess.Sql.SqlDataSource();
     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.ReportHeader              = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.PageHeader                = new DevExpress.XtraReports.UI.PageHeaderBand();
     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.xrLabel1                  = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("OrderDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     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.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;
     //
     // paramCustID
     //
     this.paramCustID.Description             = "Enter Customer ID";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "Customers";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSourceCustomerInfo;
     dynamicListLookUpSettings1.DisplayMember = "ContactName";
     dynamicListLookUpSettings1.FilterString  = null;
     dynamicListLookUpSettings1.ValueMember   = "CustomerID";
     this.paramCustID.LookUpSettings          = dynamicListLookUpSettings1;
     this.paramCustID.Name = "paramCustID";
     //
     // sqlDataSourceMainData
     //
     this.sqlDataSourceMainData.ConnectionName = "northwindConnection";
     this.sqlDataSourceMainData.Name           = "sqlDataSourceMainData";
     storedProcQuery1.Name = "CustOrdersOrders";
     queryParameter1.Name  = "@CustomerID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.paramCustID]", typeof(string));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "CustOrdersOrders";
     this.sqlDataSourceMainData.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSourceMainData.ResultSchemaSerializable = resources.GetString("sqlDataSourceMainData.ResultSchemaSerializable");
     //
     // sqlDataSourceCustomerInfo
     //
     this.sqlDataSourceCustomerInfo.ConnectionName = "northwindConnection";
     this.sqlDataSourceCustomerInfo.Name           = "sqlDataSourceCustomerInfo";
     tableQuery1.Name = "Customers";
     tableInfo1.Name  = "Customers";
     columnInfo1.Name = "CustomerID";
     columnInfo2.Name = "ContactName";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSourceCustomerInfo.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSourceCustomerInfo.ResultSchemaSerializable = resources.GetString("sqlDataSourceCustomerInfo.ResultSchemaSerializable");
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 11.5D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustOrdersOrders.OrderDate", "{0:M/d/yyyy}")
     });
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "xrTableCell1";
     this.xrTableCell1.Weight = 0.4D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustOrdersOrders.OrderID")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell2";
     this.xrTableCell2.Weight = 0.4D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustOrdersOrders.RequiredDate", "{0:M/d/yyyy}")
     });
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "xrTableCell3";
     this.xrTableCell3.Weight = 0.4D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustOrdersOrders.ShippedDate", "{0:M/d/yyyy}")
     });
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "xrTableCell4";
     this.xrTableCell4.Weight = 0.4D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.ReportHeader.HeightF = 62.16667F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.PageHeader.HeightF = 25F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 12F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     this.xrTable2.StylePriority.UseBackColor     = false;
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Order Date";
     this.xrTableCell5.Weight = 0.4D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Order ID";
     this.xrTableCell6.Weight = 0.4D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "Required Date";
     this.xrTableCell7.Weight = 0.4D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Shipped Date";
     this.xrTableCell8.Weight = 0.4D;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 26F, System.Drawing.FontStyle.Italic);
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(400F, 52.16666F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "Customer Orders";
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSourceMainData,
         this.sqlDataSourceCustomerInfo
     });
     this.DataMember = "CustOrdersOrders";
     this.DataSource = this.sqlDataSourceMainData;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.paramCustID
     });
     this.Version = "14.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()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo22 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo23 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo24 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo25 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(RapportAffectationListe));
     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.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.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.xrTable3       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable4       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell16  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20  = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTableCell19  = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     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       = 9.375F;
     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;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1,
         this.xrPictureBox2,
         this.xrPictureBox1
     });
     this.ReportHeader.HeightF = 100.1667F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4,
         this.xrTable1,
         this.xrTable2
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("codeens", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 92.70834F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.HeightF = 100F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.CornflowerBlue;
     this.xrTable1.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 42.70834F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(483.3335F, 25F);
     this.xrTable1.StylePriority.UseBackColor = false;
     this.xrTable1.StylePriority.UseBorders   = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell8,
         this.xrTableCell19
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.codeens")
     });
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "Matricule";
     this.xrTableCell1.Weight = 1.3020834350585937D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.NomEns")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Enseignant";
     this.xrTableCell2.Weight = 1.1145835952612202D;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 67.70834F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(706.2503F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell5
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Cours";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 2.4166665641587364D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "Maxima";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.0208347696385103D;
     //
     // 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(10.00001F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(706.2503F, 25F);
     this.xrTable3.StylePriority.UseBorders = false;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.codecours")
     });
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "Cours";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 2.4166665641587364D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.classe")
     });
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Maxima";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 1.208333680684782D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.postnomEns")
     });
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Post-Nom";
     this.xrTableCell8.Weight = 1.2083332083241269D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text          = "Classe";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 1.2083337211570557D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "Section";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 1.2083337211570557D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "Option";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 1.2083337211570557D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.code_section")
     });
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "xrTableCell13";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell13.Weight        = 1.208333680684782D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.codeop")
     });
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text          = "xrTableCell14";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight        = 1.208333680684782D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.maxima")
     });
     this.xrTableCell15.Name = "xrTableCell15";
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text          = "xrTableCell15";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell15.Weight        = 1.0208349154608332D;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("ImageUrl", null, "liste_affectation.Logo"),
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "liste_affectation.photo")
     });
     this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrPictureBox1.Name                     = "xrPictureBox1";
     this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(130.2084F, 100F);
     this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorders = false;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "liste_affectation.photo")
     });
     this.xrPictureBox2.LocationFloat            = new DevExpress.Utils.PointFloat(701.7916F, 0F);
     this.xrPictureBox2.Name                     = "xrPictureBox2";
     this.xrPictureBox2.SizeF                    = new System.Drawing.SizeF(130.2084F, 100F);
     this.xrPictureBox2.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox2.StylePriority.UseBorders = false;
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.nomEcol")
     });
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(151.6667F, 0F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(417.7084F, 23F);
     this.xrLabel1.Text          = "xrLabel1";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.adresseEcol")
     });
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(151.6667F, 23F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(417.7084F, 23F);
     this.xrLabel2.Text          = "xrLabel1";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.telephoneEcol")
     });
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(151.6667F, 46F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(131.25F, 23F);
     this.xrLabel3.Text          = "xrLabel1";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.mailEcol")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(282.9167F, 46F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(286.4584F, 23F);
     this.xrLabel4.Text          = "xrLabel1";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                  = new System.Drawing.Font("Times New Roman", 18F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrLabel5.LocationFloat         = new DevExpress.Utils.PointFloat(151.6667F, 68.99999F);
     this.xrLabel5.Name                  = "xrLabel5";
     this.xrLabel5.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                 = new System.Drawing.SizeF(341.6667F, 31F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.Text                  = "ATTRIBUTION DE COURS :";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.Annee")
     });
     this.xrLabel6.Font                  = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(493.3335F, 69.16666F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(120.8334F, 31F);
     this.xrLabel6.StylePriority.UseFont = false;
     //
     // xrTable4
     //
     this.xrTable4.BackColor = System.Drawing.Color.CornflowerBlue;
     this.xrTable4.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 17.70834F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(483.3335F, 25F);
     this.xrTable4.StylePriority.UseBackColor = false;
     this.xrTable4.StylePriority.UseBorders   = false;
     this.xrTable4.StylePriority.UseFont      = false;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell20
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Text   = "Matricule";
     this.xrTableCell16.Weight = 1.3020834350585937D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name   = "xrTableCell17";
     this.xrTableCell17.Text   = "Enseignant";
     this.xrTableCell17.Weight = 1.1145835952612202D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name   = "xrTableCell18";
     this.xrTableCell18.Text   = "Post-Nom";
     this.xrTableCell18.Weight = 1.2083332083241269D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name   = "xrTableCell20";
     this.xrTableCell20.Text   = "Qualification";
     this.xrTableCell20.Weight = 1.2083344440971997D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_ecole_bd_Zanner_Connection 1";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "liste_affectation";
     tableInfo1.Name   = "liste_affectation";
     columnInfo1.Name  = "codeaffect";
     columnInfo2.Name  = "maxima";
     columnInfo3.Name  = "codecours";
     columnInfo4.Name  = "codeanne";
     columnInfo5.Name  = "codeens";
     columnInfo6.Name  = "NomEns";
     columnInfo7.Name  = "postnomEns";
     columnInfo8.Name  = "Code_classe";
     columnInfo9.Name  = "classe";
     columnInfo10.Name = "code_section";
     columnInfo11.Name = "section";
     columnInfo12.Name = "codeop";
     columnInfo13.Name = "optioneleve";
     columnInfo14.Name = "code_periode";
     columnInfo15.Name = "des_periode";
     columnInfo16.Name = "Annee";
     columnInfo17.Name = "NumCours";
     columnInfo18.Name = "RefEcole";
     columnInfo19.Name = "nomEcol";
     columnInfo20.Name = "adresseEcol";
     columnInfo21.Name = "telephoneEcol";
     columnInfo22.Name = "mailEcol";
     columnInfo23.Name = "photo";
     columnInfo24.Name = "qualification";
     columnInfo25.Name = "Logo";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21,
         columnInfo22,
         columnInfo23,
         columnInfo24,
         columnInfo25
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_affectation.qualification")
     });
     this.xrTableCell19.Name   = "xrTableCell19";
     this.xrTableCell19.Text   = "xrTableCell19";
     this.xrTableCell19.Weight = 1.2083344440971997D;
     //
     // RapportAffectationListe
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "liste_affectation";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(4, 4, 9, 100);
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(ListePresence));
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo13 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo14 = new DevExpress.DataAccess.Sql.ColumnInfo();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = 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.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     this.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.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20  = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.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       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 78.125F;
     this.PageFooter.Name    = "PageFooter";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrPictureBox1,
         this.xrPictureBox2,
         this.xrLabel13,
         this.xrLabel14,
         this.xrLabel15,
         this.xrLabel16
     });
     this.PageHeader.HeightF = 103.125F;
     this.PageHeader.Name    = "PageHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel8,
         this.xrTable1,
         this.xrLabel2,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6,
         this.xrLabel7
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Classe", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("codesection", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("codeoption", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 102.0001F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 15.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(196.375F, 5.041663F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(396.7917F, 28.20834F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "LISTE DE PRESENCES PAR CLASSE";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(701.625F, 0F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(131.375F, 91.45833F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 0F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(131.375F, 91.45834F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel13
     //
     this.xrLabel13.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(196.375F, 33.25F);
     this.xrLabel13.Name                  = "xrLabel13";
     this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                 = new System.Drawing.SizeF(79.16667F, 23F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.Text                  = "EPSP/NK1;";
     //
     // xrLabel14
     //
     this.xrLabel14.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel14.LocationFloat         = new DevExpress.Utils.PointFloat(275.5417F, 33.25003F);
     this.xrLabel14.Name                  = "xrLabel14";
     this.xrLabel14.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                 = new System.Drawing.SizeF(93.74998F, 23F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.Text                  = "ECP/11eCAC";
     //
     // xrLabel15
     //
     this.xrLabel15.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel15.LocationFloat         = new DevExpress.Utils.PointFloat(196.375F, 56.25003F);
     this.xrLabel15.Name                  = "xrLabel15";
     this.xrLabel15.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                 = new System.Drawing.SizeF(132.7084F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.Text                  = "INSTITUT ZANNER";
     //
     // xrLabel16
     //
     this.xrLabel16.Font                  = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat         = new DevExpress.Utils.PointFloat(196.375F, 79.25002F);
     this.xrLabel16.Name                  = "xrLabel16";
     this.xrLabel16.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                 = new System.Drawing.SizeF(107.2917F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.Text                  = "B.P.186 Goma";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(12.125F, 77.00008F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(744.3749F, 25F);
     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.xrTableCell10,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "Code";
     this.xrTableCell1.Weight = 0.68124993665007094D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Nom";
     this.xrTableCell2.Weight = 1.0166668312830334D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Post-Nom";
     this.xrTableCell3.Weight = 1.1249999567873088D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "Prenom";
     this.xrTableCell10.Weight = 0.80208309978334547D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Lundi";
     this.xrTableCell4.Weight = 0.55541713827963979D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Mardi";
     this.xrTableCell5.Weight = 0.62499966273470342D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Mercredi";
     this.xrTableCell6.Weight = 0.68833309522141062D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "Jeudi";
     this.xrTableCell7.Weight = 0.56333310029749417D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Vendredi";
     this.xrTableCell8.Weight = 0.68041744612879218D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "Samedi";
     this.xrTableCell9.Weight = 0.70624820985034686D;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(12.12503F, 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(68.12499F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "Classe :";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.Designation_classe")
     });
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(80.25001F, 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(68.12499F, 23F);
     this.xrLabel3.Text          = "Classe :";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.section")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(148.375F, 10.00001F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(98.33336F, 23F);
     this.xrLabel4.Text          = "Classe :";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.optioneleve")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(248.1667F, 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(121.125F, 23F);
     this.xrLabel5.Text          = "Classe :";
     //
     // xrLabel6
     //
     this.xrLabel6.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat         = new DevExpress.Utils.PointFloat(12.12503F, 32.99996F);
     this.xrLabel6.Name                  = "xrLabel6";
     this.xrLabel6.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                 = new System.Drawing.SizeF(68.12499F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.Text                  = "Annee :";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.Designation_annee")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(80.25004F, 32.99996F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(101.6667F, 23F);
     this.xrLabel7.Text          = "Classe :";
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(12.12503F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(744.3749F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell19,
         this.xrTableCell20
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.codeinscription")
     });
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "Inscription";
     this.xrTableCell11.Weight = 0.68124993665007094D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.nom")
     });
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "Nom";
     this.xrTableCell12.Weight = 1.0166668312830334D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.postnom")
     });
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "Post-Nom";
     this.xrTableCell13.Weight = 1.1249999567873088D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.prenom")
     });
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "Prenom";
     this.xrTableCell14.Weight = 0.80208309978334547D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Weight = 0.55541683310387091D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Weight = 0.6249999679104723D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name   = "xrTableCell17";
     this.xrTableCell17.Weight = 0.68833370557294826D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name   = "xrTableCell18";
     this.xrTableCell18.Weight = 0.56333187959441877D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.Name   = "xrTableCell19";
     this.xrTableCell19.Weight = 0.68041744612879218D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name   = "xrTableCell20";
     this.xrTableCell20.Weight = 0.70624882020188462D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_ecole_bd_Connection 4";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "liste_inscription";
     tableInfo1.Name   = "liste_inscription";
     columnInfo1.Name  = "codeinscription";
     columnInfo2.Name  = "codeeleve";
     columnInfo3.Name  = "nom";
     columnInfo4.Name  = "postnom";
     columnInfo5.Name  = "prenom";
     columnInfo6.Name  = "Classe";
     columnInfo7.Name  = "codeoption";
     columnInfo8.Name  = "optioneleve";
     columnInfo9.Name  = "annee";
     columnInfo10.Name = "codesection";
     columnInfo11.Name = "section";
     columnInfo12.Name = "division";
     columnInfo13.Name = "Designation_classe";
     columnInfo14.Name = "Designation_annee";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.division")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(369.2917F, 10.00001F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(29.91672F, 23F);
     //
     // ListePresence
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageFooter,
         this.PageHeader,
         this.GroupHeader1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "liste_inscription";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(3, 4, 0, 100);
     this.Version    = "15.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()
 {
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport1));
     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.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
     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.WordsUnitPrice = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // 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 = 11.5D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ProductID")
     });
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "xrTableCell1";
     this.xrTableCell1.Weight = 0.4D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ProductName")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell2";
     this.xrTableCell2.Weight = 0.4D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.UnitPrice", "{0:$0.00}")
     });
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "xrTableCell3";
     this.xrTableCell3.Weight = 0.4D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.WordsUnitPrice")
     });
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "xrTableCell4";
     this.xrTableCell4.Weight = 0.4D;
     //
     // 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.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 = "nwind.mdb";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "Products";
     tableInfo1.Name  = "Products";
     columnInfo1.Name = "ProductID";
     columnInfo2.Name = "ProductName";
     columnInfo3.Name = "UnitPrice";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     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("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);
     //
     // WordsUnitPrice
     //
     this.WordsUnitPrice.DataMember = "Products";
     this.WordsUnitPrice.FieldType  = DevExpress.XtraReports.UI.FieldType.String;
     this.WordsUnitPrice.Name       = "WordsUnitPrice";
     this.WordsUnitPrice.GetValue  += new DevExpress.XtraReports.UI.GetValueEventHandler(this.WordsUnitPrice_GetValue);
     //
     // XtraReport1
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.WordsUnitPrice
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Products";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters mySqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1     = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
     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();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(top10Report));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series1    = new DevExpress.XtraCharts.Series();
     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.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrChart1          = new DevExpress.XtraReports.UI.XRChart();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.PageFooter        = new DevExpress.XtraReports.UI.PageFooterBand();
     this.formattingRule1   = new DevExpress.XtraReports.UI.FormattingRule();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).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       = 61.12501F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // 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.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "top10sales.Sucursal")
     });
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.Weight = 0.94423093355618992D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "top10sales.Nombre Producto")
     });
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Weight = 1.3153845919095555D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "top10sales.Cantidad")
     });
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Weight = 0.74038447453425482D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName       = "185.224.137.20_u983648979_dbsur_Connection";
     mySqlConnectionParameters1.DatabaseName  = "u983648979_dbsur";
     mySqlConnectionParameters1.Password      = "******";
     mySqlConnectionParameters1.ServerName    = "185.224.137.20";
     mySqlConnectionParameters1.UserName      = "******";
     this.sqlDataSource1.ConnectionParameters = mySqlConnectionParameters1;
     this.sqlDataSource1.Name      = "sqlDataSource1";
     tableQuery1.FilterString      = "[top10sales.Sucursal] = ?nameSucursal";
     tableQuery1.GroupFilterString = "";
     tableQuery1.Name          = "top10sales";
     queryParameter1.Name      = "nameSucursal";
     queryParameter1.Type      = typeof(string);
     queryParameter1.ValueInfo = "CENTRAL";
     tableQuery1.Parameters.Add(queryParameter1);
     tableInfo1.Name  = "top10sales";
     columnInfo1.Name = "Sucursal";
     columnInfo2.Name = "Nombre Producto";
     columnInfo3.Name = "Cantidad";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     tableQuery1.Top = 10;
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 31.87501F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // xrChart1
     //
     this.xrChart1.BorderColor = System.Drawing.Color.Black;
     this.xrChart1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.False;
     this.xrChart1.Diagram       = xyDiagram1;
     this.xrChart1.LocationFloat = new DevExpress.Utils.PointFloat(28.125F, 64.99999F);
     this.xrChart1.Name          = "xrChart1";
     series1.ArgumentDataMember  = "top10sales.Nombre Producto";
     series1.Name = "Serie1";
     series1.ValueDataMembersSerializable = "top10sales.Cantidad";
     this.xrChart1.SeriesSerializable     = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.xrChart1.SizeF = new System.Drawing.SizeF(600.4167F, 164.5833F);
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrChart1,
         this.xrTable1
     });
     this.ReportHeader.HeightF = 272.9167F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                       = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor                  = System.Drawing.Color.Teal;
     this.xrLabel1.LocationFloat              = new DevExpress.Utils.PointFloat(28.125F, 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(495.8333F, 54.99998F);
     this.xrLabel1.StylePriority.UseFont      = false;
     this.xrLabel1.StylePriority.UseForeColor = false;
     this.xrLabel1.Text                       = "10 PRODUCTOS MAS VENDIDOS";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 247.9167F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650.0001F, 25.00002F);
     //
     // 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.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseFont = false;
     this.xrTableCell1.Text   = "SUCURSAL";
     this.xrTableCell1.Weight = 0.94423086836774428D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseFont = false;
     this.xrTableCell2.Text   = "NOMBRE DEL PRODUCTO";
     this.xrTableCell2.Weight = 1.3153844214445216D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseFont = false;
     this.xrTableCell3.Text   = "CANTIDAD";
     this.xrTableCell3.Weight = 0.74038471018773389D;
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 50F;
     this.PageFooter.Name    = "PageFooter";
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // top10Report
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.topMarginBand1,
         this.bottomMarginBand1,
         this.ReportHeader,
         this.PageFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "top10sales";
     this.DataSource = this.sqlDataSource1;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(100, 100, 32, 100);
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).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();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(ListeRecouvrement));
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo13 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo14 = new DevExpress.DataAccess.Sql.ColumnInfo();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     ((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       = 1.041667F;
     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;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox2,
         this.xrPictureBox1,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 134.375F;
     this.PageHeader.Name    = "PageHeader";
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 44.79167F;
     this.PageFooter.Name    = "PageFooter";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader1.HeightF = 41.66667F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(9.999983F, 16.66667F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(821.8749F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell1,
         this.xrTableCell8
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "Nom";
     this.xrTableCell2.Weight = 1.1666667180056694D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Post-Nom";
     this.xrTableCell3.Weight = 1.1041666412353515D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Prenom";
     this.xrTableCell4.Weight = 1.125000000519679D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "Classe";
     this.xrTableCell5.Weight = 0.41666686959750865D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "Section";
     this.xrTableCell6.Weight = 0.8541665649414063D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "Option";
     this.xrTableCell7.Weight = 0.9479162597656251D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "Frais";
     this.xrTableCell8.Weight = 1.65625033843523D;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(821.8749F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell9,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.nom")
     });
     this.xrTableCell10.Name   = "xrTableCell10";
     this.xrTableCell10.Text   = "Nom";
     this.xrTableCell10.Weight = 1.1666667180056694D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.postnom")
     });
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "Post-Nom";
     this.xrTableCell11.Weight = 1.1041666412353515D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.prenom")
     });
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "Prenom";
     this.xrTableCell12.Weight = 1.125000000519679D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.codecl")
     });
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "Classe";
     this.xrTableCell13.Weight = 0.41666686959750865D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.CodeSection")
     });
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "Section";
     this.xrTableCell14.Weight = 0.8541665649414063D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.codeop")
     });
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "Option";
     this.xrTableCell15.Weight = 0.9479162597656251D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.frais")
     });
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Text   = "Frais";
     this.xrTableCell16.Weight = 1.65625033843523D;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 20.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(175.625F, 51.00001F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(468.75F, 38.62501F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "LISTE DES ELEVES SOLVABLES";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(703.7083F, 10.00001F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(132.2917F, 114.375F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Image         = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(9.999983F, 10.00001F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(132.2917F, 114.375F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_ecole_bd_Connection 11";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "viewTotalRecouvrement";
     tableInfo1.Name   = "viewTotalRecouvrement";
     columnInfo1.Name  = "Total";
     columnInfo2.Name  = "codeincription";
     columnInfo3.Name  = "matricule";
     columnInfo4.Name  = "nom";
     columnInfo5.Name  = "postnom";
     columnInfo6.Name  = "prenom";
     columnInfo7.Name  = "CodeFrais";
     columnInfo8.Name  = "frais";
     columnInfo9.Name  = "montantprev";
     columnInfo10.Name = "Reste";
     columnInfo11.Name = "codecl";
     columnInfo12.Name = "codeop";
     columnInfo13.Name = "CodeSection";
     columnInfo14.Name = "CodeAnnee";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "Montant";
     this.xrTableCell1.Weight = 0.9479162597656251D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "viewTotalRecouvrement.Total")
     });
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Weight = 0.9479162597656251D;
     //
     // ListeRecouvrement
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter,
         this.GroupHeader1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "viewTotalRecouvrement";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(1, 3, 1, 100);
     this.Version    = "15.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()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1  = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.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.ColumnInfo           columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo();
     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.ColumnInfo           columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo21 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources    = new System.ComponentModel.ComponentResourceManager(typeof(Liste_Inscription_general));
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.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.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18  = new DevExpress.XtraReports.UI.XRTableCell();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     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.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10.00002F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1066.695F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 11.5D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.codeeleve")
     });
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell2";
     this.xrTableCell2.Weight = 0.153346955874668D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.nom")
     });
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "xrTableCell3";
     this.xrTableCell3.Weight = 0.163801294503113D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.postnom")
     });
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "xrTableCell4";
     this.xrTableCell4.Weight = 0.16380127536074D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.prenom")
     });
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "xrTableCell5";
     this.xrTableCell5.Weight = 0.179482668449174D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.Designation_classe")
     });
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "xrTableCell6";
     this.xrTableCell6.Weight = 0.166414898302596D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.section")
     });
     this.xrTableCell7.Name   = "xrTableCell7";
     this.xrTableCell7.Text   = "xrTableCell7";
     this.xrTableCell7.Weight = 0.18340298583048839D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.optioneleve")
     });
     this.xrTableCell8.Name   = "xrTableCell8";
     this.xrTableCell8.Text   = "xrTableCell8";
     this.xrTableCell8.Weight = 0.18209624021195661D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.Designation_annee")
     });
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "xrTableCell9";
     this.xrTableCell9.Weight = 0.14583739241366406D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 3.125F;
     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;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox2,
         this.xrPictureBox1,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.HeightF = 119.7916F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.Font                  = new System.Drawing.Font("Times New Roman", 20.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(179.1667F, 82.29166F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(409.375F, 34.79166F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "LISTE DES ELEVES INSCRITS";
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1066.695F, 25F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 11.5D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name   = "xrTableCell11";
     this.xrTableCell11.Text   = "MATRICULE";
     this.xrTableCell11.Weight = 0.153346955874668D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name   = "xrTableCell12";
     this.xrTableCell12.Text   = "NOM";
     this.xrTableCell12.Weight = 0.163801294503113D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name   = "xrTableCell13";
     this.xrTableCell13.Text   = "POST-NOM";
     this.xrTableCell13.Weight = 0.16380127536074D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name   = "xrTableCell14";
     this.xrTableCell14.Text   = "PRENOM";
     this.xrTableCell14.Weight = 0.179482668449174D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Name   = "xrTableCell15";
     this.xrTableCell15.Text   = "CLASSE";
     this.xrTableCell15.Weight = 0.166414898302596D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name   = "xrTableCell16";
     this.xrTableCell16.Text   = "SECTION";
     this.xrTableCell16.Weight = 0.1834029762593031D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name   = "xrTableCell17";
     this.xrTableCell17.Text   = "OPTION";
     this.xrTableCell17.Weight = 0.1820961827848448D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Name   = "xrTableCell18";
     this.xrTableCell18.Text   = "ANNEE";
     this.xrTableCell18.Weight = 0.14583745941196116D;
     //
     // PageFooter
     //
     this.PageFooter.HeightF = 28.125F;
     this.PageFooter.Name    = "PageFooter";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "localhost_ecole_bd_Connection 22";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name  = "liste_inscription";
     tableInfo1.Name   = "liste_inscription";
     columnInfo1.Name  = "codeinscription";
     columnInfo2.Name  = "codeeleve";
     columnInfo3.Name  = "nom";
     columnInfo4.Name  = "postnom";
     columnInfo5.Name  = "prenom";
     columnInfo6.Name  = "Classe";
     columnInfo7.Name  = "codeoption";
     columnInfo8.Name  = "optioneleve";
     columnInfo9.Name  = "annee";
     columnInfo10.Name = "codesection";
     columnInfo11.Name = "section";
     columnInfo12.Name = "division";
     columnInfo13.Name = "Designation_classe";
     columnInfo14.Name = "Designation_annee";
     columnInfo15.Name = "num_tutaire";
     columnInfo16.Name = "RefEcole";
     columnInfo17.Name = "nomEcol";
     columnInfo18.Name = "adresseEcol";
     columnInfo19.Name = "telephoneEcol";
     columnInfo20.Name = "mailEcol";
     columnInfo21.Name = "Logo";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9,
         columnInfo10,
         columnInfo11,
         columnInfo12,
         columnInfo13,
         columnInfo14,
         columnInfo15,
         columnInfo16,
         columnInfo17,
         columnInfo18,
         columnInfo19,
         columnInfo20,
         columnInfo21
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.nomEcol")
     });
     this.xrLabel2.Font                  = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(179.1667F, 0F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(464.5834F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "xrLabel2";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.telephoneEcol")
     });
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(179.1667F, 23F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(97.9167F, 23F);
     this.xrLabel3.Text          = "xrLabel2";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.mailEcol")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(277.0834F, 23F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(366.6667F, 23F);
     this.xrLabel4.Text          = "xrLabel2";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "liste_inscription.adresseEcol")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(179.1667F, 46F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(464.5834F, 23F);
     this.xrLabel5.Text          = "xrLabel2";
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "liste_inscription.Logo")
     });
     this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrPictureBox1.Name                     = "xrPictureBox1";
     this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(166.25F, 119.7916F);
     this.xrPictureBox1.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox1.StylePriority.UseBorders = false;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrPictureBox2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Image", null, "liste_inscription.Logo")
     });
     this.xrPictureBox2.LocationFloat            = new DevExpress.Utils.PointFloat(910.4445F, 0F);
     this.xrPictureBox2.Name                     = "xrPictureBox2";
     this.xrPictureBox2.SizeF                    = new System.Drawing.SizeF(166.25F, 119.7916F);
     this.xrPictureBox2.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     this.xrPictureBox2.StylePriority.UseBorders = false;
     //
     // Liste_Inscription_general
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.PageFooter,
         this.GroupHeader1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "liste_inscription";
     this.DataSource = this.sqlDataSource1;
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(0, 3, 3, 100);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Version    = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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.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.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.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.TableInfo             tableInfo2             = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo            columnInfo10           = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.TableInfo             tableInfo3             = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo            columnInfo11           = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager  resources              = new System.ComponentModel.ComponentResourceManager(typeof(rptCoursesSubjects));
     DevExpress.XtraReports.UI.XRGroupSortingSummary xrGroupSortingSummary1 = new DevExpress.XtraReports.UI.XRGroupSortingSummary();
     DevExpress.XtraReports.UI.XRGroupSortingSummary xrGroupSortingSummary2 = new DevExpress.XtraReports.UI.XRGroupSortingSummary();
     DevExpress.XtraReports.UI.XRGroupSortingSummary xrGroupSortingSummary3 = new DevExpress.XtraReports.UI.XRGroupSortingSummary();
     DevExpress.XtraReports.UI.XRSummary             xrSummary1             = new DevExpress.XtraReports.UI.XRSummary();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrPicheader       = new DevExpress.XtraReports.UI.XRPictureBox();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.groupHeaderBand1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.groupHeaderBand2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.groupHeaderBand3  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable4          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10     = 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.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.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable3          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell12     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "rpt_dbconnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "studentlessons";
     relationColumnInfo1.NestedKeyColumn = "id";
     relationColumnInfo1.ParentKeyColumn = "classID";
     relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo1
     });
     relationInfo1.NestedTable           = "studentcourses";
     relationInfo1.ParentTable           = "studentlessons";
     relationColumnInfo2.NestedKeyColumn = "id";
     relationColumnInfo2.ParentKeyColumn = "moduleID";
     relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
         relationColumnInfo2
     });
     relationInfo2.NestedTable = "studentprograms";
     relationInfo2.ParentTable = "studentlessons";
     tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
         relationInfo1,
         relationInfo2
     });
     tableInfo1.Name  = "studentlessons";
     columnInfo1.Name = "id";
     columnInfo2.Name = "title";
     columnInfo3.Name = "description";
     columnInfo4.Name = "active";
     columnInfo5.Name = "code";
     columnInfo6.Name = "credit";
     columnInfo7.Name = "type";
     columnInfo8.Name = "classID";
     columnInfo9.Name = "moduleID";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7,
         columnInfo8,
         columnInfo9
     });
     tableInfo2.Name    = "studentcourses";
     columnInfo10.Alias = "studentcourses_title";
     columnInfo10.Name  = "title";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo10
     });
     tableInfo3.Name   = "studentprograms";
     columnInfo11.Name = "moduleName";
     tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo11
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1,
         tableInfo2,
         tableInfo3
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Detail
     //
     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;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 50F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPicheader
     //
     this.xrPicheader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrPicheader.Name          = "xrPicheader";
     this.xrPicheader.SizeF         = new System.Drawing.SizeF(677.0001F, 100F);
     this.xrPicheader.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 50F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.groupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("moduleName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand1.HeightF        = 25.58333F;
     this.groupHeaderBand1.Level          = 2;
     this.groupHeaderBand1.Name           = "groupHeaderBand1";
     xrGroupSortingSummary1.Enabled       = true;
     xrGroupSortingSummary1.FieldName     = "id";
     this.groupHeaderBand1.SortingSummary = xrGroupSortingSummary1;
     //
     // xrTable1
     //
     this.xrTable1.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrTable1.Borders        = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.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(677.0001F, 25.58333F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.CanGrow = false;
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "studentlessons.moduleName")
     });
     this.xrTableCell3.Font      = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(10, 5, 5, 5, 100F);
     this.xrTableCell3.StyleName = "DataField";
     this.xrTableCell3.StylePriority.UseBorders = false;
     this.xrTableCell3.StylePriority.UseFont    = false;
     this.xrTableCell3.StylePriority.UsePadding = false;
     this.xrTableCell3.Weight = 292.614563828776D;
     //
     // groupHeaderBand2
     //
     this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.groupHeaderBand2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("studentcourses_title", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand2.HeightF        = 29.75F;
     this.groupHeaderBand2.Level          = 1;
     this.groupHeaderBand2.Name           = "groupHeaderBand2";
     xrGroupSortingSummary2.Enabled       = true;
     xrGroupSortingSummary2.FieldName     = "id";
     this.groupHeaderBand2.SortingSummary = xrGroupSortingSummary2;
     //
     // xrTable2
     //
     this.xrTable2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     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", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(677.0001F, 29.75F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4
     });
     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.CanGrow = false;
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "studentlessons.studentcourses_title")
     });
     this.xrTableCell4.Font      = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(35, 5, 5, 5, 100F);
     this.xrTableCell4.StyleName = "DataField";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.StylePriority.UseFont    = false;
     this.xrTableCell4.StylePriority.UsePadding = false;
     this.xrTableCell4.Weight = 292.614563828776D;
     //
     // groupHeaderBand3
     //
     this.groupHeaderBand3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4
     });
     this.groupHeaderBand3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("title", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("code", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("credit", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
         new DevExpress.XtraReports.UI.GroupField("type", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand3.HeightF        = 26.625F;
     this.groupHeaderBand3.Name           = "groupHeaderBand3";
     xrGroupSortingSummary3.Enabled       = true;
     xrGroupSortingSummary3.FieldName     = "id";
     this.groupHeaderBand3.SortingSummary = xrGroupSortingSummary3;
     //
     // xrTable4
     //
     this.xrTable4.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrTable4.Borders        = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font          = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(677.0001F, 26.62499F);
     this.xrTable4.StylePriority.UseFont = false;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell11,
         this.xrTableCell8,
         this.xrTableCell10,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.CanGrow = false;
     this.xrTableCell11.Name    = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseBorders = false;
     xrSummary1.Func            = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running         = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell11.Summary = xrSummary1;
     this.xrTableCell11.Weight  = 33.481828151247D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.CanGrow = false;
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "studentlessons.title")
     });
     this.xrTableCell8.Font      = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell8.StyleName = "DataField";
     this.xrTableCell8.StylePriority.UseBorders = false;
     this.xrTableCell8.StylePriority.UseFont    = false;
     this.xrTableCell8.StylePriority.UsePadding = false;
     this.xrTableCell8.Weight = 292.163775709052D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.CanGrow = false;
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "studentlessons.code")
     });
     this.xrTableCell10.Font      = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell10.Multiline = true;
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell10.StyleName = "DataField";
     this.xrTableCell10.StylePriority.UseBorders       = false;
     this.xrTableCell10.StylePriority.UseFont          = false;
     this.xrTableCell10.StylePriority.UsePadding       = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell10.Weight        = 104.54838132605836D;
     //
     // 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.CanGrow = false;
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "studentlessons.credit")
     });
     this.xrTableCell5.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell5.Name    = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell5.StylePriority.UseBorders       = false;
     this.xrTableCell5.StylePriority.UseFont          = false;
     this.xrTableCell5.StylePriority.UsePadding       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell5.Weight        = 123.01540143640527D;
     //
     // 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.CanGrow = false;
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "studentlessons.type")
     });
     this.xrTableCell6.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell6.Name    = "xrTableCell6";
     this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell6.StylePriority.UseBorders = false;
     this.xrTableCell6.StylePriority.UseFont    = false;
     this.xrTableCell6.StylePriority.UsePadding = false;
     this.xrTableCell6.Weight = 120.88270409578003D;
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29.00001F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // 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(357.9998F, 6.00001F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPicheader
     });
     this.reportHeaderBand1.HeightF = 122.9167F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // 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);
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrTable3
     });
     this.PageHeader.HeightF = 88.49999F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor     = System.Drawing.Color.White;
     this.xrLabel1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel1.BorderWidth   = 2F;
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     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(677F, 35F);
     this.xrLabel1.StyleName     = "Title";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseBorders       = false;
     this.xrLabel1.StylePriority.UseBorderWidth   = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "LIST OF COURSES/SUBJETS";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTable3
     //
     this.xrTable3.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrTable3.BackColor      = System.Drawing.Color.SlateGray;
     this.xrTable3.Borders        = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.BorderWidth   = 1F;
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 62.49999F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(677.0001F, 26F);
     this.xrTable3.StylePriority.UseFont = false;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell12,
         this.xrTableCell7,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // 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.CanGrow = false;
     this.xrTableCell12.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell12.Name    = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseBorders       = false;
     this.xrTableCell12.StylePriority.UseFont          = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text          = "#";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell12.Weight        = 27.423694677196824D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.CanGrow   = false;
     this.xrTableCell7.Font      = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.StyleName = "FieldCaption";
     this.xrTableCell7.StylePriority.UseBorders = false;
     this.xrTableCell7.StylePriority.UseFont    = false;
     this.xrTableCell7.Text          = "COURSE/SUBJECT";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 239.30025293245527D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.CanGrow   = false;
     this.xrTableCell9.Font      = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.StyleName = "FieldCaption";
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "CODE";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight        = 85.631640586881943D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.BackColor = System.Drawing.Color.White;
     this.xrTableCell1.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.CanGrow = false;
     this.xrTableCell1.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell1.Name    = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBackColor     = false;
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "CREDIT HRS";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 100.7572471277287D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.BackColor = System.Drawing.Color.White;
     this.xrTableCell2.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.CanGrow = false;
     this.xrTableCell2.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell2.Name    = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBackColor     = false;
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "TYPE";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 99.010480403329979D;
     //
     // rptCoursesSubjects
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.groupHeaderBand1,
         this.groupHeaderBand2,
         this.groupHeaderBand3,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.PageHeader
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember        = "studentlessons";
     this.DataSource        = this.sqlDataSource1;
     this.DisplayName       = "List of Courses or Subjects";
     this.Margins           = new System.Drawing.Printing.Margins(75, 75, 50, 50);
     this.PageHeight        = 1169;
     this.PageWidth         = 827;
     this.PaperKind         = System.Drawing.Printing.PaperKind.A4;
     this.RequestParameters = false;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #36
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.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.ColumnInfo           columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(rptFeesCategory));
     DevExpress.XtraReports.UI.XRSummary            xrSummary1  = new DevExpress.XtraReports.UI.XRSummary();
     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.pageHeaderBand1   = new DevExpress.XtraReports.UI.PageHeaderBand();
     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.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.xrPicheader       = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel13         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable3          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow5       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell17     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11     = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).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       = 26.625F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPicheader
     });
     this.TopMargin.HeightF       = 140F;
     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 = "rpt_dbconnection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "feescategory";
     tableInfo1.Name  = "feescategory";
     columnInfo1.Name = "id";
     columnInfo2.Name = "title";
     columnInfo3.Name = "description";
     columnInfo4.Name = "createdate";
     columnInfo5.Name = "modifydate";
     columnInfo6.Name = "applyto";
     columnInfo7.Name = "active";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6,
         columnInfo7
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // pageHeaderBand1
     //
     this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.pageHeaderBand1.HeightF = 26F;
     this.pageHeaderBand1.Name    = "pageHeaderBand1";
     //
     // 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;
     //
     // 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.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "xrTableCell4";
     this.xrTableCell4.Weight = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "xrTableCell5";
     this.xrTableCell5.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "xrTableCell6";
     this.xrTableCell6.Weight = 1D;
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // 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(354F, 6F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel13
     });
     this.reportHeaderBand1.HeightF = 53F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // 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);
     //
     // xrPicheader
     //
     this.xrPicheader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 40F);
     this.xrPicheader.Name          = "xrPicheader";
     this.xrPicheader.SizeF         = new System.Drawing.SizeF(677.0001F, 100F);
     this.xrPicheader.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrLabel13
     //
     this.xrLabel13.BackColor     = System.Drawing.Color.White;
     this.xrLabel13.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrLabel13.BorderWidth   = 2F;
     this.xrLabel13.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(1.000183F, 12.5F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(675.9999F, 35F);
     this.xrLabel13.StyleName     = "Title";
     this.xrLabel13.StylePriority.UseBackColor     = false;
     this.xrLabel13.StylePriority.UseBorders       = false;
     this.xrLabel13.StylePriority.UseBorderWidth   = false;
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text          = "FEES CATEGORIES";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTable3
     //
     this.xrTable3.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrTable3.BackColor      = System.Drawing.Color.SlateGray;
     this.xrTable3.Borders        = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.BorderWidth   = 1F;
     this.xrTable3.Font          = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(1.000182F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(675.9999F, 26F);
     this.xrTable3.StylePriority.UseFont = false;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell19,
         this.xrTableCell14,
         this.xrTableCell9
     });
     this.xrTableRow5.Name   = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell17.CanGrow = false;
     this.xrTableCell17.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell17.Name    = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseBorders       = false;
     this.xrTableCell17.StylePriority.UseFont          = false;
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text          = "#";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell17.Weight        = 24.57122851256489D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell18.CanGrow   = false;
     this.xrTableCell18.Font      = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell18.Name      = "xrTableCell18";
     this.xrTableCell18.StyleName = "FieldCaption";
     this.xrTableCell18.StylePriority.UseBorders = false;
     this.xrTableCell18.StylePriority.UseFont    = false;
     this.xrTableCell18.Text          = "TITLE";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell18.Weight        = 204.43194092164347D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell19.CanGrow   = false;
     this.xrTableCell19.Font      = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell19.Name      = "xrTableCell19";
     this.xrTableCell19.StyleName = "FieldCaption";
     this.xrTableCell19.StylePriority.UseBorders = false;
     this.xrTableCell19.StylePriority.UseFont    = false;
     this.xrTableCell19.Text          = "DESCRIPTION";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell19.Weight        = 263.56843551881889D;
     //
     // xrTable2
     //
     this.xrTable2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     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", 10F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(1.000182F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(675.9998F, 26.625F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell10,
         this.xrTableCell12,
         this.xrTableCell7,
         this.xrTableCell11
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.CanGrow = false;
     this.xrTableCell8.Name    = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseBorders = false;
     xrSummary1.Func           = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running        = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell8.Summary = xrSummary1;
     this.xrTableCell8.Weight  = 25.329657949097804D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.CanGrow = false;
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "feescategory.title")
     });
     this.xrTableCell10.Font      = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell10.Multiline = true;
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell10.StyleName = "DataField";
     this.xrTableCell10.StylePriority.UseBorders = false;
     this.xrTableCell10.StylePriority.UseFont    = false;
     this.xrTableCell10.StylePriority.UsePadding = false;
     this.xrTableCell10.Weight = 210.74201737373841D;
     //
     // 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.CanGrow = false;
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "feescategory.description")
     });
     this.xrTableCell12.Font      = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell12.Multiline = true;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.Padding   = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell12.StyleName = "DataField";
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UseFont    = false;
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.Weight = 271.70375487194315D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.BackColor = System.Drawing.Color.White;
     this.xrTableCell14.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell14.CanGrow = false;
     this.xrTableCell14.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell14.Name    = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseBackColor     = false;
     this.xrTableCell14.StylePriority.UseBorders       = false;
     this.xrTableCell14.StylePriority.UseFont          = false;
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text          = "APPLY TO";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell14.Weight        = 82.436797325813473D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.CanGrow = false;
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "feescategory.applyto")
     });
     this.xrTableCell7.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell7.Name    = "xrTableCell7";
     this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell7.StylePriority.UseBorders = false;
     this.xrTableCell7.StylePriority.UseFont    = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Weight = 84.981392770941682D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.BackColor = System.Drawing.Color.White;
     this.xrTableCell9.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.CanGrow = false;
     this.xrTableCell9.Font    = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell9.Name    = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBackColor     = false;
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "DATE ";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight        = 77.410578213401948D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.CanGrow = false;
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "feescategory.createdate")
     });
     this.xrTableCell11.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrTableCell11.Name    = "xrTableCell11";
     this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTableCell11.StylePriority.UseBorders = false;
     this.xrTableCell11.StylePriority.UseFont    = false;
     this.xrTableCell11.StylePriority.UsePadding = false;
     this.xrTableCell11.Weight = 79.7999110052201D;
     //
     // rptFeesCategory
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageHeaderBand1,
         this.pageFooterBand1,
         this.reportHeaderBand1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "feescategory";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(75, 75, 140, 100);
     this.PageHeight = 1169;
     this.PageWidth  = 827;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1  = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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.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.TableQuery           tableQuery2 = new DevExpress.DataAccess.Sql.TableQuery();
     DevExpress.DataAccess.Sql.TableInfo            tableInfo2  = new DevExpress.DataAccess.Sql.TableInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(XtraReport2));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     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.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.categoryName   = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel4
     });
     this.Detail.HeightF       = 25.00001F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor       = System.Drawing.Color.Transparent;
     this.xrLabel3.BorderColor     = System.Drawing.Color.Black;
     this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrLabel3.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel3.BorderWidth     = 1F;
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryProducts.ProductID")
     });
     this.xrLabel3.Font          = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLabel3.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(100.625F, 0F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(50.83332F, 25.00001F);
     this.xrLabel3.StylePriority.UseBackColor       = false;
     this.xrLabel3.StylePriority.UseBorderColor     = false;
     this.xrLabel3.StylePriority.UseBorderDashStyle = false;
     this.xrLabel3.StylePriority.UseBorders         = false;
     this.xrLabel3.StylePriority.UseBorderWidth     = false;
     this.xrLabel3.StylePriority.UseFont            = false;
     this.xrLabel3.StylePriority.UseForeColor       = false;
     this.xrLabel3.StylePriority.UsePadding         = false;
     this.xrLabel3.StylePriority.UseTextAlignment   = false;
     xrSummary1.FormatString     = "{0:#)}";
     xrSummary1.Func             = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running          = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary       = xrSummary1;
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.BackColor       = System.Drawing.Color.Transparent;
     this.xrLabel4.BorderColor     = System.Drawing.Color.Black;
     this.xrLabel4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrLabel4.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel4.BorderWidth     = 1F;
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryProducts.ProductName")
     });
     this.xrLabel4.Font          = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLabel4.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(151.4583F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(498.5417F, 25F);
     this.xrLabel4.StylePriority.UseBackColor       = false;
     this.xrLabel4.StylePriority.UseBorderColor     = false;
     this.xrLabel4.StylePriority.UseBorderDashStyle = false;
     this.xrLabel4.StylePriority.UseBorders         = false;
     this.xrLabel4.StylePriority.UseBorderWidth     = false;
     this.xrLabel4.StylePriority.UseFont            = false;
     this.xrLabel4.StylePriority.UseForeColor       = false;
     this.xrLabel4.StylePriority.UsePadding         = false;
     this.xrLabel4.StylePriority.UseTextAlignment   = false;
     this.xrLabel4.Text          = "xrTableCell4";
     this.xrLabel4.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.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 = "dxSample.Properties.Settings.nwindConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     tableQuery1.Name = "CategoryProducts";
     tableInfo1.Name  = "CategoryProducts";
     columnInfo1.Name = "ProductID";
     columnInfo2.Name = "SupplierID";
     columnInfo3.Name = "ProductName";
     columnInfo4.Name = "CategoryName";
     columnInfo5.Name = "Picture";
     columnInfo6.Name = "Description";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5,
         columnInfo6
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     tableQuery2.Name = "Categories";
     tableInfo2.Name  = "Categories";
     columnInfo7.Name = "CategoryName";
     tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo7
     });
     tableQuery2.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo2
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1,
         tableQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("CategoryName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF = 90.625F;
     this.GroupHeader1.Name    = "GroupHeader1";
     this.GroupHeader1.StylePriority.UseBackColor = false;
     this.GroupHeader1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupHeader1_BeforePrint);
     //
     // xrLabel1
     //
     this.xrLabel1.BorderColor     = System.Drawing.Color.Black;
     this.xrLabel1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrLabel1.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel1.BorderWidth     = 1F;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryProducts.CategoryName")
     });
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 20F);
     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(650F, 61.45833F);
     this.xrLabel1.StylePriority.UseBackColor       = false;
     this.xrLabel1.StylePriority.UseBorderColor     = false;
     this.xrLabel1.StylePriority.UseBorderDashStyle = false;
     this.xrLabel1.StylePriority.UseBorders         = false;
     this.xrLabel1.StylePriority.UseBorderWidth     = false;
     this.xrLabel1.StylePriority.UseFont            = false;
     this.xrLabel1.StylePriority.UseForeColor       = false;
     this.xrLabel1.StylePriority.UsePadding         = false;
     this.xrLabel1.StylePriority.UseTextAlignment   = false;
     this.xrLabel1.Text          = "xrTableCell1";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.BorderColor     = System.Drawing.Color.Black;
     this.xrLabel2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrLabel2.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrLabel2.BorderWidth     = 1F;
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryProducts.Description")
     });
     this.xrLabel2.Font          = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 61.45833F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(650F, 29.16666F);
     this.xrLabel2.StylePriority.UseBackColor       = false;
     this.xrLabel2.StylePriority.UseBorderColor     = false;
     this.xrLabel2.StylePriority.UseBorderDashStyle = false;
     this.xrLabel2.StylePriority.UseBorders         = false;
     this.xrLabel2.StylePriority.UseBorderWidth     = false;
     this.xrLabel2.StylePriority.UseFont            = false;
     this.xrLabel2.StylePriority.UseForeColor       = false;
     this.xrLabel2.StylePriority.UsePadding         = false;
     this.xrLabel2.StylePriority.UseTextAlignment   = false;
     this.xrLabel2.Text          = "xrTableCell2";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // categoryName
     //
     this.categoryName.Description            = "Select Category";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "Categories";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "CategoryName";
     dynamicListLookUpSettings1.FilterString  = null;
     dynamicListLookUpSettings1.ValueMember   = "CategoryName";
     this.categoryName.LookUpSettings         = dynamicListLookUpSettings1;
     this.categoryName.Name      = "categoryName";
     this.categoryName.ValueInfo = "Beverages";
     //
     // XtraReport2
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "CategoryProducts";
     this.DataSource = this.sqlDataSource1;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.categoryName
     });
     this.RequestParameters = false;
     this.Version           = "15.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     DevExpress.DataAccess.Sql.TableQuery           tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
     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.ColumnInfo           columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
     DevExpress.DataAccess.Sql.ColumnInfo           columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
     System.ComponentModel.ComponentResourceManager resources   = new System.ComponentModel.ComponentResourceManager(typeof(BaseReportTemplate));
     DevExpress.XtraReports.UI.XRSummary            xrSummary2  = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3  = new DevExpress.XtraReports.UI.XRSummary();
     this.label9            = new DevExpress.XtraReports.UI.XRLabel();
     this.label1            = new DevExpress.XtraReports.UI.XRLabel();
     this.label15           = new DevExpress.XtraReports.UI.XRLabel();
     this.label4            = new DevExpress.XtraReports.UI.XRLabel();
     this.line2             = new DevExpress.XtraReports.UI.XRLine();
     this.label2            = new DevExpress.XtraReports.UI.XRLabel();
     this.groupFooterBand3  = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.groupHeaderBand2  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.groupHeaderBand1  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.label14           = new DevExpress.XtraReports.UI.XRLabel();
     this.label10           = new DevExpress.XtraReports.UI.XRLabel();
     this.label3            = new DevExpress.XtraReports.UI.XRLabel();
     this.detailBand1       = new DevExpress.XtraReports.UI.DetailBand();
     this.groupFooterBand2  = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.label17           = new DevExpress.XtraReports.UI.XRLabel();
     this.label7            = new DevExpress.XtraReports.UI.XRLabel();
     this.label13           = new DevExpress.XtraReports.UI.XRLabel();
     this.reportFooterBand1 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.sqlDataSource1    = new DevExpress.DataAccess.Sql.SqlDataSource();
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.pageInfo1         = new DevExpress.XtraReports.UI.XRPageInfo();
     this.line1             = new DevExpress.XtraReports.UI.XRLine();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.pageInfo2         = new DevExpress.XtraReports.UI.XRPageInfo();
     this.groupHeaderBand3  = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.label11           = new DevExpress.XtraReports.UI.XRLabel();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.label8            = new DevExpress.XtraReports.UI.XRLabel();
     this.label12           = new DevExpress.XtraReports.UI.XRLabel();
     this.label5            = new DevExpress.XtraReports.UI.XRLabel();
     this.label16           = new DevExpress.XtraReports.UI.XRLabel();
     this.label6            = new DevExpress.XtraReports.UI.XRLabel();
     this.groupFooterBand1  = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.GroupHeader       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.ReportHeading     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Header            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TableHeader       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.OddStyle          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.EvenStyle         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Lines             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FooterLine        = new DevExpress.XtraReports.UI.XRControlStyle();
     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();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // label9
     //
     this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.Control")
     });
     this.label9.LocationFloat = new DevExpress.Utils.PointFloat(198.4584F, 1F);
     this.label9.Name          = "label9";
     this.label9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label9.SizeF         = new System.Drawing.SizeF(216.75F, 18F);
     this.label9.Text          = "label9";
     //
     // label1
     //
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 0F);
     this.label1.Name          = "label1";
     this.label1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label1.SizeF         = new System.Drawing.SizeF(75F, 36F);
     this.label1.StyleName     = "FieldCaption";
     this.label1.Text          = "Code Main";
     //
     // label15
     //
     this.label15.LocationFloat = new DevExpress.Utils.PointFloat(355.2083F, 1.999982F);
     this.label15.Name          = "label15";
     this.label15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label15.SizeF         = new System.Drawing.SizeF(60F, 18F);
     this.label15.StyleName     = "FieldCaption";
     this.label15.Text          = "Sum";
     //
     // label4
     //
     this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.CodeSub")
     });
     this.label4.LocationFloat = new DevExpress.Utils.PointFloat(105F, 0F);
     this.label4.Name          = "label4";
     this.label4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label4.SizeF         = new System.Drawing.SizeF(69F, 36F);
     this.label4.StyleName     = "DataField";
     this.label4.Text          = "label4";
     //
     // line2
     //
     this.line2.LocationFloat = new DevExpress.Utils.PointFloat(66F, 25F);
     this.line2.Name          = "line2";
     this.line2.SizeF         = new System.Drawing.SizeF(578F, 2F);
     //
     // label2
     //
     this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.CodeMain")
     });
     this.label2.LocationFloat = new DevExpress.Utils.PointFloat(81F, 0F);
     this.label2.Name          = "label2";
     this.label2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label2.SizeF         = new System.Drawing.SizeF(75F, 36F);
     this.label2.StyleName     = "DataField";
     this.label2.Text          = "label2";
     //
     // groupFooterBand3
     //
     this.groupFooterBand3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label14,
         this.label15
     });
     this.groupFooterBand3.HeightF = 30F;
     this.groupFooterBand3.Level   = 2;
     this.groupFooterBand3.Name    = "groupFooterBand3";
     //
     // groupHeaderBand2
     //
     this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label4,
         this.label3
     });
     this.groupHeaderBand2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("CodeSub", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand2.HeightF = 36F;
     this.groupHeaderBand2.Level   = 1;
     this.groupHeaderBand2.Name    = "groupHeaderBand2";
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label2,
         this.label1
     });
     this.groupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("CodeMain", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand1.HeightF = 36F;
     this.groupHeaderBand1.Level   = 2;
     this.groupHeaderBand1.Name    = "groupHeaderBand1";
     //
     // label14
     //
     this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.Amount", "{0:C2}")
     });
     this.label14.LocationFloat = new DevExpress.Utils.PointFloat(415.2083F, 1.999982F);
     this.label14.Name          = "label14";
     this.label14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label14.SizeF         = new System.Drawing.SizeF(228.7917F, 18F);
     this.label14.StyleName     = "FieldCaption";
     this.label14.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString    = "{0:C2}";
     xrSummary1.Running         = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.label14.Summary       = xrSummary1;
     this.label14.Text          = "label14";
     this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label10
     //
     this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.Title")
     });
     this.label10.LocationFloat = new DevExpress.Utils.PointFloat(66.00001F, 1.000023F);
     this.label10.Name          = "label10";
     this.label10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label10.SizeF         = new System.Drawing.SizeF(132.4583F, 18F);
     this.label10.Text          = "label10";
     //
     // label3
     //
     this.label3.LocationFloat = new DevExpress.Utils.PointFloat(36F, 0F);
     this.label3.Name          = "label3";
     this.label3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label3.SizeF         = new System.Drawing.SizeF(69F, 36F);
     this.label3.StyleName     = "FieldCaption";
     this.label3.Text          = "Code Sub";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label8,
         this.label9,
         this.label10
     });
     this.detailBand1.HeightF   = 29F;
     this.detailBand1.Name      = "detailBand1";
     this.detailBand1.StyleName = "DataField";
     //
     // groupFooterBand2
     //
     this.groupFooterBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label12,
         this.label13
     });
     this.groupFooterBand2.HeightF = 30F;
     this.groupFooterBand2.Level   = 1;
     this.groupFooterBand2.Name    = "groupFooterBand2";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // label17
     //
     this.label17.LocationFloat = new DevExpress.Utils.PointFloat(355.2083F, 1.999982F);
     this.label17.Name          = "label17";
     this.label17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label17.SizeF         = new System.Drawing.SizeF(60F, 18F);
     this.label17.StyleName     = "FieldCaption";
     this.label17.Text          = "Grand Total";
     //
     // label7
     //
     this.label7.LocationFloat = new DevExpress.Utils.PointFloat(66F, 6.999987F);
     this.label7.Name          = "label7";
     this.label7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label7.SizeF         = new System.Drawing.SizeF(132.4583F, 18F);
     this.label7.Text          = "Title";
     //
     // label13
     //
     this.label13.LocationFloat = new DevExpress.Utils.PointFloat(355.2083F, 6.00001F);
     this.label13.Name          = "label13";
     this.label13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label13.SizeF         = new System.Drawing.SizeF(60.00003F, 18F);
     this.label13.StyleName     = "FieldCaption";
     this.label13.Text          = "Sum";
     //
     // reportFooterBand1
     //
     this.reportFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label16,
         this.label17
     });
     this.reportFooterBand1.HeightF = 30F;
     this.reportFooterBand1.Name    = "reportFooterBand1";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "localhost_cds_pegasusConnection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "cds_pegasus";
     msSqlConnectionParameters1.ServerName        = "localhost";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name = "sqlDataSource1";
     tableQuery1.FilterString = "[VW_Account.Amount] <> 0.0m";
     tableQuery1.Name         = "VW_Account";
     tableInfo1.Name          = "VW_Account";
     columnInfo1.Name         = "Control";
     columnInfo2.Name         = "Title";
     columnInfo3.Name         = "CodeMain";
     columnInfo4.Name         = "CodeSub";
     columnInfo5.Name         = "Amount";
     tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
         columnInfo1,
         columnInfo2,
         columnInfo3,
         columnInfo4,
         columnInfo5
     });
     tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
         tableInfo1
     });
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         tableQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 100F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // line1
     //
     this.line1.LocationFloat = new DevExpress.Utils.PointFloat(66F, 5F);
     this.line1.Name          = "line1";
     this.line1.SizeF         = new System.Drawing.SizeF(578F, 2F);
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // pageInfo2
     //
     this.pageInfo2.Format        = "Page {0} of {1}";
     this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name          = "pageInfo2";
     this.pageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.pageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName     = "PageInfo";
     this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // groupHeaderBand3
     //
     this.groupHeaderBand3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label5,
         this.label6,
         this.label7,
         this.line1,
         this.line2
     });
     this.groupHeaderBand3.HeightF   = 27.00002F;
     this.groupHeaderBand3.Name      = "groupHeaderBand3";
     this.groupHeaderBand3.StyleName = "FieldCaption";
     //
     // label11
     //
     this.label11.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label11.Name          = "label11";
     this.label11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label11.SizeF         = new System.Drawing.SizeF(638F, 33F);
     this.label11.StyleName     = "Title";
     this.label11.Text          = "Account Report";
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label11
     });
     this.reportHeaderBand1.HeightF = 51F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // label8
     //
     this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.Amount", "{0:C2}")
     });
     this.label8.LocationFloat = new DevExpress.Utils.PointFloat(415.2084F, 0F);
     this.label8.Name          = "label8";
     this.label8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label8.SizeF         = new System.Drawing.SizeF(228.7917F, 18F);
     this.label8.StylePriority.UseTextAlignment = false;
     this.label8.Text          = "label8";
     this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label12
     //
     this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.Amount", "{0:C2}")
     });
     this.label12.LocationFloat = new DevExpress.Utils.PointFloat(415.2084F, 6.00001F);
     this.label12.Name          = "label12";
     this.label12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label12.SizeF         = new System.Drawing.SizeF(228.7917F, 18F);
     this.label12.StyleName     = "FieldCaption";
     this.label12.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString    = "{0:C2}";
     xrSummary2.Running         = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.label12.Summary       = xrSummary2;
     this.label12.Text          = "label12";
     this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label5
     //
     this.label5.LocationFloat = new DevExpress.Utils.PointFloat(415.2084F, 7.000015F);
     this.label5.Name          = "label5";
     this.label5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label5.SizeF         = new System.Drawing.SizeF(228.7917F, 18F);
     this.label5.StylePriority.UseTextAlignment = false;
     this.label5.Text          = "Amount";
     this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label16
     //
     this.label16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "VW_Account.Amount", "{0:C2}")
     });
     this.label16.LocationFloat = new DevExpress.Utils.PointFloat(415.2083F, 1.999982F);
     this.label16.Name          = "label16";
     this.label16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label16.SizeF         = new System.Drawing.SizeF(228.7917F, 18F);
     this.label16.StyleName     = "FieldCaption";
     this.label16.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString    = "{0:C2}";
     xrSummary3.Running         = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.label16.Summary       = xrSummary3;
     this.label16.Text          = "label16";
     this.label16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // label6
     //
     this.label6.LocationFloat = new DevExpress.Utils.PointFloat(198.4584F, 6.999969F);
     this.label6.Name          = "label6";
     this.label6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.label6.SizeF         = new System.Drawing.SizeF(216.75F, 18F);
     this.label6.Text          = "Control";
     //
     // groupFooterBand1
     //
     this.groupFooterBand1.HeightF = 1F;
     this.groupFooterBand1.Name    = "groupFooterBand1";
     //
     // GroupHeader
     //
     this.GroupHeader.Font      = new System.Drawing.Font("Microsoft Sans Serif", 15.75F);
     this.GroupHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(166)))), ((int)(((byte)(67)))), ((int)(((byte)(32)))));
     this.GroupHeader.Name      = "GroupHeader";
     //
     // ReportHeading
     //
     this.ReportHeading.Font          = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold);
     this.ReportHeading.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(112)))), ((int)(((byte)(135)))), ((int)(((byte)(153)))));
     this.ReportHeading.Name          = "ReportHeading";
     this.ReportHeading.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Header
     //
     this.Header.Font          = new System.Drawing.Font("Microsoft Sans Serif", 48F);
     this.Header.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(173)))), ((int)(((byte)(191)))));
     this.Header.Name          = "Header";
     this.Header.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Header.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // TableHeader
     //
     this.TableHeader.BackColor     = System.Drawing.Color.White;
     this.TableHeader.Font          = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeader.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(98)))), ((int)(((byte)(107)))), ((int)(((byte)(115)))));
     this.TableHeader.Name          = "TableHeader";
     this.TableHeader.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TableHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // OddStyle
     //
     this.OddStyle.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(232)))), ((int)(((byte)(242)))));
     this.OddStyle.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.OddStyle.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(13)))), ((int)(((byte)(13)))));
     this.OddStyle.Name          = "OddStyle";
     this.OddStyle.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.OddStyle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // EvenStyle
     //
     this.EvenStyle.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.EvenStyle.Font          = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.EvenStyle.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(13)))), ((int)(((byte)(13)))));
     this.EvenStyle.Name          = "EvenStyle";
     this.EvenStyle.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.EvenStyle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // Lines
     //
     this.Lines.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.Lines.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(43)))), ((int)(((byte)(24)))));
     this.Lines.Name      = "Lines";
     this.Lines.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // FooterLine
     //
     this.FooterLine.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.FooterLine.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(43)))), ((int)(((byte)(24)))));
     this.FooterLine.Name      = "FooterLine";
     this.FooterLine.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(110)))), ((int)(((byte)(141)))));
     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("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.FieldCaption.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(110)))), ((int)(((byte)(141)))));
     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.Top;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Microsoft Sans Serif", 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("Microsoft Sans Serif", 10F);
     this.DataField.ForeColor   = System.Drawing.Color.Black;
     this.DataField.Name        = "DataField";
     this.DataField.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // BaseReportTemplate
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.detailBand1,
         this.bottomMarginBand1,
         this.groupHeaderBand1,
         this.groupHeaderBand2,
         this.groupHeaderBand3,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.groupFooterBand2,
         this.groupFooterBand3,
         this.reportFooterBand1
     });
     this.ComponentStorage.Add(this.sqlDataSource1);
     this.DataMember = "VW_Account";
     this.DataSource = this.sqlDataSource1;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.GroupHeader,
         this.ReportHeading,
         this.Header,
         this.TableHeader,
         this.OddStyle,
         this.EvenStyle,
         this.Lines,
         this.FooterLine,
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.DataField
     });
     this.Version = "14.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
예제 #39
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            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.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Notes));
            DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
            DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
            DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings3 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell30 = 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.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.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow4 = 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.Agent = new DevExpress.XtraReports.Parameters.Parameter();
            this.Module = new DevExpress.XtraReports.Parameters.Parameter();
            this.Date = new DevExpress.XtraReports.Parameters.Parameter();
            this.pageHeaderBand1 = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
            this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
            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.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
            this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "ES_Connection";
            tableQuery1.Name = "tb_merchants";
            relationColumnInfo1.NestedKeyColumn = "MerchantId";
            relationColumnInfo1.ParentKeyColumn = "MerchantId";
            relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo1});
            relationInfo1.NestedTable = "tb_notes";
            relationInfo1.ParentTable = "tb_merchants";
            relationColumnInfo2.NestedKeyColumn = "WorkFlowId";
            relationColumnInfo2.ParentKeyColumn = "WorkFlowId";
            relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo2});
            relationInfo2.NestedTable = "tb_workflows";
            relationInfo2.ParentTable = "tb_notes";
            relationColumnInfo3.NestedKeyColumn = "NoteTypeId";
            relationColumnInfo3.ParentKeyColumn = "NoteTypeId";
            relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo3});
            relationInfo3.NestedTable = "lkp_tb_notetypes";
            relationInfo3.ParentTable = "tb_notes";
            relationColumnInfo4.NestedKeyColumn = "InsertUserID";
            relationColumnInfo4.ParentKeyColumn = "InsertUserId";
            relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] {
            relationColumnInfo4});
            relationInfo4.NestedTable = "tb_users";
            relationInfo4.ParentTable = "lkp_tb_notetypes";
            tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] {
            relationInfo1,
            relationInfo2,
            relationInfo3,
            relationInfo4});
            tableInfo1.Name = "tb_merchants";
            columnInfo1.Alias = "Merchant Id";
            columnInfo1.Name = "MerchantId";
            columnInfo2.Alias = "Merchant Name";
            columnInfo2.Name = "LegalName";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2});
            tableInfo2.Name = "tb_notes";
            columnInfo3.Name = "Note";
            columnInfo4.Name = "WorkFlowId";
            tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo3,
            columnInfo4});
            tableInfo3.Name = "tb_workflows";
            columnInfo5.Alias = "Module";
            columnInfo5.Name = "WorkFlowName";
            tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo5});
            tableInfo4.Name = "lkp_tb_notetypes";
            columnInfo6.Alias = "Date";
            columnInfo6.Name = "InsertDate";
            tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo6});
            tableInfo5.Name = "tb_users";
            columnInfo7.Alias = "Agent";
            columnInfo7.Name = "UserName";
            tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo7});
            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 = 23F;
            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.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(6F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow8});
            this.xrTable2.SizeF = new System.Drawing.SizeF(887F, 23F);
            // 
            // xrTableRow8
            // 
            this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell20,
            this.xrTableCell22,
            this.xrTableCell24,
            this.xrTableCell26,
            this.xrTableCell28,
            this.xrTableCell30});
            this.xrTableRow8.Name = "xrTableRow8";
            this.xrTableRow8.Weight = 1D;
            // 
            // xrTableCell20
            // 
            this.xrTableCell20.CanGrow = false;
            this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "tb_merchants.Merchant Id")});
            this.xrTableCell20.Name = "xrTableCell20";
            this.xrTableCell20.StyleName = "DataField";
            this.xrTableCell20.StylePriority.UseTextAlignment = false;
            this.xrTableCell20.Text = "xrTableCell20";
            this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell20.Weight = 47.317858935746422D;
            // 
            // xrTableCell22
            // 
            this.xrTableCell22.CanGrow = false;
            this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "tb_merchants.Merchant Name")});
            this.xrTableCell22.Name = "xrTableCell22";
            this.xrTableCell22.StyleName = "DataField";
            this.xrTableCell22.StylePriority.UseTextAlignment = false;
            this.xrTableCell22.Text = "xrTableCell22";
            this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell22.Weight = 95.9469508200111D;
            // 
            // xrTableCell24
            // 
            this.xrTableCell24.CanGrow = false;
            this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "tb_merchants.Module")});
            this.xrTableCell24.Name = "xrTableCell24";
            this.xrTableCell24.StyleName = "DataField";
            this.xrTableCell24.StylePriority.UseTextAlignment = false;
            this.xrTableCell24.Text = "xrTableCell24";
            this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell24.Weight = 109.09236076208757D;
            // 
            // xrTableCell26
            // 
            this.xrTableCell26.CanGrow = false;
            this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "tb_merchants.Agent")});
            this.xrTableCell26.Name = "xrTableCell26";
            this.xrTableCell26.StyleName = "DataField";
            this.xrTableCell26.StylePriority.UseTextAlignment = false;
            this.xrTableCell26.Text = "xrTableCell26";
            this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell26.Weight = 62.932499718907991D;
            // 
            // xrTableCell28
            // 
            this.xrTableCell28.CanGrow = false;
            this.xrTableCell28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "tb_merchants.Date")});
            this.xrTableCell28.Name = "xrTableCell28";
            this.xrTableCell28.StyleName = "DataField";
            this.xrTableCell28.StylePriority.UseTextAlignment = false;
            this.xrTableCell28.Text = "xrTableCell28";
            this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell28.Weight = 81.013722373506539D;
            // 
            // xrTableCell30
            // 
            this.xrTableCell30.CanGrow = false;
            this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "tb_merchants.Note")});
            this.xrTableCell30.Name = "xrTableCell30";
            this.xrTableCell30.StyleName = "DataField";
            this.xrTableCell30.StylePriority.UseTextAlignment = false;
            this.xrTableCell30.Text = "xrTableCell30";
            this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell30.Weight = 46.196607389740372D;
            // 
            // 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;
            // 
            // 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.Name = "xrTableCell4";
            this.xrTableCell4.Text = "xrTableCell4";
            this.xrTableCell4.Weight = 1D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.Text = "xrTableCell5";
            this.xrTableCell5.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Text = "xrTableCell6";
            this.xrTableCell6.Weight = 1D;
            // 
            // xrTableRow3
            // 
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9});
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.Weight = 1D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Text = "xrTableCell7";
            this.xrTableCell7.Weight = 1D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Text = "xrTableCell8";
            this.xrTableCell8.Weight = 1D;
            // 
            // xrTableCell9
            // 
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.Text = "xrTableCell9";
            this.xrTableCell9.Weight = 1D;
            // 
            // xrTableRow4
            // 
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12});
            this.xrTableRow4.Name = "xrTableRow4";
            this.xrTableRow4.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;
            // 
            // Agent
            // 
            this.Agent.Description = "Agent";
            dynamicListLookUpSettings1.DataAdapter = null;
            dynamicListLookUpSettings1.DataMember = "tb_merchants";
            dynamicListLookUpSettings1.DataSource = this.sqlDataSource1;
            dynamicListLookUpSettings1.DisplayMember = "Agent";
            dynamicListLookUpSettings1.ValueMember = "Agent";
            this.Agent.LookUpSettings = dynamicListLookUpSettings1;
            this.Agent.Name = "Agent";
            // 
            // Module
            // 
            this.Module.Description = "Module";
            dynamicListLookUpSettings2.DataAdapter = null;
            dynamicListLookUpSettings2.DataMember = "tb_merchants";
            dynamicListLookUpSettings2.DataSource = this.sqlDataSource1;
            dynamicListLookUpSettings2.DisplayMember = "Module";
            dynamicListLookUpSettings2.ValueMember = "Module";
            this.Module.LookUpSettings = dynamicListLookUpSettings2;
            this.Module.Name = "Module";
            // 
            // Date
            // 
            this.Date.Description = "Date";
            dynamicListLookUpSettings3.DataAdapter = null;
            dynamicListLookUpSettings3.DataMember = "tb_merchants";
            dynamicListLookUpSettings3.DataSource = this.sqlDataSource1;
            dynamicListLookUpSettings3.DisplayMember = "Date";
            dynamicListLookUpSettings3.ValueMember = "Date";
            this.Date.LookUpSettings = dynamicListLookUpSettings3;
            this.Date.Name = "Date";
            this.Date.Type = typeof(System.DateTime);
            // 
            // pageHeaderBand1
            // 
            this.pageHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1});
            this.pageHeaderBand1.HeightF = 42F;
            this.pageHeaderBand1.Name = "pageHeaderBand1";
            // 
            // xrTable1
            // 
            this.xrTable1.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow7});
            this.xrTable1.SizeF = new System.Drawing.SizeF(887F, 36F);
            // 
            // xrTableRow7
            // 
            this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell19,
            this.xrTableCell21,
            this.xrTableCell23,
            this.xrTableCell25,
            this.xrTableCell27,
            this.xrTableCell29});
            this.xrTableRow7.Name = "xrTableRow7";
            this.xrTableRow7.Weight = 1D;
            // 
            // xrTableCell19
            // 
            this.xrTableCell19.CanGrow = false;
            this.xrTableCell19.Name = "xrTableCell19";
            this.xrTableCell19.StyleName = "FieldCaption";
            this.xrTableCell19.StylePriority.UseTextAlignment = false;
            this.xrTableCell19.Text = "Merchant ID";
            this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell19.Weight = 47.317858935746422D;
            // 
            // xrTableCell21
            // 
            this.xrTableCell21.CanGrow = false;
            this.xrTableCell21.Name = "xrTableCell21";
            this.xrTableCell21.StyleName = "FieldCaption";
            this.xrTableCell21.StylePriority.UseTextAlignment = false;
            this.xrTableCell21.Text = "Merchant Name";
            this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell21.Weight = 95.9469508200111D;
            // 
            // xrTableCell23
            // 
            this.xrTableCell23.CanGrow = false;
            this.xrTableCell23.Name = "xrTableCell23";
            this.xrTableCell23.StyleName = "FieldCaption";
            this.xrTableCell23.StylePriority.UseTextAlignment = false;
            this.xrTableCell23.Text = "Module";
            this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell23.Weight = 109.09236076208757D;
            // 
            // xrTableCell25
            // 
            this.xrTableCell25.CanGrow = false;
            this.xrTableCell25.Name = "xrTableCell25";
            this.xrTableCell25.StyleName = "FieldCaption";
            this.xrTableCell25.StylePriority.UseTextAlignment = false;
            this.xrTableCell25.Text = "Agent";
            this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell25.Weight = 62.932499718907991D;
            // 
            // xrTableCell27
            // 
            this.xrTableCell27.CanGrow = false;
            this.xrTableCell27.Name = "xrTableCell27";
            this.xrTableCell27.StyleName = "FieldCaption";
            this.xrTableCell27.StylePriority.UseTextAlignment = false;
            this.xrTableCell27.Text = "Date";
            this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell27.Weight = 81.013722373506539D;
            // 
            // xrTableCell29
            // 
            this.xrTableCell29.CanGrow = false;
            this.xrTableCell29.Name = "xrTableCell29";
            this.xrTableCell29.StyleName = "FieldCaption";
            this.xrTableCell29.StylePriority.UseTextAlignment = false;
            this.xrTableCell29.Text = "Note";
            this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell29.Weight = 46.196607389740372D;
            // 
            // xrTableRow5
            // 
            this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15});
            this.xrTableRow5.Name = "xrTableRow5";
            this.xrTableRow5.Weight = 1D;
            // 
            // xrTableCell13
            // 
            this.xrTableCell13.Name = "xrTableCell13";
            this.xrTableCell13.Text = "xrTableCell13";
            this.xrTableCell13.Weight = 1D;
            // 
            // xrTableCell14
            // 
            this.xrTableCell14.Name = "xrTableCell14";
            this.xrTableCell14.Text = "xrTableCell14";
            this.xrTableCell14.Weight = 1D;
            // 
            // xrTableCell15
            // 
            this.xrTableCell15.Name = "xrTableCell15";
            this.xrTableCell15.Text = "xrTableCell15";
            this.xrTableCell15.Weight = 1D;
            // 
            // xrTableRow6
            // 
            this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18});
            this.xrTableRow6.Name = "xrTableRow6";
            this.xrTableRow6.Weight = 1D;
            // 
            // xrTableCell16
            // 
            this.xrTableCell16.Name = "xrTableCell16";
            this.xrTableCell16.Text = "xrTableCell16";
            this.xrTableCell16.Weight = 1D;
            // 
            // xrTableCell17
            // 
            this.xrTableCell17.Name = "xrTableCell17";
            this.xrTableCell17.Text = "xrTableCell17";
            this.xrTableCell17.Weight = 1D;
            // 
            // xrTableCell18
            // 
            this.xrTableCell18.Name = "xrTableCell18";
            this.xrTableCell18.Text = "xrTableCell18";
            this.xrTableCell18.Weight = 1D;
            // 
            // pageFooterBand1
            // 
            this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1,
            this.xrPageInfo2});
            this.pageFooterBand1.HeightF = 29F;
            this.pageFooterBand1.Name = "pageFooterBand1";
            // 
            // 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(438F, 23F);
            this.xrPageInfo1.StyleName = "PageInfo";
            // 
            // xrPageInfo2
            // 
            this.xrPageInfo2.Format = "Page {0} of {1}";
            this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(456F, 6F);
            this.xrPageInfo2.Name = "xrPageInfo2";
            this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrPageInfo2.SizeF = new System.Drawing.SizeF(438F, 23F);
            this.xrPageInfo2.StyleName = "PageInfo";
            this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // reportHeaderBand1
            // 
            this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1});
            this.reportHeaderBand1.HeightF = 53F;
            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, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(888F, 35F);
            this.xrLabel1.StyleName = "Title";
            this.xrLabel1.Text = "Note";
            // 
            // 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);
            // 
            // topMarginBand1
            // 
            this.topMarginBand1.HeightF = 100F;
            this.topMarginBand1.Name = "topMarginBand1";
            // 
            // bottomMarginBand1
            // 
            this.bottomMarginBand1.HeightF = 100.1667F;
            this.bottomMarginBand1.Name = "bottomMarginBand1";
            // 
            // Notes
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.pageHeaderBand1,
            this.pageFooterBand1,
            this.reportHeaderBand1,
            this.topMarginBand1,
            this.bottomMarginBand1});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "tb_merchants";
            this.DataSource = this.sqlDataSource1;
            this.Landscape = true;
            this.PageHeight = 850;
            this.PageWidth = 1100;
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.Agent,
            this.Module,
            this.Date});
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.FieldCaption,
            this.PageInfo,
            this.DataField});
            this.Version = "14.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
예제 #40
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
            DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery();
            DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
            DevExpress.DataAccess.Sql.QueryParameter queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter();
            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.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo();
            DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Rpt_KEWPA04));
            this.Detail = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
            this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
            this.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.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
            this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
            this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
            this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
            this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
            this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
            this.PtjSagaCode = new DevExpress.XtraReports.Parameters.Parameter();
            this.ReceiveYear = new DevExpress.XtraReports.Parameters.Parameter();
            this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource();
            this.pengurusanSistemDataset1 = new AssetAndStoreManagementSystem.Report.PengurusanSistem.PengurusanSistemDataset();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pengurusanSistemDataset1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2});
            this.Detail.HeightF = 26.04167F;
            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.Font = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name = "xrTable2";
            this.xrTable2.OddStyleName = "xrControlStyle1";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow2});
            this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
            this.xrTable2.StylePriority.UseFont = false;
            // 
            // xrTableRow2
            // 
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell6,
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10});
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.Weight = 1D;
            // 
            // xrTableCell6
            // 
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.Weight = 0.52083332061767584D;
            // 
            // xrTableCell7
            // 
            this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_AssetInventoryRegistration_MainInformation.AIRMI_RegistrationNumber")});
            this.xrTableCell7.Name = "xrTableCell7";
            this.xrTableCell7.Weight = 1.2187499618530273D;
            // 
            // xrTableCell8
            // 
            this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_AssetInventoryRegistration_MainInformation.AIRMI_Desc")});
            this.xrTableCell8.Name = "xrTableCell8";
            this.xrTableCell8.Weight = 2.7604167175292966D;
            // 
            // xrTableCell9
            // 
            this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_AssetInventoryRegistration_MainInformation.AIRMI_ReceivedDate")});
            this.xrTableCell9.Name = "xrTableCell9";
            this.xrTableCell9.StylePriority.UseTextAlignment = false;
            this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableCell9.Weight = 1.0104168701171874D;
            // 
            // xrTableCell10
            // 
            this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
            new DevExpress.XtraReports.UI.XRBinding("Text", null, "V_AssetInventoryRegistration_MainInformation.AIRMI_PurchasePrice")});
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.StylePriority.UseTextAlignment = false;
            this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            this.xrTableCell10.Weight = 0.9895831298828125D;
            // 
            // TopMargin
            // 
            this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1,
            this.xrLabel1,
            this.xrLabel2});
            this.TopMargin.HeightF = 193.2083F;
            this.TopMargin.Name = "TopMargin";
            this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrTable1
            // 
            this.xrTable1.BackColor = System.Drawing.Color.Black;
            this.xrTable1.Font = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrTable1.ForeColor = System.Drawing.Color.White;
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.5F);
            this.xrTable1.Name = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1});
            this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 58.5F);
            this.xrTable1.StylePriority.UseBackColor = false;
            this.xrTable1.StylePriority.UseFont = false;
            this.xrTable1.StylePriority.UseForeColor = false;
            // 
            // xrTableRow1
            // 
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3,
            this.xrTableCell4,
            this.xrTableCell5});
            this.xrTableRow1.Name = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            // 
            // xrTableCell1
            // 
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.Text = "BIL";
            this.xrTableCell1.Weight = 0.52083332061767584D;
            // 
            // xrTableCell2
            // 
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.Text = "NO SIRI PENDAFTARAN";
            this.xrTableCell2.Weight = 1.2187499618530273D;
            // 
            // xrTableCell3
            // 
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.Text = "NAMA ASET";
            this.xrTableCell3.Weight = 2.7604167175292966D;
            // 
            // xrTableCell4
            // 
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.StylePriority.UseTextAlignment = false;
            this.xrTableCell4.Text = "TARIKH PEROLEHAN";
            this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableCell4.Weight = 1.0104168701171874D;
            // 
            // xrTableCell5
            // 
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.StylePriority.UseTextAlignment = false;
            this.xrTableCell5.Text = "HARGA PEROLEHAN ASAL (RM)";
            this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            this.xrTableCell5.Weight = 0.9895831298828125D;
            // 
            // xrLabel1
            // 
            this.xrLabel1.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold);
            this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(550F, 23.91667F);
            this.xrLabel1.Name = "xrLabel1";
            this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF = new System.Drawing.SizeF(100F, 23F);
            this.xrLabel1.StylePriority.UseFont = false;
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text = "KEW. PA-4";
            this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // xrLabel2
            // 
            this.xrLabel2.Font = new System.Drawing.Font("Calibri", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(102.0833F, 79.5F);
            this.xrLabel2.Name = "xrLabel2";
            this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF = new System.Drawing.SizeF(448.9584F, 23F);
            this.xrLabel2.StylePriority.UseFont = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text = "SENARAI DAFTAR HARTA MODAL";
            this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            // 
            // BottomMargin
            // 
            this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel4,
            this.xrPageInfo1,
            this.xrLabel3});
            this.BottomMargin.HeightF = 95.99997F;
            this.BottomMargin.Name = "BottomMargin";
            this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            // 
            // xrLabel4
            // 
            this.xrLabel4.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
            this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(497.9167F, 46.95832F);
            this.xrLabel4.Name = "xrLabel4";
            this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel4.SizeF = new System.Drawing.SizeF(100F, 23F);
            this.xrLabel4.StylePriority.UseFont = false;
            this.xrLabel4.Text = "Mukasurat";
            // 
            // xrPageInfo1
            // 
            this.xrPageInfo1.Font = new System.Drawing.Font("Calibri", 10F, System.Drawing.FontStyle.Italic);
            this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(597.9167F, 46.95832F);
            this.xrPageInfo1.Name = "xrPageInfo1";
            this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrPageInfo1.SizeF = new System.Drawing.SizeF(52.08331F, 23F);
            this.xrPageInfo1.StylePriority.UseFont = false;
            this.xrPageInfo1.StylePriority.UseTextAlignment = false;
            this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            // 
            // xrLabel3
            // 
            this.xrLabel3.Font = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 46.95832F);
            this.xrLabel3.Name = "xrLabel3";
            this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel3.SizeF = new System.Drawing.SizeF(216.6667F, 23F);
            this.xrLabel3.StylePriority.UseFont = false;
            this.xrLabel3.Text = "Asset & Store Management System";
            // 
            // GroupFooter1
            // 
            this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3});
            this.GroupFooter1.HeightF = 28.125F;
            this.GroupFooter1.Name = "GroupFooter1";
            // 
            // xrTable3
            // 
            this.xrTable3.BackColor = System.Drawing.Color.Black;
            this.xrTable3.Font = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold);
            this.xrTable3.ForeColor = System.Drawing.Color.White;
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable3.Name = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3});
            this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 25F);
            this.xrTable3.StylePriority.UseBackColor = false;
            this.xrTable3.StylePriority.UseFont = false;
            this.xrTable3.StylePriority.UseForeColor = false;
            // 
            // xrTableRow3
            // 
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell11,
            this.xrTableCell12,
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15});
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.Weight = 1D;
            // 
            // xrTableCell11
            // 
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.Weight = 0.52083332061767584D;
            // 
            // xrTableCell12
            // 
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.Weight = 1.2187499618530273D;
            // 
            // xrTableCell13
            // 
            this.xrTableCell13.Name = "xrTableCell13";
            this.xrTableCell13.Text = "JUMLAH";
            this.xrTableCell13.Weight = 2.7604167175292966D;
            // 
            // xrTableCell14
            // 
            this.xrTableCell14.ForeColor = System.Drawing.Color.White;
            this.xrTableCell14.Name = "xrTableCell14";
            this.xrTableCell14.StylePriority.UseForeColor = false;
            this.xrTableCell14.StylePriority.UseTextAlignment = false;
            this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableCell14.Weight = 1.0104168701171874D;
            // 
            // xrTableCell15
            // 
            this.xrTableCell15.ForeColor = System.Drawing.Color.White;
            this.xrTableCell15.Name = "xrTableCell15";
            this.xrTableCell15.StylePriority.UseForeColor = false;
            this.xrTableCell15.StylePriority.UseTextAlignment = false;
            xrSummary1.FormatString = "{0:n}";
            xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
            this.xrTableCell15.Summary = xrSummary1;
            this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
            this.xrTableCell15.Weight = 0.9895831298828125D;
            // 
            // xrControlStyle1
            // 
            this.xrControlStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xrControlStyle1.Name = "xrControlStyle1";
            this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            // 
            // PtjSagaCode
            // 
            this.PtjSagaCode.Description = "PtjSagaCode";
            this.PtjSagaCode.Name = "PtjSagaCode";
            this.PtjSagaCode.Visible = false;
            // 
            // ReceiveYear
            // 
            this.ReceiveYear.Description = "ReceiveYear";
            this.ReceiveYear.Name = "ReceiveYear";
            this.ReceiveYear.Type = typeof(int);
            this.ReceiveYear.ValueInfo = "0";
            this.ReceiveYear.Visible = false;
            // 
            // sqlDataSource1
            // 
            this.sqlDataSource1.ConnectionName = "AMS_DBConnectionString";
            this.sqlDataSource1.Name = "sqlDataSource1";
            tableQuery1.FilterString = "[V_AssetInventoryRegistration_MainInformation.RECEIVEYEAR] = ?ReceiveYear And [V_" +
    "AssetInventoryRegistration_MainInformation.PTJ_SagaCode] = ?PtjSagaCode";
            tableQuery1.Name = "V_AssetInventoryRegistration_MainInformation";
            queryParameter1.Name = "ReceiveYear";
            queryParameter1.Type = typeof(DevExpress.DataAccess.Expression);
            queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.ReceiveYear]", null);
            queryParameter2.Name = "PtjSagaCode";
            queryParameter2.Type = typeof(DevExpress.DataAccess.Expression);
            queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.PtjSagaCode]", null);
            tableQuery1.Parameters.Add(queryParameter1);
            tableQuery1.Parameters.Add(queryParameter2);
            tableInfo1.Name = "V_AssetInventoryRegistration_MainInformation";
            columnInfo1.Name = "AIRMI_UniqueId";
            columnInfo2.Name = "AIRMI_Desc";
            columnInfo3.Name = "AIRMI_ReceivedDate";
            columnInfo4.Name = "AIRMI_PurchasePrice";
            columnInfo5.Name = "AIRMI_RegistrationNumber";
            tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] {
            columnInfo1,
            columnInfo2,
            columnInfo3,
            columnInfo4,
            columnInfo5});
            tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] {
            tableInfo1});
            this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            tableQuery1});
            this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
            // 
            // pengurusanSistemDataset1
            // 
            this.pengurusanSistemDataset1.DataSetName = "PengurusanSistemDataset";
            this.pengurusanSistemDataset1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // Rpt_KEWPA04
            // 
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.GroupFooter1});
            this.ComponentStorage.Add(this.sqlDataSource1);
            this.DataMember = "CustomSqlQuery";
            this.DataSource = this.sqlDataSource1;
            this.Margins = new System.Drawing.Printing.Margins(100, 100, 193, 96);
            this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.PtjSagaCode,
            this.ReceiveYear});
            this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.xrControlStyle1});
            this.Version = "14.2";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pengurusanSistemDataset1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }