コード例 #1
0
ファイル: Constant.cs プロジェクト: Strongc/sencond
        public static void ExportGrid2Excel(System.Windows.Forms.Form Form,
                                            Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter ExcelExporter,
                                            Infragistics.Win.UltraWinGrid.UltraGrid Grid)
        {
            Cursor oldCursor = Form.Cursor;

            Form.Cursor = Cursors.WaitCursor;

            if (Constant.WaitingForm == null)
            {
                Constant.WaitingForm = new WaitingForm();
            }

            Constant.WaitingForm.ShowToUser = true;
            Constant.WaitingForm.Show();
            Constant.WaitingForm.Update();

            try
            {
                if (!System.IO.Directory.Exists(System.Environment.CurrentDirectory + "\\temp"))
                {
                    System.IO.Directory.CreateDirectory(System.Environment.CurrentDirectory + "\\temp");
                }

                string StrfileName = string.Format(System.Environment.CurrentDirectory + "\\temp\\" + Form.Text + ".xls");
                ExcelExporter.Export(Grid, StrfileName);

                ProcessStartInfo p = new ProcessStartInfo(StrfileName);
                p.WorkingDirectory = Path.GetDirectoryName(StrfileName);
                Process.Start(p);

                Form.Cursor = oldCursor;
                Constant.WaitingForm.ShowToUser = false;
                Constant.WaitingForm.Close();
            }
            catch (Exception ex)
            {
                Form.Cursor = oldCursor;
                Constant.WaitingForm.ShowToUser = false;
                Constant.WaitingForm.Close();
                MessageBox.Show(ex.Message);
            }
        }
コード例 #2
0
ファイル: fViews.cs プロジェクト: luisloo10/CALT
        public void ExcelExport(Infragistics.Win.UltraWinGrid.UltraGrid Grid, string FileName)
        {
            try
            {
                Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter Export = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
                SaveFileDialog Save = new SaveFileDialog();

                Save.Filter   = "Excel File (.xlsx) |*.xlsx|Excel File 97-2003 (.xls)|*.xls";
                Save.Title    = "Save The Fitness Value Report";
                Save.FileName = FileName;

                if (Save.ShowDialog() == DialogResult.OK)
                {
                    Export.Export(Grid, Save.FileName);
                    MessageBox.Show("Excel File was exported successfully!", "Excel File Exportation", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
コード例 #3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbProduct               = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.cmbProduct);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Location = new System.Drawing.Point(28, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(888, 150);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(288, 64);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(88, 23);
     this.ultraLabel6.TabIndex = 41;
     this.ultraLabel6.Text     = "服务产品:";
     //
     // cmbProduct
     //
     this.cmbProduct.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbProduct.Location     = new System.Drawing.Point(392, 64);
     this.cmbProduct.Name         = "cmbProduct";
     this.cmbProduct.Size         = new System.Drawing.Size(144, 21);
     this.cmbProduct.TabIndex     = 40;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(504, 104);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(288, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 112);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 72);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 32;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(552, 72);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(96, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(552, 32);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(96, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(656, 72);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(656, 32);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(392, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(400, 104);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(296, 104);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 72);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(128, 112);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 32);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 13;
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(840, 379);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ProductReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(944, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "ProductReport";
     this.Text  = Login.constApp.strCardTypeL8Name + "服务产品消费报表";
     this.Load += new System.EventHandler(this.ProductReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #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();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("find");
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVESEATNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TARETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_RECEIVETIME");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 4, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 4, true);
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_POTNO", 1, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_POTNO", 1, true);
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.uToolBar = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panel3 = new System.Windows.Forms.Panel();
     this.ugbEdit = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtGh = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtLh = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.qDteEnd = new System.Windows.Forms.DateTimePicker();
     this.qDteBegin = new System.Windows.Forms.DateTimePicker();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ugbEdit)).BeginInit();
     this.ugbEdit.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(992, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 26);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(992, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // uToolBar
     //
     this.uToolBar.DesignerFlags = 1;
     this.uToolBar.DockWithinContainer = this.panel1;
     this.uToolBar.LockToolbars = true;
     this.uToolBar.ShowFullMenusDelay = 500;
     this.uToolBar.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     buttonTool6.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool7,
     buttonTool6});
     ultraToolbar1.Text = "UltraToolbar1";
     this.uToolBar.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool3.SharedPropsInternal.Caption = "导出";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool8.SharedPropsInternal.Caption = "查询";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.uToolBar.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool3,
     buttonTool8});
     this.uToolBar.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.uToolBar_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn2,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn1,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5});
     this.dataTable1.TableName = "计量数据";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "序号";
     this.dataColumn2.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "罐号";
     this.dataColumn15.ColumnName = "FS_POTNO";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "炉座号";
     this.dataColumn16.ColumnName = "FS_STOVESEATNO";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "炉号";
     this.dataColumn17.ColumnName = "FS_STOVENO";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "净重";
     this.dataColumn18.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "重罐时间";
     this.dataColumn30.ColumnName = "FS_GROSSTIME";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "空罐时间";
     this.dataColumn31.ColumnName = "FD_TARETIME";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "毛重";
     this.dataColumn32.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "皮重";
     this.dataColumn33.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "毛重计量员";
     this.dataColumn1.ColumnName = "FS_GROSSPERSON";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "皮重计量员";
     this.dataColumn3.ColumnName = "FS_TAREPERSON";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "收货库管员";
     this.dataColumn4.ColumnName = "FS_RECEIVER";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "收库时间";
     this.dataColumn5.ColumnName = "FD_RECEIVETIME";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Controls.Add(this.panel3);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 26);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(992, 628);
     this.panel2.TabIndex = 4;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 104);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(992, 524);
     this.panel4.TabIndex = 1;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "计量数据";
     this.ultraGrid1.DataSource = this.dataSet1;
     appearance27.BackColor = System.Drawing.Color.White;
     appearance27.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid1.DisplayLayout.Appearance = appearance27;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(110, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn1.Width = 36;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(112, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(104, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(106, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "合计:{0}千克";
     summarySettings1.GroupBySummaryValueAppearance = appearance12;
     summarySettings2.DisplayFormat = "合计:{0}罐";
     summarySettings2.GroupBySummaryValueAppearance = appearance13;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = "拖动列标题到此,按该列进行分组。";
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 10;
     appearance30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance30;
     appearance31.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance31;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance32.BackColor2 = System.Drawing.Color.White;
     appearance32.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance32.FontData.SizeInPoints = 11F;
     appearance32.ForeColor = System.Drawing.Color.Black;
     appearance32.TextHAlignAsString = "Center";
     appearance32.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance32;
     appearance33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance33;
     appearance34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance34.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance34.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance34;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance35.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance35.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance35;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(992, 524);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.ugbEdit);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(992, 104);
     this.panel3.TabIndex = 0;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // ugbEdit
     //
     this.ugbEdit.Controls.Add(this.txtGh);
     this.ugbEdit.Controls.Add(this.label4);
     this.ugbEdit.Controls.Add(this.txtLh);
     this.ugbEdit.Controls.Add(this.label3);
     this.ugbEdit.Controls.Add(this.label1);
     this.ugbEdit.Controls.Add(this.qDteEnd);
     this.ugbEdit.Controls.Add(this.qDteBegin);
     this.coreBind.SetDatabasecommand(this.ugbEdit, null);
     this.ugbEdit.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ugbEdit.Location = new System.Drawing.Point(0, 0);
     this.ugbEdit.Name = "ugbEdit";
     this.ugbEdit.Size = new System.Drawing.Size(992, 104);
     this.ugbEdit.TabIndex = 0;
     this.ugbEdit.Text = "查询条件区";
     this.coreBind.SetVerification(this.ugbEdit, null);
     this.ugbEdit.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // txtGh
     //
     this.coreBind.SetDatabasecommand(this.txtGh, null);
     this.txtGh.Location = new System.Drawing.Point(274, 75);
     this.txtGh.Name = "txtGh";
     this.txtGh.Size = new System.Drawing.Size(100, 21);
     this.txtGh.TabIndex = 8;
     this.coreBind.SetVerification(this.txtGh, null);
     this.txtGh.Leave += new System.EventHandler(this.txtGh_Leave);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Location = new System.Drawing.Point(211, 78);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(29, 12);
     this.label4.TabIndex = 7;
     this.label4.Text = "罐号";
     this.coreBind.SetVerification(this.label4, null);
     //
     // txtLh
     //
     this.coreBind.SetDatabasecommand(this.txtLh, null);
     this.txtLh.Location = new System.Drawing.Point(92, 75);
     this.txtLh.Name = "txtLh";
     this.txtLh.Size = new System.Drawing.Size(100, 21);
     this.txtLh.TabIndex = 6;
     this.coreBind.SetVerification(this.txtLh, null);
     this.txtLh.Leave += new System.EventHandler(this.txtLh_Leave);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Location = new System.Drawing.Point(12, 78);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(29, 12);
     this.label3.TabIndex = 5;
     this.label3.Text = "炉号";
     this.coreBind.SetVerification(this.label3, null);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Location = new System.Drawing.Point(3, 38);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 2;
     this.label1.Text = "计量时间";
     this.coreBind.SetVerification(this.label1, null);
     //
     // qDteEnd
     //
     this.coreBind.SetDatabasecommand(this.qDteEnd, null);
     this.qDteEnd.Location = new System.Drawing.Point(274, 34);
     this.qDteEnd.Name = "qDteEnd";
     this.qDteEnd.Size = new System.Drawing.Size(149, 21);
     this.qDteEnd.TabIndex = 1;
     this.qDteEnd.Value = new System.DateTime(2012, 4, 27, 0, 0, 0, 0);
     this.coreBind.SetVerification(this.qDteEnd, null);
     //
     // qDteBegin
     //
     this.coreBind.SetDatabasecommand(this.qDteBegin, null);
     this.qDteBegin.Location = new System.Drawing.Point(90, 34);
     this.qDteBegin.Name = "qDteBegin";
     this.qDteBegin.Size = new System.Drawing.Size(150, 21);
     this.qDteBegin.TabIndex = 0;
     this.qDteBegin.Value = new System.DateTime(2012, 4, 27, 0, 0, 0, 0);
     this.coreBind.SetVerification(this.qDteBegin, null);
     //
     // DataManage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 654);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.KeyPreview = true;
     this.Name = "DataManage";
     this.Text = "数据管理";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.DataManage_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ugbEdit)).EndInit();
     this.ugbEdit.ResumeLayout(false);
     this.ugbEdit.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbSales                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel21             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7              = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraComboEditor1        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMember                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.cmbDept     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbDept);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel21);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraComboEditor1);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbMember);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Location = new System.Drawing.Point(48, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(1144, 152);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(961, 45);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(144, 21);
     this.cmbSales.TabIndex     = 61;
     //
     // ultraLabel21
     //
     this.ultraLabel21.Location = new System.Drawing.Point(857, 46);
     this.ultraLabel21.Name     = "ultraLabel21";
     this.ultraLabel21.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel21.TabIndex = 60;
     this.ultraLabel21.Text     = "销售人员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(42, 112);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 53;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(42, 77);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 52;
     this.ultraLabel6.Text     = "工商注册号:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(42, 40);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 51;
     this.ultraLabel7.Text     = "会员卡号:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(146, 77);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 50;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(146, 111);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 49;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(146, 40);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 48;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(566, 43);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel2.TabIndex = 47;
     this.ultraLabel2.Text     = "是否工本费:";
     //
     // ultraComboEditor1
     //
     this.ultraComboEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.ultraComboEditor1.Location     = new System.Drawing.Point(670, 43);
     this.ultraComboEditor1.Name         = "ultraComboEditor1";
     this.ultraComboEditor1.Size         = new System.Drawing.Size(144, 21);
     this.ultraComboEditor1.TabIndex     = 46;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(301, 113);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel1.TabIndex = 45;
     this.ultraLabel1.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(405, 113);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(144, 21);
     this.cmbMemberRight.TabIndex     = 44;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(301, 81);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel4.TabIndex = 43;
     this.ultraLabel4.Text     = "是否会员:";
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.Location     = new System.Drawing.Point(405, 81);
     this.cmbMember.Name         = "cmbMember";
     this.cmbMember.Size         = new System.Drawing.Size(144, 21);
     this.cmbMember.TabIndex     = 42;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(1039, 111);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(301, 41);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(566, 119);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(96, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(566, 79);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(96, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(670, 119);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(670, 79);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(405, 41);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(947, 111);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(856, 113);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(1144, 379);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(961, 81);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(152, 21);
     this.cmbDept.TabIndex     = 73;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(859, 81);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 72;
     this.ultraLabel8.Text     = "部门:";
     //
     // AllMoneyReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1272, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "AllMoneyReport";
     this.Text  = Login.constApp.strCardTypeL6Name + "消费明细报表";
     this.Load += new System.EventHandler(this.ProductReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #6
0
        private void ExportData()
        {
            SaveFileDialog saveFileDialog1 = new SaveFileDialog();
            DateTime       FromDate        = DateTime.Parse(dtFromDate.Value.ToString());
            DateTime       ToDate          = DateTime.Parse(dtToDate.Value.ToString());

            saveFileDialog1.DefaultExt       = "txt";
            saveFileDialog1.Filter           = "ExcelFile |*.xlsx";
            saveFileDialog1.AddExtension     = true;
            saveFileDialog1.RestoreDirectory = true;
            saveFileDialog1.Title            = "Bạn cần lưu file ở đâu?";
            saveFileDialog1.InitialDirectory = @"C:/";
            string datetime = string.Format("Tử ngày {0} đến ngày {1}", FromDate.ToString("dd/MM/yyyy"), ToDate.ToString("dd/MM/yyyy"));

            if (saveFileDialog1.ShowDialog() == DialogResult.OK)
            {
                var      row      = Session.CompanyInfo;
                string[] lstTitle = { String.Format("{0} - {1}", row.Name, row.Address), "BÁO CÁO DOANH THU THEO NHÂN VIÊN", datetime };
                Infragistics.Documents.Excel.Workbook workbook = new Infragistics.Documents.Excel.Workbook();
                if (Path.GetExtension(saveFileDialog1.FileName) == ".xlsx")
                {
                    workbook.SetCurrentFormat(WorkbookFormat.Excel2007);
                }
                workbook.Culture = CultureInfo.CurrentCulture;
                Infragistics.Documents.Excel.Worksheet SheetExcel = null;
                string sGroupSeparator           = workbook.Culture.NumberFormat.CurrencyGroupSeparator;
                string sDecimalSeparator         = workbook.Culture.NumberFormat.CurrencyDecimalSeparator;
                List <UltraGridColumn> lstColumn = new List <UltraGridColumn>();
                UltraGridColumn        clColumn  = grdList.DisplayLayout.Bands[0].GetFirstVisibleCol(grdList.ActiveColScrollRegion, true);
                while (clColumn != null)
                {
                    lstColumn.Add(clColumn);
                    clColumn = clColumn.GetRelatedVisibleColumn(VisibleRelation.Next);
                }
                List <UltraGridColumn> lstGroup = new List <UltraGridColumn>();
                foreach (UltraGridColumn gridColumnGroup in grdList.DisplayLayout.Bands[0].SortedColumns)
                {
                    if (gridColumnGroup.IsGroupByColumn)
                    {
                        lstGroup.Add(gridColumnGroup);
                    }
                }
                SheetExcel = workbook.Worksheets.Add("Bao_cao_doanh_thu");
                int iHeaderPosition = lstColumn.Count;
                for (int i = 0; i <= lstTitle.Length - 1; i++)
                {
                    string sTitle = lstTitle[i];
                    {
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.Alignment = HorizontalCellAlignment.Center;
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.Font.Bold = ExcelDefaultableBoolean.True;
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].Value = sTitle;

                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.Font.Name         = "";
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.BottomBorderStyle = CellBorderLineStyle.None;
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.TopBorderStyle    = CellBorderLineStyle.None;
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.LeftBorderStyle   = CellBorderLineStyle.None;
                        SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.RightBorderStyle  = CellBorderLineStyle.None;
                        if (i == 0)
                        {
                            SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.Font.Height = 280;
                            SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.Alignment   = HorizontalCellAlignment.Left;
                        }
                        else if (i == 1)
                        {
                            SheetExcel.Rows[i].Cells[iHeaderPosition / 2].CellFormat.Font.Height = 380;
                        }
                    }
                    SheetExcel.MergedCellsRegions.Add(i, 0, i, iHeaderPosition - 1);
                }
                Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter ultraGridExcelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
                ultraGridExcelExporter.BandSpacing = Infragistics.Win.UltraWinGrid.ExcelExport.BandSpacing.None;
                ultraGridExcelExporter.Export(grdList, SheetExcel, lstTitle.Length, 0);
                for (int i = 0; i < lstGroup.Count - 1; i += 1)
                {
                    SheetExcel.Columns[i].SetWidth(10, WorksheetColumnWidthUnit.Pixel);
                }
                for (int i = lstGroup.Count; i <= lstGroup.Count + lstColumn.Count - 1; i += 1)
                {
                    SheetExcel.Columns[i].SetWidth(lstColumn[i - lstGroup.Count].Width, WorksheetColumnWidthUnit.Pixel);
                    if (lstColumn[i - lstGroup.Count].DataType == typeof(DateTime))
                    {
                        SheetExcel.Columns[i].CellFormat.FormatString = "dd/MM/yyyy";
                    }
                    else if (lstColumn[i - lstGroup.Count].DataType == typeof(double) || lstColumn[i - lstGroup.Count].DataType == typeof(decimal) || lstColumn[i - lstGroup.Count].DataType == typeof(int) || lstColumn[i - lstGroup.Count].DataType == typeof(Int16) || lstColumn[i - lstGroup.Count].DataType == typeof(Int32) || lstColumn[i - lstGroup.Count].DataType == typeof(Int64))
                    {
                        string sFormat       = lstColumn[i - lstGroup.Count].Format == null ? "" : lstColumn[i - lstGroup.Count].Format;
                        int    iDecimalDigit = 0;
                        if ((sFormat.StartsWith("N") || sFormat.StartsWith("C")) && int.TryParse(sFormat.Substring(1), out iDecimalDigit))
                        {
                            if (iDecimalDigit > 0)
                            {
                                SheetExcel.Columns[i].CellFormat.FormatString = string.Format(FormatString, sGroupSeparator, sDecimalSeparator, new string('0', iDecimalDigit));
                            }
                            else
                            {
                                SheetExcel.Columns[i].CellFormat.FormatString = string.Format(FormatString, sGroupSeparator, string.Empty, string.Empty);
                            }
                        }
                        else
                        {
                            SheetExcel.Columns[i].CellFormat.FormatString = "0";
                        }
                    }
                }
                workbook.Save(saveFileDialog1.FileName);
            }
            else
            {
            }
            saveFileDialog1.Dispose();
            saveFileDialog1 = null;
        }
コード例 #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMember                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbMember);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Location = new System.Drawing.Point(128, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(748, 152);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(56, 104);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel1.TabIndex = 45;
     this.ultraLabel1.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(160, 104);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(144, 21);
     this.cmbMemberRight.TabIndex     = 44;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(56, 72);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel4.TabIndex = 43;
     this.ultraLabel4.Text     = "是否会员:";
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.Location     = new System.Drawing.Point(160, 72);
     this.cmbMember.Name         = "cmbMember";
     this.cmbMember.Size         = new System.Drawing.Size(144, 21);
     this.cmbMember.TabIndex     = 42;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(624, 96);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(56, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(320, 88);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(96, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(320, 48);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(96, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(424, 88);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(424, 48);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(160, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(624, 64);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(624, 32);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(840, 379);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // AllMoneyReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(944, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "AllMoneyReport";
     this.Text  = Login.constApp.strCardTypeL8Name + "收入报表";
     this.Load += new System.EventHandler(this.ProductReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #8
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();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnModify                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel9              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbEndDate2              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate2              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmdBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel8              = new Infragistics.Win.Misc.UltraLabel();
     this.txtCustomerService       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7              = new Infragistics.Win.Misc.UltraLabel();
     this.txtSales                 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnterpriseType        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnModify);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate2);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerService);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.txtSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.cmbEnterpriseType);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 24);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(952, 160);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Click   += new System.EventHandler(this.ultraGroupBox1_Click);
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(728, 112);
     this.btnModify.Name        = "btnModify";
     this.btnModify.Size        = new System.Drawing.Size(75, 23);
     this.btnModify.TabIndex    = 37;
     this.btnModify.Text        = "修改";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(80, 112);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 36;
     this.ultraLabel9.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(184, 112);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(104, 21);
     this.cmbMemberRight.TabIndex     = 35;
     //
     // cmbEndDate2
     //
     this.cmbEndDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate2.Location     = new System.Drawing.Point(712, 80);
     this.cmbEndDate2.MaskInput    = "{date} {time}";
     this.cmbEndDate2.Name         = "cmbEndDate2";
     this.cmbEndDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate2.TabIndex     = 32;
     //
     // chkEndDate2
     //
     this.chkEndDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate2.Location    = new System.Drawing.Point(592, 80);
     this.chkEndDate2.Name        = "chkEndDate2";
     this.chkEndDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate2.TabIndex    = 34;
     this.chkEndDate2.Text        = "结束时间";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(712, 48);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmdBeginDate.TabIndex     = 31;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(592, 48);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 33;
     this.chkBeginDate.Text        = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.BackColor = System.Drawing.SystemColors.Window;
     this.cmbEndDate.DateButtons.Add(dateButton1);
     this.cmbEndDate.Location          = new System.Drawing.Point(712, 16);
     this.cmbEndDate.Name              = "cmbEndDate";
     this.cmbEndDate.NonAutoSizeHeight = 23;
     this.cmbEndDate.Size              = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex          = 30;
     //
     // chkEndDate
     //
     this.chkEndDate.Location = new System.Drawing.Point(592, 16);
     this.chkEndDate.Name     = "chkEndDate";
     this.chkEndDate.Size     = new System.Drawing.Size(72, 20);
     this.chkEndDate.TabIndex = 29;
     this.chkEndDate.Text     = "到期时间";
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(352, 112);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 28;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // txtCustomerService
     //
     this.txtCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCustomerService.Location     = new System.Drawing.Point(464, 112);
     this.txtCustomerService.Name         = "txtCustomerService";
     this.txtCustomerService.Size         = new System.Drawing.Size(100, 21);
     this.txtCustomerService.TabIndex     = 27;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(352, 80);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 26;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // txtSales
     //
     this.txtSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSales.Location     = new System.Drawing.Point(464, 80);
     this.txtSales.Name         = "txtSales";
     this.txtSales.Size         = new System.Drawing.Size(100, 21);
     this.txtSales.TabIndex     = 25;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(360, 48);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 24;
     this.ultraLabel6.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(464, 48);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 23;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(80, 80);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 22;
     this.ultraLabel5.Text     = "企业性质:";
     //
     // cmbEnterpriseType
     //
     this.cmbEnterpriseType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnterpriseType.Location     = new System.Drawing.Point(184, 80);
     this.cmbEnterpriseType.Name         = "cmbEnterpriseType";
     this.cmbEnterpriseType.Size         = new System.Drawing.Size(104, 21);
     this.cmbEnterpriseType.TabIndex     = 21;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(80, 48);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 18;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(360, 16);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 17;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(80, 16);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 16;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(608, 112);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 8;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(184, 48);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(464, 16);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(184, 16);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 1;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(72, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(200, 80);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "会员档案";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.InitializeRow    += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ultraGrid1_InitializeRow);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 200);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(976, 368);
     this.ultraGroupBox2.TabIndex = 2;
     //
     // MemberFreeModify
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1016, 573);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberFreeModify";
     this.Text  = "场次修改";
     this.Load += new System.EventHandler(this.MemberFileQuery_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #9
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();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbEndDateBegin          = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.chkEndDateBegin          = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnModify                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel9              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbEndDate2              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate2              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmdBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel8              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnterpriseType        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbState                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnPrint                 = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraGroupBox3           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGroupBox4           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbSales                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbCustomerService       = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDateBegin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbState)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbCustomerService);
     this.ultraGroupBox1.Controls.Add(this.cmbSales);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDateBegin);
     this.ultraGroupBox1.Controls.Add(this.chkEndDateBegin);
     this.ultraGroupBox1.Controls.Add(this.btnModify);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate2);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.cmbEnterpriseType);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.cmbState);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox3);
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox4);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 16);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(998, 176);
     this.ultraGroupBox1.TabIndex = 0;
     //
     // cmbEndDateBegin
     //
     this.cmbEndDateBegin.BackColor = System.Drawing.SystemColors.Window;
     this.cmbEndDateBegin.DateButtons.Add(dateButton1);
     this.cmbEndDateBegin.Location          = new System.Drawing.Point(685, 48);
     this.cmbEndDateBegin.Name              = "cmbEndDateBegin";
     this.cmbEndDateBegin.NonAutoSizeHeight = 23;
     this.cmbEndDateBegin.Size              = new System.Drawing.Size(144, 21);
     this.cmbEndDateBegin.TabIndex          = 39;
     //
     // chkEndDateBegin
     //
     this.chkEndDateBegin.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDateBegin.Location   = new System.Drawing.Point(565, 48);
     this.chkEndDateBegin.Name       = "chkEndDateBegin";
     this.chkEndDateBegin.Size       = new System.Drawing.Size(120, 20);
     this.chkEndDateBegin.TabIndex   = 38;
     this.chkEndDateBegin.Text       = "开始时间";
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(861, 112);
     this.btnModify.Name        = "btnModify";
     this.btnModify.Size        = new System.Drawing.Size(75, 23);
     this.btnModify.TabIndex    = 37;
     this.btnModify.Text        = "修改";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(24, 112);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 36;
     this.ultraLabel9.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(128, 112);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(104, 21);
     this.cmbMemberRight.TabIndex     = 35;
     //
     // cmbEndDate2
     //
     this.cmbEndDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate2.Location     = new System.Drawing.Point(685, 136);
     this.cmbEndDate2.MaskInput    = "{date} {time}";
     this.cmbEndDate2.Name         = "cmbEndDate2";
     this.cmbEndDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate2.TabIndex     = 32;
     //
     // chkEndDate2
     //
     this.chkEndDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate2.Location    = new System.Drawing.Point(565, 136);
     this.chkEndDate2.Name        = "chkEndDate2";
     this.chkEndDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate2.TabIndex    = 34;
     this.chkEndDate2.Text        = "结束时间";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(685, 112);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmdBeginDate.TabIndex     = 31;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(565, 112);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 33;
     this.chkBeginDate.Text        = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.BackColor = System.Drawing.SystemColors.Window;
     this.cmbEndDate.DateButtons.Add(dateButton2);
     this.cmbEndDate.Location          = new System.Drawing.Point(685, 72);
     this.cmbEndDate.Name              = "cmbEndDate";
     this.cmbEndDate.NonAutoSizeHeight = 23;
     this.cmbEndDate.Size              = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex          = 30;
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(565, 72);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex   = 29;
     this.chkEndDate.Text       = "结束时间";
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(573, 8);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 28;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(296, 112);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 26;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(304, 80);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 24;
     this.ultraLabel6.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(408, 80);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 23;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(24, 80);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 22;
     this.ultraLabel5.Text     = "企业性质:";
     //
     // cmbEnterpriseType
     //
     this.cmbEnterpriseType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnterpriseType.Location     = new System.Drawing.Point(128, 80);
     this.cmbEnterpriseType.Name         = "cmbEnterpriseType";
     this.cmbEnterpriseType.Size         = new System.Drawing.Size(104, 21);
     this.cmbEnterpriseType.TabIndex     = 21;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(861, 80);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 20;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(304, 48);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 19;
     this.ultraLabel4.Text     = "会员状态:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 48);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 18;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(304, 16);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 17;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 16);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 16;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // cmbState
     //
     this.cmbState.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbState.Location     = new System.Drawing.Point(408, 48);
     this.cmbState.Name         = "cmbState";
     this.cmbState.Size         = new System.Drawing.Size(104, 21);
     this.cmbState.TabIndex     = 10;
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(861, 48);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex    = 9;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(861, 16);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 8;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 48);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(408, 16);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 16);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 1;
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Location = new System.Drawing.Point(549, 96);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(296, 64);
     this.ultraGroupBox3.TabIndex = 40;
     this.ultraGroupBox3.Text     = "操作时间段";
     //
     // ultraGroupBox4
     //
     this.ultraGroupBox4.Location = new System.Drawing.Point(549, 32);
     this.ultraGroupBox4.Name     = "ultraGroupBox4";
     this.ultraGroupBox4.Size     = new System.Drawing.Size(296, 64);
     this.ultraGroupBox4.TabIndex = 41;
     this.ultraGroupBox4.Text     = "到期时间段";
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(72, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(200, 80);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "会员档案";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 200);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(976, 368);
     this.ultraGroupBox2.TabIndex = 2;
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(408, 114);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(104, 21);
     this.cmbSales.TabIndex     = 64;
     //
     // cmbCustomerService
     //
     this.cmbCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbCustomerService.Location     = new System.Drawing.Point(685, 10);
     this.cmbCustomerService.Name         = "cmbCustomerService";
     this.cmbCustomerService.Size         = new System.Drawing.Size(144, 21);
     this.cmbCustomerService.TabIndex     = 65;
     //
     // MemberFileQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1183, 573);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberFileQuery";
     this.Text  = Login.constApp.strCardTypeL6Name + "会员档案报表";
     this.Load += new System.EventHandler(this.MemberFileQuery_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDateBegin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbState)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NB");
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADVISESPEC");
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSTYPE");
     Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ISCOUNTCOMFIRM");
     Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_FLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 1186710511);
     Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("LabelTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("冶炼炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool40 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Get");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AddProdiction");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool42 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("printCard");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool44 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WeightPlan_FP));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("冶炼炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool45 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool46 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Get");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("printCard");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool31 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AddProdiction");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("LabelTool1");
     Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance178 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TECHCARDNO");
     Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ORDERNO");
     Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_PLANTIME");
     Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_COMPLETEFLAG");
     Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PERSON");
     Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ORDER");
     Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHEDCOUNT");
     Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance176 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("预报时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool58 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modify");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Up");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Down");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToTop");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool32 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToBotton");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool33 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool50 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool51 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Up");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool52 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Down");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool53 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToTop");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool54 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToBotton");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool55 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool56 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("预报时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool29 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool33 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool(" ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool34 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool59 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modify");
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.Appearance appearance129 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance128 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance127 = new Infragistics.Win.Appearance();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataTable4 = new System.Data.DataTable();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn78 = new System.Data.DataColumn();
     this.dataColumn79 = new System.Data.DataColumn();
     this.dataColumn80 = new System.Data.DataColumn();
     this.dataColumn81 = new System.Data.DataColumn();
     this.dataColumn82 = new System.Data.DataColumn();
     this.dataColumn83 = new System.Data.DataColumn();
     this.dataColumn84 = new System.Data.DataColumn();
     this.dataColumn85 = new System.Data.DataColumn();
     this.dataColumn86 = new System.Data.DataColumn();
     this.dataColumn87 = new System.Data.DataColumn();
     this.dataColumn88 = new System.Data.DataColumn();
     this.dataColumn89 = new System.Data.DataColumn();
     this.dataColumn90 = new System.Data.DataColumn();
     this.dataColumn91 = new System.Data.DataColumn();
     this.dataColumn92 = new System.Data.DataColumn();
     this.dataColumn93 = new System.Data.DataColumn();
     this.dataColumn94 = new System.Data.DataColumn();
     this.dataColumn95 = new System.Data.DataColumn();
     this.dataColumn96 = new System.Data.DataColumn();
     this.dataColumn97 = new System.Data.DataColumn();
     this.dataColumn98 = new System.Data.DataColumn();
     this.dataColumn99 = new System.Data.DataColumn();
     this.dataColumn100 = new System.Data.DataColumn();
     this.dataColumn101 = new System.Data.DataColumn();
     this.dataColumn102 = new System.Data.DataColumn();
     this.dataColumn103 = new System.Data.DataColumn();
     this.dataColumn104 = new System.Data.DataColumn();
     this.dataColumn105 = new System.Data.DataColumn();
     this.dataColumn106 = new System.Data.DataColumn();
     this.dataColumn107 = new System.Data.DataColumn();
     this.dataColumn108 = new System.Data.DataColumn();
     this.dataColumn109 = new System.Data.DataColumn();
     this.dataColumn110 = new System.Data.DataColumn();
     this.dataColumn111 = new System.Data.DataColumn();
     this.dataColumn112 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.panel2 = new System.Windows.Forms.Panel();
     this.cbAnalysisTime = new System.Windows.Forms.CheckBox();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.panel2_Fill_Panel = new System.Windows.Forms.Panel();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this._panel2_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel2_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel2_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel2_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
     this.txtStoveGD1 = new System.Windows.Forms.TextBox();
     this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
     this.dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
     this.ClientArea_Fill_Panel_1 = new System.Windows.Forms.Panel();
     this._ClientArea_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager2 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._ClientArea_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.tbAls = new System.Windows.Forms.TextBox();
     this.tbSb = new System.Windows.Forms.TextBox();
     this.tbTi = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.tbMemo = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.cbTransType = new System.Windows.Forms.ComboBox();
     this.lbTransType = new System.Windows.Forms.Label();
     this.cbUnquanified = new System.Windows.Forms.CheckBox();
     this.cbCountIsConfirm = new System.Windows.Forms.CheckBox();
     this.LxComb = new System.Windows.Forms.ComboBox();
     this.label30 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.tbAs = new System.Windows.Forms.TextBox();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.cbx_SteelSendType = new System.Windows.Forms.ComboBox();
     this.label45 = new System.Windows.Forms.Label();
     this.cbx_OrgUse = new System.Windows.Forms.ComboBox();
     this.label44 = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.label40 = new System.Windows.Forms.Label();
     this.tbx_qt = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tbx_qj = new System.Windows.Forms.TextBox();
     this.tbx_sk = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.tbx_lw = new System.Windows.Forms.TextBox();
     this.tbx_qk = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.tbx_jz = new System.Windows.Forms.TextBox();
     this.tbx_wq = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.tbx_tf = new System.Windows.Forms.TextBox();
     this.cbx_zzjy = new System.Windows.Forms.ComboBox();
     this.label27 = new System.Windows.Forms.Label();
     this.cbYLBB = new System.Windows.Forms.ComboBox();
     this.label26 = new System.Windows.Forms.Label();
     this.chkQY = new System.Windows.Forms.CheckBox();
     this.tbADVSPEC = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txtDDXMH = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txtDDH = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.cbMaterial = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.tbLength = new System.Windows.Forms.TextBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.label21 = new System.Windows.Forms.Label();
     this.tbPerson = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tbCeq = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.tbNb = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.tbMo = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.tbV = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.tbCu = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.tbCr = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.tbNi = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.tbP = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.tbS = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.tbMn = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tbSi = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbC = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.tbCount = new System.Windows.Forms.TextBox();
     this.cbSpec = new System.Windows.Forms.ComboBox();
     this.cbSteelType = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tbCardNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tbStoveNo = new System.Windows.Forms.TextBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
     this.dateTimePicker5 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker6 = new System.Windows.Forms.DateTimePicker();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.panel5 = new System.Windows.Forms.Panel();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.ultraTabPageControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     this.ultraGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     this.ultraPanel3.ClientArea.SuspendLayout();
     this.ultraPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     this.ultraPanel4.SuspendLayout();
     this.ultraPanel5.ClientArea.SuspendLayout();
     this.ultraPanel5.SuspendLayout();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
     this.ultraTabControl2.SuspendLayout();
     this.ultraTabPageControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
     this.ultraGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     this.ultraPanel6.ClientArea.SuspendLayout();
     this.ultraPanel6.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox3);
     this.ultraTabPageControl1.Controls.Add(this.panel2);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl1, null);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 22);
     this.ultraTabPageControl1.Name = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size = new System.Drawing.Size(1000, 379);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox3.Controls.Add(this.dateTimePicker1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox3, null);
     this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox3.Location = new System.Drawing.Point(0, 30);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(1000, 349);
     this.ultraGroupBox3.TabIndex = 12;
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     appearance39.TextHAlignAsString = "Center";
     appearance39.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance39;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(114, 0);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 4;
     appearance40.TextHAlignAsString = "Center";
     appearance40.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance40;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
     appearance41.TextHAlignAsString = "Center";
     appearance41.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance41;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     appearance42.TextHAlignAsString = "Center";
     appearance42.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance42;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     appearance43.TextHAlignAsString = "Center";
     appearance43.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance43;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
     appearance44.TextHAlignAsString = "Center";
     appearance44.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance44;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn6.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     appearance45.TextHAlignAsString = "Center";
     appearance45.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance45;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     appearance46.TextHAlignAsString = "Center";
     appearance46.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance46;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     appearance47.TextHAlignAsString = "Center";
     appearance47.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance47;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn9.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     appearance48.TextHAlignAsString = "Center";
     appearance48.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance48;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     appearance49.TextHAlignAsString = "Center";
     appearance49.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance49;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     appearance50.TextHAlignAsString = "Center";
     appearance50.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance50;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     appearance51.TextHAlignAsString = "Center";
     appearance51.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance51;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     appearance52.TextHAlignAsString = "Center";
     appearance52.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance52;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(43, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     appearance53.TextHAlignAsString = "Center";
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn15.CellAppearance = appearance53;
     ultraGridColumn15.Header.VisiblePosition = 23;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     appearance54.TextHAlignAsString = "Center";
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn16.CellAppearance = appearance54;
     ultraGridColumn16.Header.VisiblePosition = 14;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     appearance55.TextHAlignAsString = "Center";
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn17.CellAppearance = appearance55;
     ultraGridColumn17.Header.VisiblePosition = 15;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     appearance56.TextHAlignAsString = "Center";
     appearance56.TextVAlignAsString = "Middle";
     ultraGridColumn18.CellAppearance = appearance56;
     ultraGridColumn18.Header.VisiblePosition = 16;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(42, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 4;
     appearance57.TextHAlignAsString = "Center";
     appearance57.TextVAlignAsString = "Middle";
     ultraGridColumn19.CellAppearance = appearance57;
     ultraGridColumn19.Header.VisiblePosition = 17;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 4;
     appearance58.TextHAlignAsString = "Center";
     appearance58.TextVAlignAsString = "Middle";
     ultraGridColumn20.CellAppearance = appearance58;
     ultraGridColumn20.Header.VisiblePosition = 18;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 4;
     appearance59.TextHAlignAsString = "Center";
     appearance59.TextVAlignAsString = "Middle";
     ultraGridColumn21.CellAppearance = appearance59;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 50;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 3;
     appearance60.TextHAlignAsString = "Center";
     appearance60.TextVAlignAsString = "Middle";
     ultraGridColumn22.CellAppearance = appearance60;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 48;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 3;
     appearance61.TextHAlignAsString = "Center";
     appearance61.TextVAlignAsString = "Middle";
     ultraGridColumn23.CellAppearance = appearance61;
     ultraGridColumn23.Header.VisiblePosition = 19;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 3;
     appearance62.TextHAlignAsString = "Center";
     appearance62.TextVAlignAsString = "Middle";
     ultraGridColumn24.CellAppearance = appearance62;
     ultraGridColumn24.Header.VisiblePosition = 24;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 49;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 3;
     appearance63.TextHAlignAsString = "Center";
     appearance63.TextVAlignAsString = "Middle";
     ultraGridColumn25.CellAppearance = appearance63;
     ultraGridColumn25.Header.VisiblePosition = 22;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 52;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 53;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn28.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn30.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30});
     ultraGridGroup1.Header.Caption = "化学成分";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 12;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 30;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance64.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance64;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowColSizing = Infragistics.Win.UltraWinGrid.AllowColSizing.Synchronized;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance67.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance67;
     appearance68.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance68;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance69.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance69.TextHAlignAsString = "Center";
     appearance69.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance69;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance70.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance70;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance71.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance71.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance71.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance71.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance71;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 0);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(994, 346);
     this.ultraGrid1.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable4,
     this.dataTable3});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn45,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn58,
     this.dataColumn61,
     this.dataColumn21,
     this.dataColumn19,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "工艺流动卡号";
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "炉号";
     this.dataColumn2.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "钢种";
     this.dataColumn3.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "规格";
     this.dataColumn4.ColumnName = "FS_GP_SPE";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "长度";
     this.dataColumn5.ColumnName = "FN_LENGTH";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "C";
     this.dataColumn6.ColumnName = "FN_GP_C";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "Si";
     this.dataColumn7.ColumnName = "FN_GP_SI";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "Mn";
     this.dataColumn8.ColumnName = "FN_GP_MN";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "S";
     this.dataColumn9.ColumnName = "FN_GP_S";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "P";
     this.dataColumn10.ColumnName = "FN_GP_P";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "Ni";
     this.dataColumn11.ColumnName = "FN_GP_NI";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "Cr";
     this.dataColumn12.ColumnName = "FN_GP_CR";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "Cu";
     this.dataColumn13.ColumnName = "FN_GP_CU";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "V";
     this.dataColumn14.ColumnName = "FN_GP_V";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "Mo";
     this.dataColumn15.ColumnName = "FN_GP_MO";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "Nb";
     this.dataColumn16.ColumnName = "FN_GP_NB";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "Ceq";
     this.dataColumn17.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "条数";
     this.dataColumn18.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "判定员";
     this.dataColumn22.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "分析时间";
     this.dataColumn23.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "建议轧制规格";
     this.dataColumn45.ColumnName = "FS_ADVISESPEC";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "运送方式";
     this.dataColumn54.ColumnName = "FS_TRANSTYPE";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "AS";
     this.dataColumn55.ColumnName = "FN_GP_AS";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "是否确定";
     this.dataColumn58.ColumnName = "FS_ISCOUNTCOMFIRM";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "合格";
     this.dataColumn61.ColumnName = "FS_UNQUALIFIED";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "去向";
     this.dataColumn21.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "备注";
     this.dataColumn19.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "Ti";
     this.dataColumn32.ColumnName = "FN_GP_TI";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "Sb";
     this.dataColumn33.ColumnName = "FN_GP_SB";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "Als";
     this.dataColumn34.ColumnName = "FN_GP_ALS";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn41,
     this.dataColumn20,
     this.dataColumn56});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "工艺流动卡号";
     this.dataColumn25.ColumnName = "FS_TECHCARDNO";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "炉号";
     this.dataColumn26.ColumnName = "FS_STOVENO";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "钢种";
     this.dataColumn27.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "规格";
     this.dataColumn28.ColumnName = "FS_SPEC";
     //
     // dataColumn29
     //
     this.dataColumn29.Caption = "长度";
     this.dataColumn29.ColumnName = "FN_LENGTH";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "条数";
     this.dataColumn30.ColumnName = "FN_COUNT";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "订单号";
     this.dataColumn31.ColumnName = "FS_ORDERNO";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "预报时间";
     this.dataColumn38.ColumnName = "FD_PLANTIME";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "完炉标志";
     this.dataColumn39.ColumnName = "FS_COMPLETEFLAG";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "预报员";
     this.dataColumn41.ColumnName = "FS_PERSON";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "过磅序号";
     this.dataColumn20.ColumnName = "FS_ORDER";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "已计量支数";
     this.dataColumn56.ColumnName = "WEIGHEDCOUNT";
     //
     // dataTable4
     //
     this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn52,
     this.dataColumn78,
     this.dataColumn79,
     this.dataColumn80,
     this.dataColumn81,
     this.dataColumn82,
     this.dataColumn83,
     this.dataColumn84,
     this.dataColumn85,
     this.dataColumn86,
     this.dataColumn87,
     this.dataColumn88,
     this.dataColumn89,
     this.dataColumn90,
     this.dataColumn91,
     this.dataColumn92,
     this.dataColumn93,
     this.dataColumn94,
     this.dataColumn95,
     this.dataColumn96,
     this.dataColumn97,
     this.dataColumn98,
     this.dataColumn99,
     this.dataColumn100,
     this.dataColumn101,
     this.dataColumn102,
     this.dataColumn103,
     this.dataColumn104,
     this.dataColumn105,
     this.dataColumn106,
     this.dataColumn107,
     this.dataColumn108,
     this.dataColumn109,
     this.dataColumn110,
     this.dataColumn111,
     this.dataColumn112});
     this.dataTable4.TableName = "检验数据表";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "炉号";
     //
     // dataColumn78
     //
     this.dataColumn78.ColumnName = "样号";
     //
     // dataColumn79
     //
     this.dataColumn79.ColumnName = "钢种";
     //
     // dataColumn80
     //
     this.dataColumn80.ColumnName = "班次";
     //
     // dataColumn81
     //
     this.dataColumn81.ColumnName = "日期";
     //
     // dataColumn82
     //
     this.dataColumn82.ColumnName = "时间";
     //
     // dataColumn83
     //
     this.dataColumn83.ColumnName = "C";
     //
     // dataColumn84
     //
     this.dataColumn84.ColumnName = "Si";
     //
     // dataColumn85
     //
     this.dataColumn85.ColumnName = "Mn";
     //
     // dataColumn86
     //
     this.dataColumn86.ColumnName = "P";
     //
     // dataColumn87
     //
     this.dataColumn87.ColumnName = "S";
     //
     // dataColumn88
     //
     this.dataColumn88.ColumnName = "Cr";
     //
     // dataColumn89
     //
     this.dataColumn89.ColumnName = "Ni";
     //
     // dataColumn90
     //
     this.dataColumn90.ColumnName = "W";
     //
     // dataColumn91
     //
     this.dataColumn91.ColumnName = "V";
     //
     // dataColumn92
     //
     this.dataColumn92.ColumnName = "Mo";
     //
     // dataColumn93
     //
     this.dataColumn93.ColumnName = "Ti";
     //
     // dataColumn94
     //
     this.dataColumn94.ColumnName = "Cu";
     //
     // dataColumn95
     //
     this.dataColumn95.ColumnName = "Al";
     //
     // dataColumn96
     //
     this.dataColumn96.ColumnName = "B";
     //
     // dataColumn97
     //
     this.dataColumn97.ColumnName = "Co";
     //
     // dataColumn98
     //
     this.dataColumn98.ColumnName = "Sn";
     //
     // dataColumn99
     //
     this.dataColumn99.ColumnName = "Pb";
     //
     // dataColumn100
     //
     this.dataColumn100.ColumnName = "Sb";
     //
     // dataColumn101
     //
     this.dataColumn101.ColumnName = "Bi";
     //
     // dataColumn102
     //
     this.dataColumn102.ColumnName = "Nb";
     //
     // dataColumn103
     //
     this.dataColumn103.ColumnName = "Ca";
     //
     // dataColumn104
     //
     this.dataColumn104.ColumnName = "Mg";
     //
     // dataColumn105
     //
     this.dataColumn105.ColumnName = "Ce";
     //
     // dataColumn106
     //
     this.dataColumn106.ColumnName = "N";
     //
     // dataColumn107
     //
     this.dataColumn107.ColumnName = "Zr";
     //
     // dataColumn108
     //
     this.dataColumn108.ColumnName = "Bs";
     //
     // dataColumn109
     //
     this.dataColumn109.ColumnName = "Ns";
     //
     // dataColumn110
     //
     this.dataColumn110.ColumnName = "Nt";
     //
     // dataColumn111
     //
     this.dataColumn111.ColumnName = "Fe";
     //
     // dataColumn112
     //
     this.dataColumn112.ColumnName = "人员";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn24,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn51});
     this.dataTable3.TableName = "Table3";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "总重量";
     this.dataColumn24.ColumnName = "FN_TOTALWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "总支数";
     this.dataColumn42.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "炉号";
     this.dataColumn43.ColumnName = "FS_STOVENO";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FN_TOTALBILLET";
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(136, 25);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(85, 21);
     this.dateTimePicker1.TabIndex = 741;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.cbAnalysisTime);
     this.panel2.Controls.Add(this.tbQueryStoveNo);
     this.panel2.Controls.Add(this.panel2_Fill_Panel);
     this.panel2.Controls.Add(this.dateTimePicker2);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Left);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Right);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Top);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1000, 30);
     this.panel2.TabIndex = 11;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // cbAnalysisTime
     //
     this.cbAnalysisTime.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbAnalysisTime, null);
     this.cbAnalysisTime.Location = new System.Drawing.Point(13, 7);
     this.cbAnalysisTime.Name = "cbAnalysisTime";
     this.cbAnalysisTime.Size = new System.Drawing.Size(15, 14);
     this.cbAnalysisTime.TabIndex = 742;
     this.cbAnalysisTime.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.cbAnalysisTime, null);
     this.cbAnalysisTime.CheckedChanged += new System.EventHandler(this.cbAnalysisTime_CheckedChanged);
     //
     // tbQueryStoveNo
     //
     this.tbQueryStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryStoveNo, null);
     this.tbQueryStoveNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryStoveNo.Location = new System.Drawing.Point(312, 3);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(76, 21);
     this.tbQueryStoveNo.TabIndex = 742;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // panel2_Fill_Panel
     //
     this.panel2_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel2_Fill_Panel, null);
     this.panel2_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2_Fill_Panel.Location = new System.Drawing.Point(0, 28);
     this.panel2_Fill_Panel.Name = "panel2_Fill_Panel";
     this.panel2_Fill_Panel.Size = new System.Drawing.Size(1000, 2);
     this.panel2_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel2_Fill_Panel, null);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(86, 2);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(85, 21);
     this.dateTimePicker2.TabIndex = 743;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // _panel2_Toolbars_Dock_Area_Left
     //
     this._panel2_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Left, null);
     this._panel2_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel2_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
     this._panel2_Toolbars_Dock_Area_Left.Name = "_panel2_Toolbars_Dock_Area_Left";
     this._panel2_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 2);
     this._panel2_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel2;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     labelTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool19.ControlName = "dateTimePicker1";
     controlContainerTool19.InstanceProps.Width = 144;
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 107;
     controlContainerTool21.ControlName = "tbQueryStoveNo";
     controlContainerTool21.InstanceProps.Width = 110;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool1,
     controlContainerTool19,
     controlContainerTool20,
     controlContainerTool21,
     buttonTool39,
     buttonTool40,
     buttonTool30,
     buttonTool42,
     buttonTool17,
     buttonTool15,
     buttonTool21});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "分析时间";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 144;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "至";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 107;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "查询";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool24.SharedPropsInternal.Caption = "炉号";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Width = 110;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "修改";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool46.SharedPropsInternal.Caption = "获取";
     buttonTool46.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
     buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance13;
     buttonTool16.SharedPropsInternal.Caption = "导出";
     buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool26.SharedPropsInternal.Caption = "打印";
     buttonTool26.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool29.SharedPropsInternal.Caption = "删除";
     buttonTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool31.SharedPropsInternal.Caption = "生成预报";
     buttonTool31.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool46,
     buttonTool16,
     buttonTool26,
     buttonTool29,
     buttonTool31,
     labelTool2});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick_1);
     //
     // _panel2_Toolbars_Dock_Area_Right
     //
     this._panel2_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Right, null);
     this._panel2_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel2_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1000, 28);
     this._panel2_Toolbars_Dock_Area_Right.Name = "_panel2_Toolbars_Dock_Area_Right";
     this._panel2_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 2);
     this._panel2_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Right, null);
     //
     // _panel2_Toolbars_Dock_Area_Top
     //
     this._panel2_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Top, null);
     this._panel2_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel2_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel2_Toolbars_Dock_Area_Top.Name = "_panel2_Toolbars_Dock_Area_Top";
     this._panel2_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1000, 28);
     this._panel2_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Top, null);
     //
     // _panel2_Toolbars_Dock_Area_Bottom
     //
     this._panel2_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Bottom, null);
     this._panel2_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel2_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 30);
     this._panel2_Toolbars_Dock_Area_Bottom.Name = "_panel2_Toolbars_Dock_Area_Bottom";
     this._panel2_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1000, 0);
     this._panel2_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraTabPageControl2
     //
     this.ultraTabPageControl2.Controls.Add(this.ultraGroupBox4);
     this.ultraTabPageControl2.Controls.Add(this.ultraPanel3);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl2, null);
     this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl2.Name = "ultraTabPageControl2";
     this.ultraTabPageControl2.Size = new System.Drawing.Size(1000, 379);
     this.coreBind.SetVerification(this.ultraTabPageControl2, null);
     //
     // ultraGroupBox4
     //
     appearance170.ForeColor = System.Drawing.Color.Red;
     this.ultraGroupBox4.Appearance = appearance170;
     this.ultraGroupBox4.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox4.Controls.Add(this.ultraGrid2);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox4, null);
     this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox4.Location = new System.Drawing.Point(0, 27);
     this.ultraGroupBox4.Name = "ultraGroupBox4";
     this.ultraGroupBox4.Size = new System.Drawing.Size(1000, 352);
     this.ultraGroupBox4.TabIndex = 11;
     this.coreBind.SetVerification(this.ultraGroupBox4, null);
     this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraLabel2
     //
     appearance178.BackColor = System.Drawing.Color.Black;
     this.ultraLabel2.Appearance = appearance178;
     this.coreBind.SetDatabasecommand(this.ultraLabel2, null);
     this.ultraLabel2.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraLabel2.Name = "ultraLabel2";
     this.ultraLabel2.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel2.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraLabel2, null);
     this.ultraLabel2.Visible = false;
     //
     // ultraGrid2
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "Table2";
     this.ultraGrid2.DataSource = this.dataSet1;
     appearance72.TextHAlignAsString = "Center";
     appearance72.TextVAlignAsString = "Middle";
     ultraGridColumn31.CellAppearance = appearance72;
     ultraGridColumn31.Header.VisiblePosition = 0;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     appearance73.TextHAlignAsString = "Center";
     appearance73.TextVAlignAsString = "Middle";
     ultraGridColumn32.CellAppearance = appearance73;
     ultraGridColumn32.Header.VisiblePosition = 1;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
     appearance74.TextHAlignAsString = "Center";
     appearance74.TextVAlignAsString = "Middle";
     ultraGridColumn33.CellAppearance = appearance74;
     ultraGridColumn33.Header.VisiblePosition = 2;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     appearance75.TextHAlignAsString = "Center";
     appearance75.TextVAlignAsString = "Middle";
     ultraGridColumn34.CellAppearance = appearance75;
     ultraGridColumn34.Header.VisiblePosition = 3;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
     appearance76.TextHAlignAsString = "Center";
     appearance76.TextVAlignAsString = "Middle";
     ultraGridColumn35.CellAppearance = appearance76;
     ultraGridColumn35.Header.VisiblePosition = 4;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 4;
     appearance77.TextHAlignAsString = "Center";
     appearance77.TextVAlignAsString = "Middle";
     ultraGridColumn36.CellAppearance = appearance77;
     ultraGridColumn36.Header.VisiblePosition = 5;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     appearance78.TextHAlignAsString = "Center";
     appearance78.TextVAlignAsString = "Middle";
     ultraGridColumn37.CellAppearance = appearance78;
     ultraGridColumn37.Header.VisiblePosition = 6;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     appearance79.TextHAlignAsString = "Center";
     appearance79.TextVAlignAsString = "Middle";
     ultraGridColumn38.CellAppearance = appearance79;
     ultraGridColumn38.Header.VisiblePosition = 7;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     appearance80.TextHAlignAsString = "Center";
     appearance80.TextVAlignAsString = "Middle";
     ultraGridColumn39.CellAppearance = appearance80;
     ultraGridColumn39.Header.VisiblePosition = 8;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     appearance81.TextHAlignAsString = "Center";
     appearance81.TextVAlignAsString = "Middle";
     ultraGridColumn40.CellAppearance = appearance81;
     ultraGridColumn40.Header.VisiblePosition = 9;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     appearance82.TextHAlignAsString = "Center";
     appearance82.TextVAlignAsString = "Middle";
     ultraGridColumn41.CellAppearance = appearance82;
     ultraGridColumn41.Header.VisiblePosition = 10;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     appearance83.TextHAlignAsString = "Center";
     appearance83.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance83;
     ultraGridColumn42.Header.VisiblePosition = 11;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42});
     ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand2.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand2.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand2.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 8;
     appearance87.FontData.BoldAsString = "True";
     this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance87;
     this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance88.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance88;
     appearance89.TextVAlignAsString = "Middle";
     this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance89;
     this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid2.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance90.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance90.TextHAlignAsString = "Center";
     appearance90.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance90;
     this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid2.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid2.DisplayLayout.Override.MinRowHeight = 21;
     appearance91.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance91;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance92.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance92.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance92.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance92.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance92;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid2.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid2.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(3, 0);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(994, 349);
     this.ultraGrid2.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraGrid2, null);
     this.ultraGrid2.DoubleClick += new System.EventHandler(this.ultraGrid2_DoubleClick_1);
     //
     // ultraPanel3
     //
     //
     // ultraPanel3.ClientArea
     //
     this.ultraPanel3.ClientArea.Controls.Add(this.txtStoveGD1);
     this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel1);
     this.ultraPanel3.ClientArea.Controls.Add(this.dateTimePicker4);
     this.ultraPanel3.ClientArea.Controls.Add(this.dateTimePicker3);
     this.ultraPanel3.ClientArea.Controls.Add(this.ClientArea_Fill_Panel_1);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Left);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Right);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Left);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Right);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Top);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Bottom);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Top);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Bottom);
     this.coreBind.SetDatabasecommand(this.ultraPanel3.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel3.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel3, null);
     this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel3.Name = "ultraPanel3";
     this.ultraPanel3.Size = new System.Drawing.Size(1000, 27);
     this.ultraPanel3.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraPanel3, null);
     //
     // txtStoveGD1
     //
     this.coreBind.SetDatabasecommand(this.txtStoveGD1, null);
     this.txtStoveGD1.Location = new System.Drawing.Point(286, 3);
     this.txtStoveGD1.Name = "txtStoveGD1";
     this.txtStoveGD1.Size = new System.Drawing.Size(87, 21);
     this.txtStoveGD1.TabIndex = 5;
     this.coreBind.SetVerification(this.txtStoveGD1, null);
     //
     // ultraLabel1
     //
     appearance176.BackColor = System.Drawing.Color.Red;
     this.ultraLabel1.Appearance = appearance176;
     this.coreBind.SetDatabasecommand(this.ultraLabel1, null);
     this.ultraLabel1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraLabel1.Name = "ultraLabel1";
     this.ultraLabel1.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel1.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraLabel1, null);
     //
     // dateTimePicker4
     //
     this.dateTimePicker4.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker4.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker4, null);
     this.dateTimePicker4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker4.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker4.Location = new System.Drawing.Point(168, 3);
     this.dateTimePicker4.Name = "dateTimePicker4";
     this.dateTimePicker4.Size = new System.Drawing.Size(84, 21);
     this.dateTimePicker4.TabIndex = 743;
     this.coreBind.SetVerification(this.dateTimePicker4, null);
     //
     // dateTimePicker3
     //
     this.dateTimePicker3.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker3.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker3, null);
     this.dateTimePicker3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker3.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker3.Location = new System.Drawing.Point(62, 2);
     this.dateTimePicker3.Name = "dateTimePicker3";
     this.dateTimePicker3.Size = new System.Drawing.Size(85, 21);
     this.dateTimePicker3.TabIndex = 742;
     this.coreBind.SetVerification(this.dateTimePicker3, null);
     //
     // ClientArea_Fill_Panel_1
     //
     this.ClientArea_Fill_Panel_1.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.ClientArea_Fill_Panel_1, null);
     this.ClientArea_Fill_Panel_1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ClientArea_Fill_Panel_1.Location = new System.Drawing.Point(0, 56);
     this.ClientArea_Fill_Panel_1.Name = "ClientArea_Fill_Panel_1";
     this.ClientArea_Fill_Panel_1.Size = new System.Drawing.Size(1000, 0);
     this.ClientArea_Fill_Panel_1.TabIndex = 0;
     this.coreBind.SetVerification(this.ClientArea_Fill_Panel_1, null);
     //
     // _ClientArea_Toolbars_Dock_Area_Left
     //
     this._ClientArea_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Left, null);
     this._ClientArea_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._ClientArea_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 56);
     this._ClientArea_Toolbars_Dock_Area_Left.Name = "_ClientArea_Toolbars_Dock_Area_Left";
     this._ClientArea_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager2
     //
     this.ultraToolbarsManager2.DesignerFlags = 1;
     this.ultraToolbarsManager2.DockWithinContainer = this.ultraPanel3.ClientArea;
     this.ultraToolbarsManager2.LockToolbars = true;
     this.ultraToolbarsManager2.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager2.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 0;
     ultraToolbar2.FloatingSize = new System.Drawing.Size(316, 62);
     controlContainerTool5.ControlName = "dateTimePicker3";
     controlContainerTool5.InstanceProps.Width = 144;
     controlContainerTool6.ControlName = "dateTimePicker4";
     controlContainerTool6.InstanceProps.Width = 106;
     controlContainerTool12.ControlName = "txtStoveGD1";
     controlContainerTool12.InstanceProps.Width = 121;
     buttonTool33.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool5,
     controlContainerTool6,
     controlContainerTool12,
     buttonTool5,
     buttonTool58,
     buttonTool6,
     buttonTool18,
     buttonTool22,
     buttonTool24,
     buttonTool32,
     buttonTool33});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager2.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar2});
     appearance113.Image = ((object)(resources.GetObject("appearance113.Image")));
     buttonTool50.SharedPropsInternal.AppearancesSmall.Appearance = appearance113;
     buttonTool50.SharedPropsInternal.Caption = "删除";
     buttonTool50.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool51.SharedPropsInternal.Caption = "上移";
     buttonTool51.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool52.SharedPropsInternal.Caption = "下移";
     buttonTool52.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool53.SharedPropsInternal.Caption = "置顶";
     buttonTool53.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool54.SharedPropsInternal.Caption = "置底";
     buttonTool54.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool55.SharedPropsInternal.Caption = "查询";
     buttonTool55.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance114.Image = ((object)(resources.GetObject("appearance114.Image")));
     buttonTool56.SharedPropsInternal.AppearancesSmall.Appearance = appearance114;
     buttonTool56.SharedPropsInternal.Caption = "导出";
     buttonTool56.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool15.ControlName = "dateTimePicker3";
     controlContainerTool15.SharedPropsInternal.Caption = "预报时间";
     controlContainerTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool15.SharedPropsInternal.Width = 144;
     controlContainerTool29.ControlName = "dateTimePicker4";
     controlContainerTool29.SharedPropsInternal.Caption = "至";
     controlContainerTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool29.SharedPropsInternal.Width = 106;
     controlContainerTool33.SharedPropsInternal.Caption = "abc";
     controlContainerTool34.ControlName = "txtStoveGD1";
     controlContainerTool34.SharedPropsInternal.Caption = "炉号";
     controlContainerTool34.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool34.SharedPropsInternal.Width = 121;
     buttonTool59.SharedPropsInternal.Caption = "强制完炉";
     buttonTool59.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager2.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool50,
     buttonTool51,
     buttonTool52,
     buttonTool53,
     buttonTool54,
     buttonTool55,
     buttonTool56,
     controlContainerTool15,
     controlContainerTool29,
     controlContainerTool33,
     controlContainerTool34,
     buttonTool59});
     this.ultraToolbarsManager2.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager2_ToolClick);
     //
     // _ClientArea_Toolbars_Dock_Area_Right
     //
     this._ClientArea_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Right, null);
     this._ClientArea_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._ClientArea_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1000, 56);
     this._ClientArea_Toolbars_Dock_Area_Right.Name = "_ClientArea_Toolbars_Dock_Area_Right";
     this._ClientArea_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Right, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Left
     //
     this._ClientArea_Toolbars_Dock_Area_1_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Left, null);
     this._ClientArea_Toolbars_Dock_Area_1_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._ClientArea_Toolbars_Dock_Area_1_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Left.Location = new System.Drawing.Point(0, 56);
     this._ClientArea_Toolbars_Dock_Area_1_Left.Name = "_ClientArea_Toolbars_Dock_Area_1_Left";
     this._ClientArea_Toolbars_Dock_Area_1_Left.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Left.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Left, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Right
     //
     this._ClientArea_Toolbars_Dock_Area_1_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Right, null);
     this._ClientArea_Toolbars_Dock_Area_1_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._ClientArea_Toolbars_Dock_Area_1_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Right.Location = new System.Drawing.Point(1000, 56);
     this._ClientArea_Toolbars_Dock_Area_1_Right.Name = "_ClientArea_Toolbars_Dock_Area_1_Right";
     this._ClientArea_Toolbars_Dock_Area_1_Right.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Right.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Right, null);
     //
     // _ClientArea_Toolbars_Dock_Area_Top
     //
     this._ClientArea_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Top, null);
     this._ClientArea_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._ClientArea_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 28);
     this._ClientArea_Toolbars_Dock_Area_Top.Name = "_ClientArea_Toolbars_Dock_Area_Top";
     this._ClientArea_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1000, 28);
     this._ClientArea_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Top, null);
     //
     // _ClientArea_Toolbars_Dock_Area_Bottom
     //
     this._ClientArea_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Bottom, null);
     this._ClientArea_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._ClientArea_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 27);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_Bottom";
     this._ClientArea_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1000, 0);
     this._ClientArea_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Bottom, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Top
     //
     this._ClientArea_Toolbars_Dock_Area_1_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Top, null);
     this._ClientArea_Toolbars_Dock_Area_1_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._ClientArea_Toolbars_Dock_Area_1_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Top.Location = new System.Drawing.Point(0, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Top.Name = "_ClientArea_Toolbars_Dock_Area_1_Top";
     this._ClientArea_Toolbars_Dock_Area_1_Top.Size = new System.Drawing.Size(1000, 28);
     this._ClientArea_Toolbars_Dock_Area_1_Top.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Top, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Bottom
     //
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Bottom, null);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Location = new System.Drawing.Point(0, 27);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_1_Bottom";
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Size = new System.Drawing.Size(1000, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Bottom, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.tbAls);
     this.ultraGroupBox1.Controls.Add(this.tbSb);
     this.ultraGroupBox1.Controls.Add(this.tbTi);
     this.ultraGroupBox1.Controls.Add(this.label32);
     this.ultraGroupBox1.Controls.Add(this.label31);
     this.ultraGroupBox1.Controls.Add(this.label29);
     this.ultraGroupBox1.Controls.Add(this.tbMemo);
     this.ultraGroupBox1.Controls.Add(this.label20);
     this.ultraGroupBox1.Controls.Add(this.cbTransType);
     this.ultraGroupBox1.Controls.Add(this.lbTransType);
     this.ultraGroupBox1.Controls.Add(this.cbUnquanified);
     this.ultraGroupBox1.Controls.Add(this.cbCountIsConfirm);
     this.ultraGroupBox1.Controls.Add(this.LxComb);
     this.ultraGroupBox1.Controls.Add(this.label30);
     this.ultraGroupBox1.Controls.Add(this.label28);
     this.ultraGroupBox1.Controls.Add(this.tbAs);
     this.ultraGroupBox1.Controls.Add(this.comboBox1);
     this.ultraGroupBox1.Controls.Add(this.cbx_SteelSendType);
     this.ultraGroupBox1.Controls.Add(this.label45);
     this.ultraGroupBox1.Controls.Add(this.cbx_OrgUse);
     this.ultraGroupBox1.Controls.Add(this.label44);
     this.ultraGroupBox1.Controls.Add(this.panel4);
     this.ultraGroupBox1.Controls.Add(this.cbx_zzjy);
     this.ultraGroupBox1.Controls.Add(this.label27);
     this.ultraGroupBox1.Controls.Add(this.cbYLBB);
     this.ultraGroupBox1.Controls.Add(this.label26);
     this.ultraGroupBox1.Controls.Add(this.chkQY);
     this.ultraGroupBox1.Controls.Add(this.tbADVSPEC);
     this.ultraGroupBox1.Controls.Add(this.label25);
     this.ultraGroupBox1.Controls.Add(this.txtDDXMH);
     this.ultraGroupBox1.Controls.Add(this.label24);
     this.ultraGroupBox1.Controls.Add(this.txtDDH);
     this.ultraGroupBox1.Controls.Add(this.label23);
     this.ultraGroupBox1.Controls.Add(this.cbMaterial);
     this.ultraGroupBox1.Controls.Add(this.label22);
     this.ultraGroupBox1.Controls.Add(this.tbLength);
     this.ultraGroupBox1.Controls.Add(this.checkBox1);
     this.ultraGroupBox1.Controls.Add(this.label21);
     this.ultraGroupBox1.Controls.Add(this.tbPerson);
     this.ultraGroupBox1.Controls.Add(this.label19);
     this.ultraGroupBox1.Controls.Add(this.label18);
     this.ultraGroupBox1.Controls.Add(this.tbCeq);
     this.ultraGroupBox1.Controls.Add(this.label17);
     this.ultraGroupBox1.Controls.Add(this.tbNb);
     this.ultraGroupBox1.Controls.Add(this.label16);
     this.ultraGroupBox1.Controls.Add(this.tbMo);
     this.ultraGroupBox1.Controls.Add(this.label15);
     this.ultraGroupBox1.Controls.Add(this.tbV);
     this.ultraGroupBox1.Controls.Add(this.label14);
     this.ultraGroupBox1.Controls.Add(this.tbCu);
     this.ultraGroupBox1.Controls.Add(this.label13);
     this.ultraGroupBox1.Controls.Add(this.tbCr);
     this.ultraGroupBox1.Controls.Add(this.label12);
     this.ultraGroupBox1.Controls.Add(this.tbNi);
     this.ultraGroupBox1.Controls.Add(this.label11);
     this.ultraGroupBox1.Controls.Add(this.tbP);
     this.ultraGroupBox1.Controls.Add(this.label10);
     this.ultraGroupBox1.Controls.Add(this.tbS);
     this.ultraGroupBox1.Controls.Add(this.label9);
     this.ultraGroupBox1.Controls.Add(this.tbMn);
     this.ultraGroupBox1.Controls.Add(this.label8);
     this.ultraGroupBox1.Controls.Add(this.tbSi);
     this.ultraGroupBox1.Controls.Add(this.label7);
     this.ultraGroupBox1.Controls.Add(this.label6);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.tbC);
     this.ultraGroupBox1.Controls.Add(this.label4);
     this.ultraGroupBox1.Controls.Add(this.tbCount);
     this.ultraGroupBox1.Controls.Add(this.cbSpec);
     this.ultraGroupBox1.Controls.Add(this.cbSteelType);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.tbCardNo);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.tbStoveNo);
     this.ultraGroupBox1.Controls.Add(this.textBox1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox1.Location = new System.Drawing.Point(3, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(996, 189);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "数据录入";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // tbAls
     //
     this.tbAls.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbAls, null);
     this.tbAls.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbAls.Location = new System.Drawing.Point(652, 80);
     this.tbAls.Name = "tbAls";
     this.tbAls.ReadOnly = true;
     this.tbAls.Size = new System.Drawing.Size(38, 21);
     this.tbAls.TabIndex = 793;
     this.tbAls.Text = "0";
     this.tbAls.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbAls, null);
     //
     // tbSb
     //
     this.tbSb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbSb, null);
     this.tbSb.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbSb.Location = new System.Drawing.Point(615, 80);
     this.tbSb.Name = "tbSb";
     this.tbSb.ReadOnly = true;
     this.tbSb.Size = new System.Drawing.Size(38, 21);
     this.tbSb.TabIndex = 792;
     this.tbSb.Text = "0";
     this.tbSb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbSb, null);
     //
     // tbTi
     //
     this.tbTi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbTi, null);
     this.tbTi.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbTi.Location = new System.Drawing.Point(578, 80);
     this.tbTi.Name = "tbTi";
     this.tbTi.ReadOnly = true;
     this.tbTi.Size = new System.Drawing.Size(38, 21);
     this.tbTi.TabIndex = 791;
     this.tbTi.Text = "0";
     this.tbTi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbTi, null);
     //
     // label32
     //
     this.label32.BackColor = System.Drawing.Color.Transparent;
     this.label32.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label32, null);
     this.label32.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label32.Location = new System.Drawing.Point(652, 58);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(38, 22);
     this.label32.TabIndex = 790;
     this.label32.Text = "Als";
     this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label32, null);
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label31, null);
     this.label31.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label31.Location = new System.Drawing.Point(615, 58);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(38, 22);
     this.label31.TabIndex = 789;
     this.label31.Text = "Sb";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label31, null);
     //
     // label29
     //
     this.label29.BackColor = System.Drawing.Color.Transparent;
     this.label29.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label29, null);
     this.label29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label29.Location = new System.Drawing.Point(578, 58);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(38, 22);
     this.label29.TabIndex = 788;
     this.label29.Text = "Ti";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label29, null);
     //
     // tbMemo
     //
     this.coreBind.SetDatabasecommand(this.tbMemo, null);
     this.tbMemo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbMemo.Location = new System.Drawing.Point(593, 108);
     this.tbMemo.MaxLength = 4;
     this.tbMemo.Name = "tbMemo";
     this.tbMemo.Size = new System.Drawing.Size(80, 21);
     this.tbMemo.TabIndex = 787;
     this.coreBind.SetVerification(this.tbMemo, null);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label20, null);
     this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label20.Location = new System.Drawing.Point(550, 114);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(29, 12);
     this.label20.TabIndex = 786;
     this.label20.Text = "备注";
     this.coreBind.SetVerification(this.label20, null);
     //
     // cbTransType
     //
     this.coreBind.SetDatabasecommand(this.cbTransType, null);
     this.cbTransType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTransType.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbTransType.FormattingEnabled = true;
     this.cbTransType.Location = new System.Drawing.Point(883, 144);
     this.cbTransType.Name = "cbTransType";
     this.cbTransType.Size = new System.Drawing.Size(97, 23);
     this.cbTransType.TabIndex = 785;
     this.coreBind.SetVerification(this.cbTransType, null);
     //
     // lbTransType
     //
     this.lbTransType.AutoSize = true;
     this.lbTransType.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.lbTransType, null);
     this.lbTransType.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbTransType.Location = new System.Drawing.Point(828, 148);
     this.lbTransType.Name = "lbTransType";
     this.lbTransType.Size = new System.Drawing.Size(55, 15);
     this.lbTransType.TabIndex = 784;
     this.lbTransType.Text = "运送方式";
     this.coreBind.SetVerification(this.lbTransType, null);
     //
     // cbUnquanified
     //
     this.cbUnquanified.AutoSize = true;
     this.cbUnquanified.BackColor = System.Drawing.Color.Transparent;
     this.cbUnquanified.Checked = true;
     this.cbUnquanified.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbUnquanified, null);
     this.cbUnquanified.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbUnquanified.Location = new System.Drawing.Point(764, 73);
     this.cbUnquanified.Name = "cbUnquanified";
     this.cbUnquanified.Size = new System.Drawing.Size(48, 16);
     this.cbUnquanified.TabIndex = 783;
     this.cbUnquanified.Text = "合格";
     this.cbUnquanified.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbUnquanified, null);
     //
     // cbCountIsConfirm
     //
     this.cbCountIsConfirm.AutoSize = true;
     this.cbCountIsConfirm.BackColor = System.Drawing.Color.Transparent;
     this.cbCountIsConfirm.Checked = true;
     this.cbCountIsConfirm.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbCountIsConfirm, null);
     this.cbCountIsConfirm.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbCountIsConfirm.Location = new System.Drawing.Point(675, 2);
     this.cbCountIsConfirm.Name = "cbCountIsConfirm";
     this.cbCountIsConfirm.Size = new System.Drawing.Size(96, 16);
     this.cbCountIsConfirm.TabIndex = 782;
     this.cbCountIsConfirm.Text = "支数是否确定";
     this.cbCountIsConfirm.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbCountIsConfirm, null);
     this.cbCountIsConfirm.Visible = false;
     //
     // LxComb
     //
     this.coreBind.SetDatabasecommand(this.LxComb, null);
     this.LxComb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.LxComb.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.LxComb.FormattingEnabled = true;
     this.LxComb.Location = new System.Drawing.Point(880, 107);
     this.LxComb.Name = "LxComb";
     this.LxComb.Size = new System.Drawing.Size(97, 23);
     this.LxComb.TabIndex = 781;
     this.coreBind.SetVerification(this.LxComb, null);
     this.LxComb.SelectedIndexChanged += new System.EventHandler(this.LxComb_SelectedIndexChanged);
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label30, null);
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label30.Location = new System.Drawing.Point(848, 110);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(31, 15);
     this.label30.TabIndex = 780;
     this.label30.Text = "去向";
     this.coreBind.SetVerification(this.label30, null);
     //
     // label28
     //
     this.label28.BackColor = System.Drawing.Color.Transparent;
     this.label28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label28, null);
     this.label28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label28.Location = new System.Drawing.Point(502, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(38, 22);
     this.label28.TabIndex = 777;
     this.label28.Text = "As";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label28, null);
     //
     // tbAs
     //
     this.tbAs.BackColor = System.Drawing.SystemColors.Control;
     this.tbAs.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbAs, null);
     this.tbAs.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbAs.Location = new System.Drawing.Point(502, 80);
     this.tbAs.Name = "tbAs";
     this.tbAs.ReadOnly = true;
     this.tbAs.Size = new System.Drawing.Size(38, 21);
     this.tbAs.TabIndex = 776;
     this.tbAs.Text = "0";
     this.tbAs.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbAs, null);
     //
     // comboBox1
     //
     this.coreBind.SetDatabasecommand(this.comboBox1, null);
     this.comboBox1.Font = new System.Drawing.Font("宋体", 9F);
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "热送",
     "冷送"});
     this.comboBox1.Location = new System.Drawing.Point(800, 197);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(110, 20);
     this.comboBox1.TabIndex = 775;
     this.coreBind.SetVerification(this.comboBox1, null);
     this.comboBox1.Visible = false;
     //
     // cbx_SteelSendType
     //
     this.coreBind.SetDatabasecommand(this.cbx_SteelSendType, null);
     this.cbx_SteelSendType.Font = new System.Drawing.Font("宋体", 9F);
     this.cbx_SteelSendType.FormattingEnabled = true;
     this.cbx_SteelSendType.Items.AddRange(new object[] {
     "热送",
     "冷送"});
     this.cbx_SteelSendType.Location = new System.Drawing.Point(800, 197);
     this.cbx_SteelSendType.Name = "cbx_SteelSendType";
     this.cbx_SteelSendType.Size = new System.Drawing.Size(110, 20);
     this.cbx_SteelSendType.TabIndex = 775;
     this.coreBind.SetVerification(this.cbx_SteelSendType, null);
     this.cbx_SteelSendType.Visible = false;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label45, null);
     this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label45.Location = new System.Drawing.Point(747, 201);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(53, 12);
     this.label45.TabIndex = 774;
     this.label45.Text = "送钢状态";
     this.coreBind.SetVerification(this.label45, null);
     this.label45.Visible = false;
     //
     // cbx_OrgUse
     //
     this.coreBind.SetDatabasecommand(this.cbx_OrgUse, null);
     this.cbx_OrgUse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbx_OrgUse.FormattingEnabled = true;
     this.cbx_OrgUse.Items.AddRange(new object[] {
     "是",
     "否"});
     this.cbx_OrgUse.Location = new System.Drawing.Point(688, 201);
     this.cbx_OrgUse.Name = "cbx_OrgUse";
     this.cbx_OrgUse.Size = new System.Drawing.Size(45, 20);
     this.cbx_OrgUse.TabIndex = 773;
     this.cbx_OrgUse.Text = "是";
     this.coreBind.SetVerification(this.cbx_OrgUse, null);
     this.cbx_OrgUse.Visible = false;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label44, null);
     this.label44.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label44.Location = new System.Drawing.Point(608, 205);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(77, 12);
     this.label44.TabIndex = 772;
     this.label44.Text = "是否组织利用";
     this.coreBind.SetVerification(this.label44, null);
     this.label44.Visible = false;
     //
     // panel4
     //
     this.panel4.AutoSize = true;
     this.panel4.BackColor = System.Drawing.Color.MediumTurquoise;
     this.panel4.Controls.Add(this.label40);
     this.panel4.Controls.Add(this.tbx_qt);
     this.panel4.Controls.Add(this.label35);
     this.panel4.Controls.Add(this.label41);
     this.panel4.Controls.Add(this.tbx_qj);
     this.panel4.Controls.Add(this.tbx_sk);
     this.panel4.Controls.Add(this.label36);
     this.panel4.Controls.Add(this.label42);
     this.panel4.Controls.Add(this.tbx_lw);
     this.panel4.Controls.Add(this.tbx_qk);
     this.panel4.Controls.Add(this.label37);
     this.panel4.Controls.Add(this.label43);
     this.panel4.Controls.Add(this.tbx_jz);
     this.panel4.Controls.Add(this.tbx_wq);
     this.panel4.Controls.Add(this.label38);
     this.panel4.Controls.Add(this.label39);
     this.panel4.Controls.Add(this.tbx_tf);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Location = new System.Drawing.Point(9, 140);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(811, 30);
     this.panel4.TabIndex = 755;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label40, null);
     this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label40.Location = new System.Drawing.Point(700, 6);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(29, 12);
     this.label40.TabIndex = 794;
     this.label40.Text = "其它";
     this.coreBind.SetVerification(this.label40, null);
     //
     // tbx_qt
     //
     this.coreBind.SetDatabasecommand(this.tbx_qt, null);
     this.tbx_qt.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_qt.Location = new System.Drawing.Point(731, 2);
     this.tbx_qt.Name = "tbx_qt";
     this.tbx_qt.Size = new System.Drawing.Size(33, 21);
     this.tbx_qt.TabIndex = 793;
     this.tbx_qt.Text = "0";
     this.coreBind.SetVerification(this.tbx_qt, null);
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label35, null);
     this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label35.Location = new System.Drawing.Point(10, 6);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(89, 12);
     this.label35.TabIndex = 770;
     this.label35.Text = "不合格品情况:";
     this.coreBind.SetVerification(this.label35, null);
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label41, null);
     this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label41.Location = new System.Drawing.Point(612, 6);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(29, 12);
     this.label41.TabIndex = 792;
     this.label41.Text = "缩孔";
     this.coreBind.SetVerification(this.label41, null);
     //
     // tbx_qj
     //
     this.coreBind.SetDatabasecommand(this.tbx_qj, null);
     this.tbx_qj.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_qj.Location = new System.Drawing.Point(138, 2);
     this.tbx_qj.Name = "tbx_qj";
     this.tbx_qj.Size = new System.Drawing.Size(33, 21);
     this.tbx_qj.TabIndex = 779;
     this.tbx_qj.Text = "0";
     this.coreBind.SetVerification(this.tbx_qj, null);
     //
     // tbx_sk
     //
     this.coreBind.SetDatabasecommand(this.tbx_sk, null);
     this.tbx_sk.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_sk.Location = new System.Drawing.Point(643, 2);
     this.tbx_sk.Name = "tbx_sk";
     this.tbx_sk.Size = new System.Drawing.Size(33, 21);
     this.tbx_sk.TabIndex = 791;
     this.tbx_sk.Text = "0";
     this.coreBind.SetVerification(this.tbx_sk, null);
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label36, null);
     this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label36.Location = new System.Drawing.Point(107, 6);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(29, 12);
     this.label36.TabIndex = 780;
     this.label36.Text = "重接";
     this.coreBind.SetVerification(this.label36, null);
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label42, null);
     this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label42.Location = new System.Drawing.Point(527, 6);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(29, 12);
     this.label42.TabIndex = 790;
     this.label42.Text = "气孔";
     this.coreBind.SetVerification(this.label42, null);
     //
     // tbx_lw
     //
     this.coreBind.SetDatabasecommand(this.tbx_lw, null);
     this.tbx_lw.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_lw.Location = new System.Drawing.Point(218, 2);
     this.tbx_lw.Name = "tbx_lw";
     this.tbx_lw.Size = new System.Drawing.Size(33, 21);
     this.tbx_lw.TabIndex = 781;
     this.tbx_lw.Text = "0";
     this.coreBind.SetVerification(this.tbx_lw, null);
     //
     // tbx_qk
     //
     this.coreBind.SetDatabasecommand(this.tbx_qk, null);
     this.tbx_qk.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_qk.Location = new System.Drawing.Point(558, 2);
     this.tbx_qk.Name = "tbx_qk";
     this.tbx_qk.Size = new System.Drawing.Size(33, 21);
     this.tbx_qk.TabIndex = 789;
     this.tbx_qk.Text = "0";
     this.coreBind.SetVerification(this.tbx_qk, null);
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label37, null);
     this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label37.Location = new System.Drawing.Point(187, 6);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(29, 12);
     this.label37.TabIndex = 782;
     this.label37.Text = "裂纹";
     this.coreBind.SetVerification(this.label37, null);
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label43, null);
     this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label43.Location = new System.Drawing.Point(447, 6);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(29, 12);
     this.label43.TabIndex = 788;
     this.label43.Text = "弯曲";
     this.coreBind.SetVerification(this.label43, null);
     //
     // tbx_jz
     //
     this.coreBind.SetDatabasecommand(this.tbx_jz, null);
     this.tbx_jz.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_jz.Location = new System.Drawing.Point(303, 2);
     this.tbx_jz.Name = "tbx_jz";
     this.tbx_jz.Size = new System.Drawing.Size(33, 21);
     this.tbx_jz.TabIndex = 783;
     this.tbx_jz.Text = "0";
     this.coreBind.SetVerification(this.tbx_jz, null);
     //
     // tbx_wq
     //
     this.coreBind.SetDatabasecommand(this.tbx_wq, null);
     this.tbx_wq.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_wq.Location = new System.Drawing.Point(478, 2);
     this.tbx_wq.Name = "tbx_wq";
     this.tbx_wq.Size = new System.Drawing.Size(33, 21);
     this.tbx_wq.TabIndex = 787;
     this.tbx_wq.Text = "0";
     this.coreBind.SetVerification(this.tbx_wq, null);
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label38, null);
     this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label38.Location = new System.Drawing.Point(272, 6);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(29, 12);
     this.label38.TabIndex = 784;
     this.label38.Text = "夹杂";
     this.coreBind.SetVerification(this.label38, null);
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label39, null);
     this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label39.Location = new System.Drawing.Point(360, 6);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(29, 12);
     this.label39.TabIndex = 786;
     this.label39.Text = "脱方";
     this.coreBind.SetVerification(this.label39, null);
     //
     // tbx_tf
     //
     this.coreBind.SetDatabasecommand(this.tbx_tf, null);
     this.tbx_tf.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbx_tf.Location = new System.Drawing.Point(391, 2);
     this.tbx_tf.Name = "tbx_tf";
     this.tbx_tf.Size = new System.Drawing.Size(33, 21);
     this.tbx_tf.TabIndex = 785;
     this.tbx_tf.Text = "0";
     this.coreBind.SetVerification(this.tbx_tf, null);
     //
     // cbx_zzjy
     //
     this.coreBind.SetDatabasecommand(this.cbx_zzjy, null);
     this.cbx_zzjy.Font = new System.Drawing.Font("宋体", 9F);
     this.cbx_zzjy.FormattingEnabled = true;
     this.cbx_zzjy.Items.AddRange(new object[] {
     "热轧",
     "优化",
     "热轧和优化"});
     this.cbx_zzjy.Location = new System.Drawing.Point(61, 109);
     this.cbx_zzjy.Name = "cbx_zzjy";
     this.cbx_zzjy.Size = new System.Drawing.Size(80, 20);
     this.cbx_zzjy.TabIndex = 754;
     this.coreBind.SetVerification(this.cbx_zzjy, null);
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label27, null);
     this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label27.Location = new System.Drawing.Point(9, 114);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(53, 12);
     this.label27.TabIndex = 753;
     this.label27.Text = "轧制建议";
     this.coreBind.SetVerification(this.label27, null);
     //
     // cbYLBB
     //
     this.coreBind.SetDatabasecommand(this.cbYLBB, null);
     this.cbYLBB.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbYLBB.FormattingEnabled = true;
     this.cbYLBB.Items.AddRange(new object[] {
     "",
     "甲",
     "乙",
     "丙",
     "丁"});
     this.cbYLBB.Location = new System.Drawing.Point(184, 109);
     this.cbYLBB.Name = "cbYLBB";
     this.cbYLBB.Size = new System.Drawing.Size(80, 20);
     this.cbYLBB.TabIndex = 751;
     this.coreBind.SetVerification(this.cbYLBB, null);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label26, null);
     this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label26.Location = new System.Drawing.Point(153, 114);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(29, 12);
     this.label26.TabIndex = 750;
     this.label26.Text = "班别";
     this.coreBind.SetVerification(this.label26, null);
     //
     // chkQY
     //
     this.chkQY.AutoSize = true;
     this.chkQY.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.chkQY, null);
     this.chkQY.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.chkQY.Location = new System.Drawing.Point(705, 73);
     this.chkQY.Name = "chkQY";
     this.chkQY.Size = new System.Drawing.Size(60, 16);
     this.chkQY.TabIndex = 749;
     this.chkQY.Text = "取样钢";
     this.chkQY.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.chkQY, null);
     this.chkQY.CheckedChanged += new System.EventHandler(this.chkQY_CheckedChanged);
     //
     // tbADVSPEC
     //
     this.coreBind.SetDatabasecommand(this.tbADVSPEC, null);
     this.tbADVSPEC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbADVSPEC.Location = new System.Drawing.Point(885, 67);
     this.tbADVSPEC.Name = "tbADVSPEC";
     this.tbADVSPEC.Size = new System.Drawing.Size(95, 21);
     this.tbADVSPEC.TabIndex = 748;
     this.coreBind.SetVerification(this.tbADVSPEC, null);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label25.Location = new System.Drawing.Point(806, 74);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(77, 12);
     this.label25.TabIndex = 747;
     this.label25.Text = "建议轧制规格";
     this.coreBind.SetVerification(this.label25, null);
     //
     // txtDDXMH
     //
     this.coreBind.SetDatabasecommand(this.txtDDXMH, null);
     this.txtDDXMH.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtDDXMH.Location = new System.Drawing.Point(454, 108);
     this.txtDDXMH.MaxLength = 4;
     this.txtDDXMH.Name = "txtDDXMH";
     this.txtDDXMH.Size = new System.Drawing.Size(80, 21);
     this.txtDDXMH.TabIndex = 746;
     this.coreBind.SetVerification(this.txtDDXMH, null);
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label24, null);
     this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label24.Location = new System.Drawing.Point(411, 114);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(41, 12);
     this.label24.TabIndex = 745;
     this.label24.Text = "项目号";
     this.coreBind.SetVerification(this.label24, null);
     //
     // txtDDH
     //
     this.coreBind.SetDatabasecommand(this.txtDDH, null);
     this.txtDDH.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtDDH.Location = new System.Drawing.Point(317, 108);
     this.txtDDH.MaxLength = 12;
     this.txtDDH.Name = "txtDDH";
     this.txtDDH.Size = new System.Drawing.Size(80, 21);
     this.txtDDH.TabIndex = 744;
     this.coreBind.SetVerification(this.txtDDH, null);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label23.Location = new System.Drawing.Point(830, 33);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 12);
     this.label23.TabIndex = 743;
     this.label23.Text = "物料名称";
     this.coreBind.SetVerification(this.label23, null);
     //
     // cbMaterial
     //
     this.coreBind.SetDatabasecommand(this.cbMaterial, null);
     this.cbMaterial.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbMaterial.FormattingEnabled = true;
     this.cbMaterial.Items.AddRange(new object[] {
     "方坯"});
     this.cbMaterial.Location = new System.Drawing.Point(885, 30);
     this.cbMaterial.Name = "cbMaterial";
     this.cbMaterial.Size = new System.Drawing.Size(95, 20);
     this.cbMaterial.TabIndex = 742;
     this.coreBind.SetVerification(this.cbMaterial, null);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label22, null);
     this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label22.Location = new System.Drawing.Point(276, 114);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(41, 12);
     this.label22.TabIndex = 741;
     this.label22.Text = "订单号";
     this.coreBind.SetVerification(this.label22, null);
     //
     // tbLength
     //
     this.coreBind.SetDatabasecommand(this.tbLength, null);
     this.tbLength.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbLength.Location = new System.Drawing.Point(633, 25);
     this.tbLength.Name = "tbLength";
     this.tbLength.Size = new System.Drawing.Size(70, 21);
     this.tbLength.TabIndex = 739;
     this.coreBind.SetVerification(this.tbLength, null);
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.BackColor = System.Drawing.Color.Transparent;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.checkBox1, null);
     this.checkBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox1.Location = new System.Drawing.Point(782, 2);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 738;
     this.checkBox1.Text = "是否辊道";
     this.checkBox1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.checkBox1, null);
     this.checkBox1.Visible = false;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label21, null);
     this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label21.Location = new System.Drawing.Point(697, 113);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 12);
     this.label21.TabIndex = 737;
     this.label21.Text = "判定员";
     this.coreBind.SetVerification(this.label21, null);
     //
     // tbPerson
     //
     this.tbPerson.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.tbPerson, null);
     this.tbPerson.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbPerson.ForeColor = System.Drawing.SystemColors.WindowText;
     this.tbPerson.Location = new System.Drawing.Point(749, 109);
     this.tbPerson.MaxLength = 8;
     this.tbPerson.Name = "tbPerson";
     this.tbPerson.ReadOnly = true;
     this.tbPerson.Size = new System.Drawing.Size(70, 21);
     this.tbPerson.TabIndex = 736;
     this.coreBind.SetVerification(this.tbPerson, null);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label19.Location = new System.Drawing.Point(5, 76);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(83, 12);
     this.label19.TabIndex = 733;
     this.label19.Text = "化学成分(%)";
     this.coreBind.SetVerification(this.label19, null);
     //
     // label18
     //
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label18, null);
     this.label18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label18.Location = new System.Drawing.Point(540, 58);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(38, 22);
     this.label18.TabIndex = 732;
     this.label18.Text = "Ceq";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label18, null);
     //
     // tbCeq
     //
     this.tbCeq.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbCeq, null);
     this.tbCeq.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCeq.Location = new System.Drawing.Point(540, 80);
     this.tbCeq.Name = "tbCeq";
     this.tbCeq.ReadOnly = true;
     this.tbCeq.Size = new System.Drawing.Size(38, 21);
     this.tbCeq.TabIndex = 731;
     this.tbCeq.Text = "0";
     this.tbCeq.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbCeq, null);
     //
     // label17
     //
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label17, null);
     this.label17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label17.Location = new System.Drawing.Point(465, 58);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(38, 22);
     this.label17.TabIndex = 730;
     this.label17.Text = "Nb";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label17, null);
     //
     // tbNb
     //
     this.tbNb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbNb, null);
     this.tbNb.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbNb.Location = new System.Drawing.Point(465, 80);
     this.tbNb.Name = "tbNb";
     this.tbNb.ReadOnly = true;
     this.tbNb.Size = new System.Drawing.Size(38, 21);
     this.tbNb.TabIndex = 729;
     this.tbNb.Text = "0";
     this.tbNb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbNb, null);
     //
     // label16
     //
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label16.Location = new System.Drawing.Point(428, 58);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(38, 22);
     this.label16.TabIndex = 728;
     this.label16.Text = "Mo";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label16, null);
     //
     // tbMo
     //
     this.tbMo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbMo, null);
     this.tbMo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbMo.Location = new System.Drawing.Point(428, 80);
     this.tbMo.Name = "tbMo";
     this.tbMo.ReadOnly = true;
     this.tbMo.Size = new System.Drawing.Size(38, 21);
     this.tbMo.TabIndex = 727;
     this.tbMo.Text = "0";
     this.tbMo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbMo, null);
     //
     // label15
     //
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label15.Location = new System.Drawing.Point(390, 58);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(38, 22);
     this.label15.TabIndex = 726;
     this.label15.Text = "V";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label15, null);
     //
     // tbV
     //
     this.tbV.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbV, null);
     this.tbV.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbV.Location = new System.Drawing.Point(390, 80);
     this.tbV.Name = "tbV";
     this.tbV.ReadOnly = true;
     this.tbV.Size = new System.Drawing.Size(38, 21);
     this.tbV.TabIndex = 725;
     this.tbV.Text = "0";
     this.tbV.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbV, null);
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location = new System.Drawing.Point(352, 58);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(38, 22);
     this.label14.TabIndex = 724;
     this.label14.Text = "Cu";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     //
     // tbCu
     //
     this.tbCu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbCu, null);
     this.tbCu.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCu.Location = new System.Drawing.Point(352, 80);
     this.tbCu.Name = "tbCu";
     this.tbCu.ReadOnly = true;
     this.tbCu.Size = new System.Drawing.Size(38, 21);
     this.tbCu.TabIndex = 723;
     this.tbCu.Text = "0";
     this.tbCu.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbCu, null);
     //
     // label13
     //
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.Location = new System.Drawing.Point(315, 58);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(38, 22);
     this.label13.TabIndex = 722;
     this.label13.Text = "Cr";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label13, null);
     //
     // tbCr
     //
     this.tbCr.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbCr, null);
     this.tbCr.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCr.Location = new System.Drawing.Point(315, 80);
     this.tbCr.Name = "tbCr";
     this.tbCr.ReadOnly = true;
     this.tbCr.Size = new System.Drawing.Size(38, 21);
     this.tbCr.TabIndex = 721;
     this.tbCr.Text = "0";
     this.tbCr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbCr, null);
     //
     // label12
     //
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(278, 58);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(38, 22);
     this.label12.TabIndex = 720;
     this.label12.Text = "Ni";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label12, null);
     //
     // tbNi
     //
     this.tbNi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbNi, null);
     this.tbNi.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbNi.Location = new System.Drawing.Point(278, 80);
     this.tbNi.Name = "tbNi";
     this.tbNi.ReadOnly = true;
     this.tbNi.Size = new System.Drawing.Size(38, 21);
     this.tbNi.TabIndex = 719;
     this.tbNi.Text = "0";
     this.tbNi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbNi, null);
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(240, 58);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(38, 22);
     this.label11.TabIndex = 718;
     this.label11.Text = "P";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label11, null);
     //
     // tbP
     //
     this.tbP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbP, null);
     this.tbP.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbP.Location = new System.Drawing.Point(240, 80);
     this.tbP.Name = "tbP";
     this.tbP.ReadOnly = true;
     this.tbP.Size = new System.Drawing.Size(38, 21);
     this.tbP.TabIndex = 717;
     this.tbP.Text = "0";
     this.tbP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbP, null);
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(202, 58);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(38, 22);
     this.label10.TabIndex = 716;
     this.label10.Text = "S";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label10, null);
     //
     // tbS
     //
     this.tbS.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbS, null);
     this.tbS.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbS.Location = new System.Drawing.Point(202, 80);
     this.tbS.Name = "tbS";
     this.tbS.ReadOnly = true;
     this.tbS.Size = new System.Drawing.Size(38, 21);
     this.tbS.TabIndex = 715;
     this.tbS.Text = "0";
     this.tbS.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbS, null);
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(165, 58);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(38, 22);
     this.label9.TabIndex = 714;
     this.label9.Text = "Mn";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label9, null);
     //
     // tbMn
     //
     this.tbMn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbMn, null);
     this.tbMn.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbMn.Location = new System.Drawing.Point(165, 80);
     this.tbMn.Name = "tbMn";
     this.tbMn.ReadOnly = true;
     this.tbMn.Size = new System.Drawing.Size(38, 21);
     this.tbMn.TabIndex = 713;
     this.tbMn.Text = "0";
     this.tbMn.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbMn, null);
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(128, 58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(38, 22);
     this.label8.TabIndex = 712;
     this.label8.Text = "Si";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label8, null);
     //
     // tbSi
     //
     this.tbSi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbSi, null);
     this.tbSi.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbSi.Location = new System.Drawing.Point(128, 80);
     this.tbSi.Name = "tbSi";
     this.tbSi.ReadOnly = true;
     this.tbSi.Size = new System.Drawing.Size(38, 21);
     this.tbSi.TabIndex = 711;
     this.tbSi.Text = "0";
     this.tbSi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbSi, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(594, 28);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(35, 12);
     this.label7.TabIndex = 710;
     this.label7.Text = "长 度";
     this.coreBind.SetVerification(this.label7, null);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(459, 28);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(35, 12);
     this.label6.TabIndex = 709;
     this.label6.Text = "规 格";
     this.coreBind.SetVerification(this.label6, null);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(326, 27);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(35, 12);
     this.label3.TabIndex = 708;
     this.label3.Text = "钢 种";
     this.coreBind.SetVerification(this.label3, null);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(90, 58);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(38, 22);
     this.label5.TabIndex = 707;
     this.label5.Text = "C";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label5, null);
     //
     // tbC
     //
     this.tbC.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbC, null);
     this.tbC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbC.Location = new System.Drawing.Point(90, 80);
     this.tbC.Name = "tbC";
     this.tbC.ReadOnly = true;
     this.tbC.Size = new System.Drawing.Size(38, 21);
     this.tbC.TabIndex = 706;
     this.tbC.Text = "0";
     this.tbC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbC, null);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(706, 30);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(35, 12);
     this.label4.TabIndex = 704;
     this.label4.Text = "条 数";
     this.coreBind.SetVerification(this.label4, null);
     //
     // tbCount
     //
     this.coreBind.SetDatabasecommand(this.tbCount, null);
     this.tbCount.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCount.Location = new System.Drawing.Point(751, 25);
     this.tbCount.Name = "tbCount";
     this.tbCount.Size = new System.Drawing.Size(70, 21);
     this.tbCount.TabIndex = 703;
     this.coreBind.SetVerification(this.tbCount, null);
     //
     // cbSpec
     //
     this.coreBind.SetDatabasecommand(this.cbSpec, null);
     this.cbSpec.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbSpec.FormattingEnabled = true;
     this.cbSpec.Items.AddRange(new object[] {
     "",
     "165",
     "150"});
     this.cbSpec.Location = new System.Drawing.Point(499, 25);
     this.cbSpec.Name = "cbSpec";
     this.cbSpec.Size = new System.Drawing.Size(80, 20);
     this.cbSpec.TabIndex = 700;
     this.coreBind.SetVerification(this.cbSpec, null);
     //
     // cbSteelType
     //
     this.coreBind.SetDatabasecommand(this.cbSteelType, null);
     this.cbSteelType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbSteelType.FormattingEnabled = true;
     this.cbSteelType.Location = new System.Drawing.Point(364, 24);
     this.cbSteelType.Name = "cbSteelType";
     this.cbSteelType.Size = new System.Drawing.Size(80, 20);
     this.cbSteelType.TabIndex = 698;
     this.coreBind.SetVerification(this.cbSteelType, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(9, 27);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(77, 12);
     this.label2.TabIndex = 6;
     this.label2.Text = "工艺流动卡号";
     this.coreBind.SetVerification(this.label2, null);
     //
     // tbCardNo
     //
     this.tbCardNo.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.tbCardNo, null);
     this.tbCardNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCardNo.Location = new System.Drawing.Point(92, 24);
     this.tbCardNo.Name = "tbCardNo";
     this.tbCardNo.ReadOnly = true;
     this.tbCardNo.Size = new System.Drawing.Size(80, 21);
     this.tbCardNo.TabIndex = 5;
     this.coreBind.SetVerification(this.tbCardNo, null);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(188, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 12);
     this.label1.TabIndex = 4;
     this.label1.Text = "炉 号";
     this.coreBind.SetVerification(this.label1, null);
     //
     // tbStoveNo
     //
     this.tbStoveNo.BackColor = System.Drawing.SystemColors.Window;
     this.tbStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbStoveNo, null);
     this.tbStoveNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbStoveNo.Location = new System.Drawing.Point(230, 24);
     this.tbStoveNo.MaxLength = 13;
     this.tbStoveNo.Name = "tbStoveNo";
     this.tbStoveNo.Size = new System.Drawing.Size(80, 21);
     this.tbStoveNo.TabIndex = 3;
     this.coreBind.SetVerification(this.tbStoveNo, null);
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.Info;
     this.coreBind.SetDatabasecommand(this.textBox1, null);
     this.textBox1.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBox1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.textBox1.Location = new System.Drawing.Point(610, 182);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size = new System.Drawing.Size(498, 54);
     this.textBox1.TabIndex = 2;
     this.coreBind.SetVerification(this.textBox1, null);
     this.textBox1.Visible = false;
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1002, 192);
     this.ultraGroupBox2.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraTabControl1
     //
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
     this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
     this.coreBind.SetDatabasecommand(this.ultraTabControl1, null);
     this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.ultraTabControl1.Name = "ultraTabControl1";
     this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
     this.ultraTabControl1.Size = new System.Drawing.Size(1002, 402);
     this.ultraTabControl1.TabIndex = 0;
     ultraTab4.TabPage = this.ultraTabPageControl1;
     ultraTab4.Text = "流程卡数据";
     ultraTab5.TabPage = this.ultraTabPageControl2;
     ultraTab5.Text = "棒材钢坯辊道预报";
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab4,
     ultraTab5});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
     //
     // ultraTabSharedControlsPage1
     //
     this.coreBind.SetDatabasecommand(this.ultraTabSharedControlsPage1, null);
     this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
     this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1000, 379);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.coreBind.SetDatabasecommand(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Margin = new System.Windows.Forms.Padding(400, 100, 0, 0);
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(100, 26);
     this.coreBind.SetVerification(this.contextMenuStrip1, null);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem1.Image")));
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(99, 22);
     this.toolStripMenuItem1.Text = "放大";
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraTabControl1);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraPanel4);
     this.coreBind.SetDatabasecommand(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel2, null);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1002, 402);
     this.ultraPanel2.TabIndex = 13;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraPanel4
     //
     this.ultraPanel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     // ultraPanel4.ClientArea
     //
     this.coreBind.SetDatabasecommand(this.ultraPanel4.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel4.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel4, null);
     this.ultraPanel4.Location = new System.Drawing.Point(27, 11);
     this.ultraPanel4.Name = "ultraPanel4";
     this.ultraPanel4.Size = new System.Drawing.Size(437, 79);
     this.ultraPanel4.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel4, null);
     //
     // ultraPanel5
     //
     //
     // ultraPanel5.ClientArea
     //
     this.ultraPanel5.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.coreBind.SetDatabasecommand(this.ultraPanel5.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel5.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel5, null);
     this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel5.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel5.Name = "ultraPanel5";
     this.ultraPanel5.Size = new System.Drawing.Size(1002, 192);
     this.ultraPanel5.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraPanel5, null);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel5);
     this.coreBind.SetDatabasecommand(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel1, null);
     this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 402);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(1002, 192);
     this.ultraPanel1.TabIndex = 14;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraTabControl2
     //
     this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
     this.coreBind.SetDatabasecommand(this.ultraTabControl2, null);
     this.ultraTabControl2.Location = new System.Drawing.Point(0, 0);
     this.ultraTabControl2.Name = "ultraTabControl2";
     this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
     this.ultraTabControl2.Size = new System.Drawing.Size(200, 100);
     this.ultraTabControl2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraTabControl2, null);
     //
     // ultraTabPageControl4
     //
     this.ultraTabPageControl4.Controls.Add(this.ultraGroupBox5);
     this.ultraTabPageControl4.Controls.Add(this.ultraPanel6);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl4, null);
     this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl4.Name = "ultraTabPageControl4";
     this.ultraTabPageControl4.Size = new System.Drawing.Size(864, 416);
     this.coreBind.SetVerification(this.ultraTabPageControl4, null);
     //
     // ultraGroupBox5
     //
     this.ultraGroupBox5.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox5.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox5.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox5, null);
     this.ultraGroupBox5.Location = new System.Drawing.Point(9, 45);
     this.ultraGroupBox5.Name = "ultraGroupBox5";
     this.ultraGroupBox5.Size = new System.Drawing.Size(988, 374);
     this.ultraGroupBox5.TabIndex = 11;
     this.coreBind.SetVerification(this.ultraGroupBox5, null);
     this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraLabel4
     //
     appearance129.BackColor = System.Drawing.Color.Black;
     this.ultraLabel4.Appearance = appearance129;
     this.coreBind.SetDatabasecommand(this.ultraLabel4, null);
     this.ultraLabel4.Location = new System.Drawing.Point(871, 154);
     this.ultraLabel4.Name = "ultraLabel4";
     this.ultraLabel4.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel4.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraLabel4, null);
     //
     // ultraLabel5
     //
     appearance128.BackColor = System.Drawing.Color.Black;
     this.ultraLabel5.Appearance = appearance128;
     this.coreBind.SetDatabasecommand(this.ultraLabel5, null);
     this.ultraLabel5.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraLabel5.Name = "ultraLabel5";
     this.ultraLabel5.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel5.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraLabel5, null);
     this.ultraLabel5.Visible = false;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "Table2";
     this.ultraGrid3.DataSource = this.dataSet1;
     appearance101.BackColor = System.Drawing.Color.White;
     appearance101.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance101.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid3.DisplayLayout.Appearance = appearance101;
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     appearance102.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance102;
     appearance103.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance103;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance104.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance104.BackColor2 = System.Drawing.Color.White;
     appearance104.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance104.FontData.SizeInPoints = 11F;
     appearance104.ForeColor = System.Drawing.Color.Black;
     appearance104.TextHAlignAsString = "Center";
     appearance104.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance104;
     appearance105.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance105;
     appearance106.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance106.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance106.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance106;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.VisibleIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 30;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance107.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance107.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance107.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance107.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance107;
     this.ultraGrid3.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(29, 12);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(982, 371);
     this.ultraGrid3.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     //
     // ultraPanel6
     //
     //
     // ultraPanel6.ClientArea
     //
     this.ultraPanel6.ClientArea.Controls.Add(this.comboBox2);
     this.ultraPanel6.ClientArea.Controls.Add(this.ultraLabel6);
     this.ultraPanel6.ClientArea.Controls.Add(this.dateTimePicker5);
     this.ultraPanel6.ClientArea.Controls.Add(this.dateTimePicker6);
     this.ultraPanel6.ClientArea.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this.ultraPanel6.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel6.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel6, null);
     this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraPanel6.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel6.Name = "ultraPanel6";
     this.ultraPanel6.Size = new System.Drawing.Size(864, 27);
     this.ultraPanel6.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraPanel6, null);
     //
     // comboBox2
     //
     this.coreBind.SetDatabasecommand(this.comboBox2, null);
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location = new System.Drawing.Point(425, 3);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(85, 20);
     this.comboBox2.TabIndex = 3;
     this.coreBind.SetVerification(this.comboBox2, null);
     //
     // ultraLabel6
     //
     appearance127.BackColor = System.Drawing.Color.Red;
     this.ultraLabel6.Appearance = appearance127;
     this.coreBind.SetDatabasecommand(this.ultraLabel6, null);
     this.ultraLabel6.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraLabel6.Name = "ultraLabel6";
     this.ultraLabel6.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel6.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraLabel6, null);
     //
     // dateTimePicker5
     //
     this.dateTimePicker5.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker5.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker5, null);
     this.dateTimePicker5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker5.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker5.Location = new System.Drawing.Point(230, 4);
     this.dateTimePicker5.Name = "dateTimePicker5";
     this.dateTimePicker5.Size = new System.Drawing.Size(138, 21);
     this.dateTimePicker5.TabIndex = 743;
     this.coreBind.SetVerification(this.dateTimePicker5, null);
     //
     // dateTimePicker6
     //
     this.dateTimePicker6.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker6.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker6, null);
     this.dateTimePicker6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker6.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker6.Location = new System.Drawing.Point(70, 4);
     this.dateTimePicker6.Name = "dateTimePicker6";
     this.dateTimePicker6.Size = new System.Drawing.Size(138, 21);
     this.dateTimePicker6.TabIndex = 742;
     this.coreBind.SetVerification(this.dateTimePicker6, null);
     //
     // panel1
     //
     this.panel1.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(864, 27);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // ultraTabSharedControlsPage2
     //
     this.coreBind.SetDatabasecommand(this.ultraTabSharedControlsPage2, null);
     this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(1, 20);
     this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
     this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(196, 77);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage2, null);
     //
     // timer1
     //
     this.timer1.Interval = 600;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.ultraPanel2);
     this.panel5.Controls.Add(this.ultraPanel1);
     this.coreBind.SetDatabasecommand(this.panel5, null);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(1002, 594);
     this.panel5.TabIndex = 16;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // WeightPlan_FP
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1002, 594);
     this.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "WeightPlan_FP";
     this.Text = "热送辊道计量预报";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.WeightPlan_FP_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.WeightPlan_FP_FormClosing);
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ultraTabPageControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     this.ultraGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     this.ultraPanel3.ClientArea.ResumeLayout(false);
     this.ultraPanel3.ClientArea.PerformLayout();
     this.ultraPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     this.ultraPanel4.ResumeLayout(false);
     this.ultraPanel5.ClientArea.ResumeLayout(false);
     this.ultraPanel5.ResumeLayout(false);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
     this.ultraTabControl2.ResumeLayout(false);
     this.ultraTabPageControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
     this.ultraGroupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     this.ultraPanel6.ClientArea.ResumeLayout(false);
     this.ultraPanel6.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel10             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel9             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSynch                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel8             = new Infragistics.Win.Misc.UltraLabel();
     this.txtCustomerService      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7             = new Infragistics.Win.Misc.UltraLabel();
     this.txtSales                = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel3             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMember               = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6             = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo              = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.btnExcel                = new Infragistics.Win.Misc.UltraButton();
     this.cmbEndDate              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnPrint                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel2             = new Infragistics.Win.Misc.UltraLabel();
     this.cmdBeginDate            = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbShow                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnQuery                = new Infragistics.Win.Misc.UltraButton();
     this.chkBeginDate            = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.saveFileDialog1         = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2          = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnFilter               = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(48, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(168, 72);
     this.ultraGrid1.TabIndex          = 16;
     this.ultraGrid1.Text              = "展位调整报表";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnFilter);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel10);
     this.ultraGroupBox1.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.cmbSynch);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerService);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.txtSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.cmbMember);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Location = new System.Drawing.Point(112, 16);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(800, 200);
     this.ultraGroupBox1.TabIndex = 17;
     //
     // ultraLabel10
     //
     this.ultraLabel10.Location = new System.Drawing.Point(120, 152);
     this.ultraLabel10.Name     = "ultraLabel10";
     this.ultraLabel10.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel10.TabIndex = 47;
     this.ultraLabel10.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(224, 152);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.TabIndex     = 46;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(104, 120);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel9.TabIndex = 40;
     this.ultraLabel9.Text     = "同步标志:";
     //
     // cmbSynch
     //
     this.cmbSynch.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSynch.Location     = new System.Drawing.Point(224, 120);
     this.cmbSynch.Name         = "cmbSynch";
     this.cmbSynch.TabIndex     = 39;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(416, 168);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.TabIndex = 38;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // txtCustomerService
     //
     this.txtCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCustomerService.Location     = new System.Drawing.Point(520, 168);
     this.txtCustomerService.Name         = "txtCustomerService";
     this.txtCustomerService.Size         = new System.Drawing.Size(100, 21);
     this.txtCustomerService.TabIndex     = 37;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(416, 144);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.TabIndex = 36;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // txtSales
     //
     this.txtSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSales.Location     = new System.Drawing.Point(520, 144);
     this.txtSales.Name         = "txtSales";
     this.txtSales.Size         = new System.Drawing.Size(100, 21);
     this.txtSales.TabIndex     = 35;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(416, 120);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 32;
     this.ultraLabel4.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(520, 120);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 31;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(416, 24);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel3.TabIndex = 30;
     this.ultraLabel3.Text     = "是否会员:";
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.Location     = new System.Drawing.Point(520, 24);
     this.cmbMember.Name         = "cmbMember";
     this.cmbMember.Size         = new System.Drawing.Size(104, 21);
     this.cmbMember.TabIndex     = 29;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(416, 96);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 26;
     this.ultraLabel1.Text     = "工商注册号:";
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(416, 72);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.TabIndex = 25;
     this.ultraLabel5.Text     = "单位名称:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(416, 48);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.TabIndex = 24;
     this.ultraLabel6.Text     = "会员卡号:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(520, 96);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 22;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(520, 72);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 21;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(520, 48);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 20;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(672, 128);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.TabIndex    = 12;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(224, 88);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.TabIndex     = 7;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(104, 88);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.TabIndex    = 11;
     this.chkEndDate.Text        = "结束时间";
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(672, 96);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.TabIndex    = 3;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(104, 24);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel2.TabIndex = 6;
     this.ultraLabel2.Text     = "招聘会:";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(224, 56);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.TabIndex     = 5;
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.Location     = new System.Drawing.Point(224, 24);
     this.cmbShow.Name         = "cmbShow";
     this.cmbShow.TabIndex     = 4;
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(672, 64);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.TabIndex    = 0;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(104, 56);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.TabIndex    = 10;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 224);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(976, 384);
     this.ultraGroupBox2.TabIndex = 18;
     //
     // btnFilter
     //
     this.btnFilter.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnFilter.Location    = new System.Drawing.Point(368, 24);
     this.btnFilter.Name        = "btnFilter";
     this.btnFilter.Size        = new System.Drawing.Size(48, 23);
     this.btnFilter.TabIndex    = 50;
     this.btnFilter.Text        = "检索";
     this.btnFilter.Click      += new System.EventHandler(this.btnFilter_Click);
     //
     // NoSignInReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1016, 621);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "NoSignInReport";
     this.Text  = "展位调整报表";
     this.Load += new System.EventHandler(this.NoSignInReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbDept                  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSales                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel20             = new Infragistics.Win.Misc.UltraLabel();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbDept);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel20);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Location = new System.Drawing.Point(53, 28);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(927, 150);
     this.ultraGroupBox2.TabIndex = 3;
     this.ultraGroupBox2.Text     = "查找";
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(710, 34);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(152, 21);
     this.cmbDept.TabIndex     = 67;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(608, 34);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 66;
     this.ultraLabel1.Text     = "部门:";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(420, 114);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(152, 21);
     this.cmbSales.TabIndex     = 65;
     //
     // ultraLabel20
     //
     this.ultraLabel20.Location = new System.Drawing.Point(318, 114);
     this.ultraLabel20.Name     = "ultraLabel20";
     this.ultraLabel20.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel20.TabIndex = 64;
     this.ultraLabel20.Text     = "销售人员:";
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(809, 108);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(32, 112);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(32, 72);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(32, 32);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(324, 74);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(88, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(324, 34);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(88, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(420, 74);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(420, 34);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(136, 112);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(710, 108);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(606, 108);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(136, 32);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(136, 72);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(32, 184);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(976, 392);
     this.ultraGroupBox1.TabIndex = 5;
     this.ultraGroupBox1.Click   += new System.EventHandler(this.ultraGroupBox1_Click);
     //
     // AddPrepayReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1024, 589);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Name  = "AddPrepayReport";
     this.Text  = Login.constApp.strCardTypeL6Name + "非会员充值报表";
     this.Load += new System.EventHandler(this.AddPrepayReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool14 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MeasureDataQuery));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GROSSDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSSHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TAREDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TARESHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TOCENTERTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TESTIFYDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPECODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_JZDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WXPAYFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_JSDH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CWQR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_KHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATASTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CREATEJSRQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_KSDJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_FHRQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YFDJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_CETH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SJTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_KTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YFJE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_FHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SFJE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ECJLSJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SETTLEMENTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 6175674);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 6175675);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 6175676);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup4 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup3", 6175677);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup5 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup4", 6175678);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup6 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup5", 6175679);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup7 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup6", 6175680);
     Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("12");
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTTYPE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_GROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPOINT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_GROSSDATETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSSHIFT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_TAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPOINT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TAREDATETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TARESHIFT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_NETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_SAMPLETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TOCENTERTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_ACCOUNTDATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TESTIFYDATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TYPECODE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIAL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_JZDATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WXPAYFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_CHECKTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_JSDH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CWQR", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKBL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_KHJZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DATASTATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CREATEJSRQ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_KSDJ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_FHRQ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo65 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_YFDJ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo66 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_CETH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo67 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SJTH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo68 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_KTH", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo69 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_YFJE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo70 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_FHJZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo71 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SFJE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo72 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_ECJLSJ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo73 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo74 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SETTLEMENTNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo75 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup0", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo76 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup1", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo77 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup2", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo78 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup3", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo79 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup4", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo80 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup5", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo81 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup6", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_CARDNUMBER", 72, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 19, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 19, true);
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement1 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement2 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect2 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ultraComboEditor1 = new System.Windows.Forms.ComboBox();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.dateBegin = new System.Windows.Forms.DateTimePicker();
     this.dateEnd = new System.Windows.Forms.DateTimePicker();
     this.cbDateField = new System.Windows.Forms.ComboBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbSHDWUSER = new System.Windows.Forms.ComboBox();
     this.cbGYDWUSER = new System.Windows.Forms.ComboBox();
     this.cbHTH = new System.Windows.Forms.ComboBox();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.MeasureDataQuery_Fill_Panel = new System.Windows.Forms.Panel();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn59 = new System.Data.DataColumn();
     this.dataColumn60 = new System.Data.DataColumn();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn62 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.dataColumn63 = new System.Data.DataColumn();
     this.dataColumn64 = new System.Data.DataColumn();
     this.dataColumn65 = new System.Data.DataColumn();
     this.dataColumn66 = new System.Data.DataColumn();
     this.dataColumn67 = new System.Data.DataColumn();
     this.dataColumn68 = new System.Data.DataColumn();
     this.dataColumn69 = new System.Data.DataColumn();
     this.dataColumn70 = new System.Data.DataColumn();
     this.dataColumn71 = new System.Data.DataColumn();
     this.dataColumn72 = new System.Data.DataColumn();
     this.dataColumn73 = new System.Data.DataColumn();
     this.dataColumn74 = new System.Data.DataColumn();
     this.dataColumn75 = new System.Data.DataColumn();
     this.dataColumn76 = new System.Data.DataColumn();
     this.dataColumn77 = new System.Data.DataColumn();
     this.dataColumn78 = new System.Data.DataColumn();
     this.dataColumn79 = new System.Data.DataColumn();
     this.dataColumn80 = new System.Data.DataColumn();
     this.dataColumn81 = new System.Data.DataColumn();
     this.dataColumn82 = new System.Data.DataColumn();
     this.dataColumn83 = new System.Data.DataColumn();
     this.dataColumn84 = new System.Data.DataColumn();
     this.dataColumn85 = new System.Data.DataColumn();
     this.dataColumn86 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn51 = new System.Data.DataColumn();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultTPPic = new Infragistics.Win.Misc.UltraTilePanel();
     this.ultraTile1 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic1 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile2 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic2 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile3 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic3 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile4 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic4 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile5 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic5 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile6 = new Infragistics.Win.Misc.UltraTile();
     this.ultraChart11 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.ultraTile7 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic7 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile8 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic8 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile9 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic9 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile10 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic10 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile11 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic11 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.ultraTile12 = new Infragistics.Win.Misc.UltraTile();
     this.ultraChart12 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.dataColumn87 = new System.Data.DataColumn();
     this.panel1.SuspendLayout();
     this.panel1_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.MeasureDataQuery_Fill_Panel.SuspendLayout();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultTPPic)).BeginInit();
     this.ultTPPic.SuspendLayout();
     this.ultraTile1.SuspendLayout();
     this.ultraTile2.SuspendLayout();
     this.ultraTile3.SuspendLayout();
     this.ultraTile4.SuspendLayout();
     this.ultraTile5.SuspendLayout();
     this.ultraTile6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).BeginInit();
     this.ultraTile7.SuspendLayout();
     this.ultraTile8.SuspendLayout();
     this.ultraTile9.SuspendLayout();
     this.ultraTile10.SuspendLayout();
     this.ultraTile11.SuspendLayout();
     this.ultraTile12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart12)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ultraComboEditor1);
     this.panel1.Controls.Add(this.cbx_Filter);
     this.panel1.Controls.Add(this.txtCarNo);
     this.panel1.Controls.Add(this.dateBegin);
     this.panel1.Controls.Add(this.dateEnd);
     this.panel1.Controls.Add(this.cbDateField);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1028, 27);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // ultraComboEditor1
     //
     this.ultraComboEditor1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ultraComboEditor1.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.ultraComboEditor1, null);
     this.ultraComboEditor1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ultraComboEditor1.FormattingEnabled = true;
     this.ultraComboEditor1.Location = new System.Drawing.Point(767, 5);
     this.ultraComboEditor1.Name = "ultraComboEditor1";
     this.ultraComboEditor1.Size = new System.Drawing.Size(91, 20);
     this.ultraComboEditor1.TabIndex = 705;
     this.coreBind.SetVerification(this.ultraComboEditor1, null);
     //
     // cbx_Filter
     //
     this.cbx_Filter.AutoSize = true;
     this.cbx_Filter.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbx_Filter, null);
     this.cbx_Filter.Location = new System.Drawing.Point(932, 6);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 11;
     this.cbx_Filter.Text = "过滤";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     this.cbx_Filter.Visible = false;
     this.cbx_Filter.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(500, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarNo.TabIndex = 11;
     this.coreBind.SetVerification(this.txtCarNo, null);
     //
     // dateBegin
     //
     this.dateBegin.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateBegin, null);
     this.dateBegin.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateBegin.Location = new System.Drawing.Point(194, 2);
     this.dateBegin.Name = "dateBegin";
     this.dateBegin.Size = new System.Drawing.Size(125, 21);
     this.dateBegin.TabIndex = 599;
     this.coreBind.SetVerification(this.dateBegin, null);
     this.dateBegin.ValueChanged += new System.EventHandler(this.dateBegin_ValueChanged);
     //
     // dateEnd
     //
     this.dateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateEnd, null);
     this.dateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateEnd.Location = new System.Drawing.Point(341, 2);
     this.dateEnd.Name = "dateEnd";
     this.dateEnd.Size = new System.Drawing.Size(125, 21);
     this.dateEnd.TabIndex = 600;
     this.coreBind.SetVerification(this.dateEnd, null);
     //
     // cbDateField
     //
     this.coreBind.SetDatabasecommand(this.cbDateField, null);
     this.cbDateField.FormattingEnabled = true;
     this.cbDateField.Items.AddRange(new object[] {
     "",
     "毛重计量时间",
     "皮重计量时间"});
     this.cbDateField.Location = new System.Drawing.Point(60, 2);
     this.cbDateField.Name = "cbDateField";
     this.cbDateField.Size = new System.Drawing.Size(99, 20);
     this.cbDateField.TabIndex = 605;
     this.coreBind.SetVerification(this.cbDateField, null);
     this.cbDateField.SelectedIndexChanged += new System.EventHandler(this.cbDateField_SelectedIndexChanged);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Controls.Add(this.cbSHDWUSER);
     this.panel1_Fill_Panel.Controls.Add(this.cbGYDWUSER);
     this.panel1_Fill_Panel.Controls.Add(this.cbHTH);
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 54);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1028, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // cbSHDWUSER
     //
     this.coreBind.SetDatabasecommand(this.cbSHDWUSER, null);
     this.cbSHDWUSER.FormattingEnabled = true;
     this.cbSHDWUSER.Location = new System.Drawing.Point(-10000, -10000);
     this.cbSHDWUSER.Name = "cbSHDWUSER";
     this.cbSHDWUSER.Size = new System.Drawing.Size(123, 20);
     this.cbSHDWUSER.TabIndex = 611;
     this.coreBind.SetVerification(this.cbSHDWUSER, null);
     //
     // cbGYDWUSER
     //
     this.coreBind.SetDatabasecommand(this.cbGYDWUSER, null);
     this.cbGYDWUSER.FormattingEnabled = true;
     this.cbGYDWUSER.Location = new System.Drawing.Point(601, 4);
     this.cbGYDWUSER.Name = "cbGYDWUSER";
     this.cbGYDWUSER.Size = new System.Drawing.Size(123, 20);
     this.cbGYDWUSER.TabIndex = 610;
     this.coreBind.SetVerification(this.cbGYDWUSER, null);
     //
     // cbHTH
     //
     this.coreBind.SetDatabasecommand(this.cbHTH, null);
     this.cbHTH.FormattingEnabled = true;
     this.cbHTH.Location = new System.Drawing.Point(473, 3);
     this.cbHTH.Name = "cbHTH";
     this.cbHTH.Size = new System.Drawing.Size(122, 20);
     this.cbHTH.TabIndex = 598;
     this.coreBind.SetVerification(this.cbHTH, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 54);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(269, 316);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(182, 144);
     controlContainerTool10.ControlName = "cbDateField";
     controlContainerTool10.InstanceProps.RecentlyUsed = false;
     controlContainerTool10.InstanceProps.Width = 158;
     controlContainerTool11.ControlName = "dateBegin";
     controlContainerTool11.InstanceProps.Width = 159;
     controlContainerTool12.ControlName = "dateEnd";
     controlContainerTool12.InstanceProps.Width = 147;
     controlContainerTool1.ControlName = "txtCarNo";
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.ControlName = "ultraComboEditor1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool10,
     controlContainerTool11,
     controlContainerTool12,
     controlContainerTool1,
     buttonTool4,
     buttonTool3,
     controlContainerTool3,
     buttonTool1});
     ultraToolbar1.Text = "UltraToolbar1";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     ultraToolbar2.Text = "UltraToolbar2";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     controlContainerTool14.ControlName = "dateBegin";
     controlContainerTool14.SharedPropsInternal.Caption = "开始";
     controlContainerTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool14.SharedPropsInternal.Width = 159;
     appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance34;
     buttonTool5.SharedPropsInternal.Caption = "查询";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.ControlName = "dateEnd";
     controlContainerTool16.SharedPropsInternal.Caption = "至";
     controlContainerTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.SharedPropsInternal.Width = 147;
     controlContainerTool17.ControlName = "cbDateField";
     controlContainerTool17.SharedPropsInternal.Caption = "查询日期";
     controlContainerTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool17.SharedPropsInternal.Width = 158;
     controlContainerTool2.ControlName = "txtCarNo";
     controlContainerTool2.SharedPropsInternal.Caption = "车号";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool7.SharedPropsInternal.Caption = "导出";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.ControlName = "ultraComboEditor1";
     controlContainerTool4.SharedPropsInternal.Caption = "计量点";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool2.SharedPropsInternal.Caption = "票据补打";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool14,
     buttonTool5,
     controlContainerTool16,
     controlContainerTool17,
     controlContainerTool2,
     buttonTool7,
     controlContainerTool4,
     buttonTool2});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1028, 54);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1028, 54);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 27);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1028, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // MeasureDataQuery_Fill_Panel
     //
     this.MeasureDataQuery_Fill_Panel.Controls.Add(this.ultraPanel1);
     this.MeasureDataQuery_Fill_Panel.Controls.Add(this.panel1);
     this.MeasureDataQuery_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.MeasureDataQuery_Fill_Panel, null);
     this.MeasureDataQuery_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.MeasureDataQuery_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.MeasureDataQuery_Fill_Panel.Name = "MeasureDataQuery_Fill_Panel";
     this.MeasureDataQuery_Fill_Panel.Size = new System.Drawing.Size(1028, 666);
     this.MeasureDataQuery_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.MeasureDataQuery_Fill_Panel, null);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.splitContainer1);
     this.coreBind.SetDatabasecommand(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel1, null);
     this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 27);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(1028, 639);
     this.ultraPanel1.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // splitContainer1
     //
     this.coreBind.SetDatabasecommand(this.splitContainer1, null);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox2);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel1, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox3);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel2, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(1028, 639);
     this.splitContainer1.SplitterDistance = 293;
     this.splitContainer1.TabIndex = 11;
     this.coreBind.SetVerification(this.splitContainer1, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1028, 293);
     this.ultraGroupBox2.TabIndex = 12;
     this.ultraGroupBox2.Text = "计量查询数据";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "计量数据";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 56;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 60;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 66;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 64;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 68;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 78;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 82;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 84;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn37.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn38.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.Hidden = true;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 92;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 94;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 96;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 98;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 100;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 43;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn44.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.Header.VisiblePosition = 44;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn45.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.Header.VisiblePosition = 45;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn46.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn47.Header.VisiblePosition = 46;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.Hidden = true;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.Hidden = true;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn55.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn56.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn57.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn58.Header.VisiblePosition = 57;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn58.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn59.Header.VisiblePosition = 58;
     ultraGridColumn59.Hidden = true;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.Header.VisiblePosition = 59;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.Header.VisiblePosition = 60;
     ultraGridColumn61.Hidden = true;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 78;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn62.Header.VisiblePosition = 61;
     ultraGridColumn62.Hidden = true;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn63.Header.VisiblePosition = 62;
     ultraGridColumn63.Hidden = true;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 82;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn64.Header.VisiblePosition = 63;
     ultraGridColumn64.Hidden = true;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 84;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn65.Header.VisiblePosition = 64;
     ultraGridColumn65.Hidden = true;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 86;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn66.Header.VisiblePosition = 65;
     ultraGridColumn66.Hidden = true;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 88;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn67.Header.VisiblePosition = 66;
     ultraGridColumn67.Hidden = true;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 90;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn68.Header.VisiblePosition = 67;
     ultraGridColumn68.Hidden = true;
     ultraGridColumn68.RowLayoutColumnInfo.OriginX = 92;
     ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn68.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn69.Header.VisiblePosition = 68;
     ultraGridColumn69.Hidden = true;
     ultraGridColumn69.RowLayoutColumnInfo.OriginX = 94;
     ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn69.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn69.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn70.Header.VisiblePosition = 69;
     ultraGridColumn70.Hidden = true;
     ultraGridColumn70.RowLayoutColumnInfo.OriginX = 96;
     ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn70.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn70.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn71.Header.VisiblePosition = 70;
     ultraGridColumn71.Hidden = true;
     ultraGridColumn71.RowLayoutColumnInfo.OriginX = 98;
     ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn71.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn71.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn72.Header.VisiblePosition = 71;
     ultraGridColumn72.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn72.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn72.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn72.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn73.Header.VisiblePosition = 72;
     ultraGridColumn73.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn73.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn73.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn74.Header.VisiblePosition = 73;
     ultraGridColumn74.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn74.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn74.RowLayoutColumnInfo.SpanY = 3;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58,
     ultraGridColumn59,
     ultraGridColumn60,
     ultraGridColumn61,
     ultraGridColumn62,
     ultraGridColumn63,
     ultraGridColumn64,
     ultraGridColumn65,
     ultraGridColumn66,
     ultraGridColumn67,
     ultraGridColumn68,
     ultraGridColumn69,
     ultraGridColumn70,
     ultraGridColumn71,
     ultraGridColumn72,
     ultraGridColumn73,
     ultraGridColumn74});
     ultraGridGroup1.Header.Caption = "重量";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 18;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup2.Header.Caption = "毛重";
     ultraGridGroup2.Key = "NewGroup1";
     ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 30;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 10;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup3.Header.Caption = "皮重";
     ultraGridGroup3.Key = "NewGroup2";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 40;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup4.Header.Caption = "扣渣";
     ultraGridGroup4.Key = "NewGroup3";
     ultraGridGroup4.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup4.RowLayoutGroupInfo.OriginX = 48;
     ultraGridGroup4.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup4.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup4.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup5.Header.Caption = "复磅";
     ultraGridGroup5.Key = "NewGroup4";
     ultraGridGroup5.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup5.RowLayoutGroupInfo.OriginX = 54;
     ultraGridGroup5.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup5.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup5.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup6.Header.Caption = "卸货";
     ultraGridGroup6.Key = "NewGroup5";
     ultraGridGroup6.RowLayoutGroupInfo.OriginX = 62;
     ultraGridGroup6.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup6.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup6.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup7.Header.Caption = "对方重量";
     ultraGridGroup7.Key = "NewGroup6";
     ultraGridGroup7.RowLayoutGroupInfo.OriginX = 24;
     ultraGridGroup7.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup7.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup7.RowLayoutGroupInfo.SpanY = 3;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2,
     ultraGridGroup3,
     ultraGridGroup4,
     ultraGridGroup5,
     ultraGridGroup6,
     ultraGridGroup7});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     rowLayout1.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
     rowLayoutColumnInfo1,
     rowLayoutColumnInfo2,
     rowLayoutColumnInfo3,
     rowLayoutColumnInfo4,
     rowLayoutColumnInfo5,
     rowLayoutColumnInfo6,
     rowLayoutColumnInfo7,
     rowLayoutColumnInfo8,
     rowLayoutColumnInfo9,
     rowLayoutColumnInfo10,
     rowLayoutColumnInfo11,
     rowLayoutColumnInfo12,
     rowLayoutColumnInfo13,
     rowLayoutColumnInfo14,
     rowLayoutColumnInfo15,
     rowLayoutColumnInfo16,
     rowLayoutColumnInfo17,
     rowLayoutColumnInfo18,
     rowLayoutColumnInfo19,
     rowLayoutColumnInfo20,
     rowLayoutColumnInfo21,
     rowLayoutColumnInfo22,
     rowLayoutColumnInfo23,
     rowLayoutColumnInfo24,
     rowLayoutColumnInfo25,
     rowLayoutColumnInfo26,
     rowLayoutColumnInfo27,
     rowLayoutColumnInfo28,
     rowLayoutColumnInfo29,
     rowLayoutColumnInfo30,
     rowLayoutColumnInfo31,
     rowLayoutColumnInfo32,
     rowLayoutColumnInfo33,
     rowLayoutColumnInfo34,
     rowLayoutColumnInfo35,
     rowLayoutColumnInfo36,
     rowLayoutColumnInfo37,
     rowLayoutColumnInfo38,
     rowLayoutColumnInfo39,
     rowLayoutColumnInfo40,
     rowLayoutColumnInfo41,
     rowLayoutColumnInfo42,
     rowLayoutColumnInfo43,
     rowLayoutColumnInfo44,
     rowLayoutColumnInfo45,
     rowLayoutColumnInfo46,
     rowLayoutColumnInfo47,
     rowLayoutColumnInfo48,
     rowLayoutColumnInfo49,
     rowLayoutColumnInfo50,
     rowLayoutColumnInfo51,
     rowLayoutColumnInfo52,
     rowLayoutColumnInfo53,
     rowLayoutColumnInfo54,
     rowLayoutColumnInfo55,
     rowLayoutColumnInfo56,
     rowLayoutColumnInfo57,
     rowLayoutColumnInfo58,
     rowLayoutColumnInfo59,
     rowLayoutColumnInfo60,
     rowLayoutColumnInfo61,
     rowLayoutColumnInfo62,
     rowLayoutColumnInfo63,
     rowLayoutColumnInfo64,
     rowLayoutColumnInfo65,
     rowLayoutColumnInfo66,
     rowLayoutColumnInfo67,
     rowLayoutColumnInfo68,
     rowLayoutColumnInfo69,
     rowLayoutColumnInfo70,
     rowLayoutColumnInfo71,
     rowLayoutColumnInfo72,
     rowLayoutColumnInfo73,
     rowLayoutColumnInfo74,
     rowLayoutColumnInfo75,
     rowLayoutColumnInfo76,
     rowLayoutColumnInfo77,
     rowLayoutColumnInfo78,
     rowLayoutColumnInfo79,
     rowLayoutColumnInfo80,
     rowLayoutColumnInfo81});
     rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
     rowLayout1});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "合计{0}条";
     summarySettings1.GroupBySummaryValueAppearance = appearance3;
     summarySettings2.DisplayFormat = "重量{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance4;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = "拖动列标题到此,按该列进行分组";
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance11.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance11;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance14;
     appearance17.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance17;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid1.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance18.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance18.TextHAlignAsString = "Center";
     appearance18.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance18;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance19.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance19;
     appearance20.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance20;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance21.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance21.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance21;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1022, 272);
     this.ultraGrid1.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid1_DoubleClickRow);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable3});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn2,
     this.dataColumn7,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn1,
     this.dataColumn40,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn50,
     this.dataColumn3,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn38,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     this.dataColumn57,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn68,
     this.dataColumn69,
     this.dataColumn70,
     this.dataColumn71,
     this.dataColumn72,
     this.dataColumn73,
     this.dataColumn74,
     this.dataColumn75,
     this.dataColumn76,
     this.dataColumn77,
     this.dataColumn78,
     this.dataColumn79,
     this.dataColumn80,
     this.dataColumn81,
     this.dataColumn82,
     this.dataColumn83,
     this.dataColumn84,
     this.dataColumn85,
     this.dataColumn86,
     this.dataColumn87});
     this.dataTable1.TableName = "计量数据";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "合同号";
     this.dataColumn2.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "车号";
     this.dataColumn7.ColumnName = "FS_CARNO";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "物料名称";
     this.dataColumn9.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "发货单位";
     this.dataColumn10.ColumnName = "FS_SENDERNAME";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "承运单位";
     this.dataColumn12.ColumnName = "FS_TRANSNAME";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "收货单位";
     this.dataColumn13.ColumnName = "FS_RECEIVERNAME";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "对方毛重";
     this.dataColumn15.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "对方皮重";
     this.dataColumn16.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "流向";
     this.dataColumn18.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "毛重重量";
     this.dataColumn19.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "毛重计量点";
     this.dataColumn20.ColumnName = "FS_GROSSPOINT";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "毛重计量员";
     this.dataColumn21.ColumnName = "FS_GROSSPERSON";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "毛重计量时间";
     this.dataColumn22.ColumnName = "FD_GROSSDATETIME";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "毛重计量班次";
     this.dataColumn23.ColumnName = "FS_GROSSSHIFT";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "皮重重量";
     this.dataColumn24.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "皮重计量点";
     this.dataColumn25.ColumnName = "FS_TAREPOINT";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "皮重计量员";
     this.dataColumn26.ColumnName = "FS_TAREPERSON";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "皮重计量时间";
     this.dataColumn27.ColumnName = "FD_TAREDATETIME";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "皮重计量班次";
     this.dataColumn28.ColumnName = "FS_TARESHIFT";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "净重";
     this.dataColumn41.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "取样时间";
     this.dataColumn42.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "取样员";
     this.dataColumn43.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "上传时间";
     this.dataColumn47.ColumnName = "FD_TOCENTERTIME";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "计量重磅日期";
     this.dataColumn48.ColumnName = "FD_ACCOUNTDATE";
     //
     // dataColumn49
     //
     this.dataColumn49.Caption = "上传的日期";
     this.dataColumn49.ColumnName = "FD_TESTIFYDATE";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "对方净重";
     this.dataColumn1.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "供应商代码";
     this.dataColumn40.ColumnName = "FS_GY";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "承运商代码";
     this.dataColumn44.ColumnName = "FS_CY";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "收货方代码";
     this.dataColumn45.ColumnName = "FS_SH";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "流向代码";
     this.dataColumn46.ColumnName = "FS_TYPECODE";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "物料编号";
     this.dataColumn50.ColumnName = "FS_MATERIAL";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "记账日期";
     this.dataColumn52.ColumnName = "FS_JZDATE";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "外协标志";
     this.dataColumn53.ColumnName = "FS_WXPAYFLAG";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "取样点";
     this.dataColumn31.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "卸车员";
     this.dataColumn32.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "卸车时间";
     this.dataColumn34.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "卸车点";
     this.dataColumn35.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "验收员";
     this.dataColumn36.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "验收时间";
     this.dataColumn38.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "验收点";
     this.dataColumn54.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "结算单号";
     this.dataColumn55.ColumnName = "FS_JSDH";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "财务确认";
     this.dataColumn56.ColumnName = "FS_CWQR";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "应扣量";
     this.dataColumn58.ColumnName = "FS_YKL";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "应扣比例";
     this.dataColumn59.ColumnName = "FS_YKBL";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "扣后净重";
     this.dataColumn60.ColumnName = "FS_KHJZ";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "收货地点";
     this.dataColumn61.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn62
     //
     this.dataColumn62.Caption = "发货地点";
     this.dataColumn62.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "磅房启用状态";
     this.dataColumn57.ColumnName = "FS_DATASTATE";
     //
     // dataColumn63
     //
     this.dataColumn63.Caption = "炉号";
     this.dataColumn63.ColumnName = "FS_STOVENO";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "供应单位代码";
     this.dataColumn64.ColumnName = "FS_PROVIDER";
     //
     // dataColumn65
     //
     this.dataColumn65.Caption = "供应单位";
     this.dataColumn65.ColumnName = "FS_PROVIDERNAME";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "收货备注";
     this.dataColumn66.ColumnName = "FS_BZ";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "录入状态";
     this.dataColumn67.ColumnName = "FS_MEMO";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "复磅确认员";
     this.dataColumn68.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "复磅确认点";
     this.dataColumn69.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "复磅确认时间";
     this.dataColumn70.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "复磅标记";
     this.dataColumn71.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "验收确认";
     this.dataColumn72.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "卸货确认";
     this.dataColumn73.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "取样确认";
     this.dataColumn74.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "结算日期";
     this.dataColumn75.ColumnName = "FS_CREATEJSRQ";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "矿石单价(元)";
     this.dataColumn76.ColumnName = "FN_KSDJ";
     //
     // dataColumn77
     //
     this.dataColumn77.Caption = "发货日期";
     this.dataColumn77.ColumnName = "FD_FHRQ";
     //
     // dataColumn78
     //
     this.dataColumn78.Caption = "运费单价";
     this.dataColumn78.ColumnName = "FN_YFDJ";
     //
     // dataColumn79
     //
     this.dataColumn79.Caption = "超额途耗";
     this.dataColumn79.ColumnName = "FN_CETH";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "实际途耗";
     this.dataColumn80.ColumnName = "FN_SJTH";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "扣途耗";
     this.dataColumn81.ColumnName = "FN_KTH";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "应付金额";
     this.dataColumn82.ColumnName = "FN_YFJE";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "发货净重";
     this.dataColumn83.ColumnName = "FN_FHJZ";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "实付金额";
     this.dataColumn84.ColumnName = "FN_SFJE";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "二次计量时间";
     this.dataColumn85.ColumnName = "FD_ECJLSJ";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "车证卡号";
     this.dataColumn86.ColumnName = "FS_CARDNUMBER";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn8,
     this.dataColumn11,
     this.dataColumn14,
     this.dataColumn17,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn33,
     this.dataColumn37,
     this.dataColumn39});
     this.dataTable2.TableName = "计量图片";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FB_IMAGE1";
     this.dataColumn4.DataType = typeof(byte[]);
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FB_IMAGE2";
     this.dataColumn5.DataType = typeof(byte[]);
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FB_IMAGE3";
     this.dataColumn6.DataType = typeof(byte[]);
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FB_IMAGE4";
     this.dataColumn8.DataType = typeof(byte[]);
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FB_IMAGE5";
     this.dataColumn11.DataType = typeof(byte[]);
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FS_CURVEIMAGEONE";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FB_IMAGE7";
     this.dataColumn17.DataType = typeof(byte[]);
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FB_IMAGE8";
     this.dataColumn29.DataType = typeof(byte[]);
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FB_IMAGE9";
     this.dataColumn30.DataType = typeof(byte[]);
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FB_IMAGE10";
     this.dataColumn33.DataType = typeof(byte[]);
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FB_IMAGE11";
     this.dataColumn37.DataType = typeof(byte[]);
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FS_CURVEIMAGETWO";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn51});
     this.dataTable3.TableName = "计量点编号";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_POINTCODE";
     //
     // ultraGroupBox3
     //
     appearance9.BackColor = System.Drawing.Color.White;
     appearance9.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGroupBox3.Appearance = appearance9;
     this.ultraGroupBox3.Controls.Add(this.ultTPPic);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox3, null);
     this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(1028, 342);
     this.ultraGroupBox3.TabIndex = 0;
     this.ultraGroupBox3.Text = "计量图片";
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultTPPic
     //
     appearance10.BackColor = System.Drawing.Color.White;
     appearance10.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance10.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultTPPic.Appearance = appearance10;
     this.coreBind.SetDatabasecommand(this.ultTPPic, null);
     this.ultTPPic.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultTPPic.LargeTileOrientation = Infragistics.Win.Misc.TileOrientation.Horizontal;
     this.ultTPPic.LargeTilePosition = Infragistics.Win.Misc.LargeTilePosition.Right;
     this.ultTPPic.Location = new System.Drawing.Point(3, 18);
     this.ultTPPic.Name = "ultTPPic";
     this.ultTPPic.NormalModeDimensions = new System.Drawing.Size(4, 3);
     this.ultTPPic.Size = new System.Drawing.Size(1022, 321);
     this.ultTPPic.StyleLibraryName = "Offic2007";
     this.ultTPPic.StyleSetName = "Offic2007";
     this.ultTPPic.TabIndex = 0;
     this.ultTPPic.Tiles.Add(this.ultraTile1);
     this.ultTPPic.Tiles.Add(this.ultraTile2);
     this.ultTPPic.Tiles.Add(this.ultraTile3);
     this.ultTPPic.Tiles.Add(this.ultraTile4);
     this.ultTPPic.Tiles.Add(this.ultraTile5);
     this.ultTPPic.Tiles.Add(this.ultraTile6);
     this.ultTPPic.Tiles.Add(this.ultraTile7);
     this.ultTPPic.Tiles.Add(this.ultraTile8);
     this.ultTPPic.Tiles.Add(this.ultraTile9);
     this.ultTPPic.Tiles.Add(this.ultraTile10);
     this.ultTPPic.Tiles.Add(this.ultraTile11);
     this.ultTPPic.Tiles.Add(this.ultraTile12);
     appearance7.AlphaLevel = ((short)(214));
     appearance7.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance7.BackColor2 = System.Drawing.SystemColors.Desktop;
     appearance7.BackColorAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
     appearance7.BorderColor3DBase = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance7.ForeColorDisabled = System.Drawing.Color.Transparent;
     this.ultTPPic.TileSettings.Appearance = appearance7;
     appearance8.AlphaLevel = ((short)(253));
     appearance8.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     appearance8.BackColor2 = System.Drawing.SystemColors.Highlight;
     appearance8.BackColorAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
     appearance8.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Centered;
     appearance8.ImageHAlign = Infragistics.Win.HAlign.Center;
     appearance8.ImageVAlign = Infragistics.Win.VAlign.Middle;
     this.ultTPPic.TileSettings.HeaderAppearance = appearance8;
     this.ultTPPic.TileSettings.HeaderPosition = Infragistics.Win.Misc.TileHeaderPosition.Top;
     this.coreBind.SetVerification(this.ultTPPic, null);
     //
     // ultraTile1
     //
     this.ultraTile1.Caption = "图像1";
     this.ultraTile1.Control = this.ulpic1;
     this.ultraTile1.Controls.Add(this.ulpic1);
     this.coreBind.SetDatabasecommand(this.ultraTile1, null);
     this.ultraTile1.Name = "ultraTile1";
     this.ultraTile1.PositionInNormalMode = new System.Drawing.Point(0, 0);
     appearance12.BackColor = System.Drawing.Color.White;
     appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile1.Settings.Appearance = appearance12;
     appearance13.BackColor = System.Drawing.Color.White;
     appearance13.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance13.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile1.Settings.HeaderAppearance = appearance13;
     this.ultraTile1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraTile1, null);
     //
     // ulpic1
     //
     this.ulpic1.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic1, null);
     this.ulpic1.Location = new System.Drawing.Point(0, 18);
     this.ulpic1.Name = "ulpic1";
     this.ulpic1.Size = new System.Drawing.Size(238, 82);
     this.ulpic1.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic1, null);
     //
     // ultraTile2
     //
     this.ultraTile2.Caption = "图像2";
     this.ultraTile2.Control = this.ulpic2;
     this.ultraTile2.Controls.Add(this.ulpic2);
     this.coreBind.SetDatabasecommand(this.ultraTile2, null);
     this.ultraTile2.Name = "ultraTile2";
     this.ultraTile2.PositionInNormalMode = new System.Drawing.Point(1, 0);
     this.ultraTile2.Settings.Appearance = appearance12;
     this.ultraTile2.Settings.HeaderAppearance = appearance13;
     this.ultraTile2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraTile2, null);
     //
     // ulpic2
     //
     this.ulpic2.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic2, null);
     this.ulpic2.Location = new System.Drawing.Point(0, 18);
     this.ulpic2.Name = "ulpic2";
     this.ulpic2.Size = new System.Drawing.Size(238, 82);
     this.ulpic2.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic2, null);
     //
     // ultraTile3
     //
     this.ultraTile3.Caption = "图像3";
     this.ultraTile3.Control = this.ulpic3;
     this.ultraTile3.Controls.Add(this.ulpic3);
     this.coreBind.SetDatabasecommand(this.ultraTile3, null);
     this.ultraTile3.Name = "ultraTile3";
     this.ultraTile3.PositionInNormalMode = new System.Drawing.Point(2, 0);
     this.ultraTile3.Settings.Appearance = appearance12;
     this.ultraTile3.Settings.HeaderAppearance = appearance13;
     this.ultraTile3.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraTile3, null);
     //
     // ulpic3
     //
     this.ulpic3.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic3, null);
     this.ulpic3.Location = new System.Drawing.Point(0, 18);
     this.ulpic3.Name = "ulpic3";
     this.ulpic3.Size = new System.Drawing.Size(238, 82);
     this.ulpic3.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic3, null);
     //
     // ultraTile4
     //
     this.ultraTile4.Caption = "图像4";
     this.ultraTile4.Control = this.ulpic4;
     this.ultraTile4.Controls.Add(this.ulpic4);
     this.coreBind.SetDatabasecommand(this.ultraTile4, null);
     this.ultraTile4.Name = "ultraTile4";
     this.ultraTile4.PositionInNormalMode = new System.Drawing.Point(3, 0);
     this.ultraTile4.Settings.Appearance = appearance12;
     this.ultraTile4.Settings.HeaderAppearance = appearance13;
     this.ultraTile4.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraTile4, null);
     //
     // ulpic4
     //
     this.ulpic4.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic4, null);
     this.ulpic4.Location = new System.Drawing.Point(0, 18);
     this.ulpic4.Name = "ulpic4";
     this.ulpic4.Size = new System.Drawing.Size(238, 82);
     this.ulpic4.TabIndex = 0;
     this.coreBind.SetVerification(this.ulpic4, null);
     //
     // ultraTile5
     //
     this.ultraTile5.Caption = "图像5";
     this.ultraTile5.Control = this.ulpic5;
     this.ultraTile5.Controls.Add(this.ulpic5);
     this.coreBind.SetDatabasecommand(this.ultraTile5, null);
     this.ultraTile5.Name = "ultraTile5";
     this.ultraTile5.PositionInNormalMode = new System.Drawing.Point(0, 1);
     this.ultraTile5.Settings.Appearance = appearance12;
     this.ultraTile5.Settings.HeaderAppearance = appearance13;
     this.ultraTile5.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraTile5, null);
     //
     // ulpic5
     //
     this.ulpic5.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic5, null);
     this.ulpic5.Location = new System.Drawing.Point(0, 18);
     this.ulpic5.Name = "ulpic5";
     this.ulpic5.Size = new System.Drawing.Size(238, 82);
     this.ulpic5.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic5, null);
     //
     // ultraTile6
     //
     this.ultraTile6.Caption = "一次计量动态曲线图数据";
     this.ultraTile6.Control = this.ultraChart11;
     this.ultraTile6.Controls.Add(this.ultraChart11);
     this.coreBind.SetDatabasecommand(this.ultraTile6, null);
     this.ultraTile6.Name = "ultraTile6";
     this.ultraTile6.PositionInNormalMode = new System.Drawing.Point(1, 1);
     this.ultraTile6.Settings.Appearance = appearance12;
     this.ultraTile6.Settings.HeaderAppearance = appearance13;
     this.ultraTile6.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraTile6, null);
     //
     //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
     //			'ChartType' must be persisted ahead of any Axes change made in design time.
     //
     this.ultraChart11.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart11
     //
     this.ultraChart11.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     paintElement1.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
     paintElement1.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     this.ultraChart11.Axis.PE = paintElement1;
     this.ultraChart11.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X.Labels.Visible = false;
     this.ultraChart11.Axis.X.LineThickness = 1;
     this.ultraChart11.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart11.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart11.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.X.Visible = false;
     this.ultraChart11.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart11.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.X2.Labels.Visible = false;
     this.ultraChart11.Axis.X2.LineThickness = 1;
     this.ultraChart11.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart11.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.X2.Visible = false;
     this.ultraChart11.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart11.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y.LineThickness = 1;
     this.ultraChart11.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Y.TickmarkInterval = 100;
     this.ultraChart11.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Y.Visible = true;
     this.ultraChart11.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart11.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Y2.Labels.Visible = false;
     this.ultraChart11.Axis.Y2.LineThickness = 1;
     this.ultraChart11.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Y2.TickmarkInterval = 100;
     this.ultraChart11.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Y2.Visible = false;
     this.ultraChart11.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z.Labels.Visible = false;
     this.ultraChart11.Axis.Z.LineThickness = 1;
     this.ultraChart11.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Z.Visible = false;
     this.ultraChart11.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart11.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart11.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart11.Axis.Z2.Labels.Visible = false;
     this.ultraChart11.Axis.Z2.LineThickness = 1;
     this.ultraChart11.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart11.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart11.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart11.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart11.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart11.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart11.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart11.Axis.Z2.Visible = false;
     this.ultraChart11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart11.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart11.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart11.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart11.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     this.coreBind.SetDatabasecommand(this.ultraChart11, null);
     this.ultraChart11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart11.Effects.Effects.Add(gradientEffect1);
     this.ultraChart11.Location = new System.Drawing.Point(0, 18);
     this.ultraChart11.Name = "ultraChart11";
     this.ultraChart11.Size = new System.Drawing.Size(238, 82);
     this.ultraChart11.TabIndex = 5;
     this.ultraChart11.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart11.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart11, null);
     //
     // ultraTile7
     //
     this.ultraTile7.Caption = "图像7";
     this.ultraTile7.Control = this.ulpic7;
     this.ultraTile7.Controls.Add(this.ulpic7);
     this.coreBind.SetDatabasecommand(this.ultraTile7, null);
     this.ultraTile7.Name = "ultraTile7";
     this.ultraTile7.PositionInNormalMode = new System.Drawing.Point(2, 1);
     this.ultraTile7.Settings.Appearance = appearance12;
     this.ultraTile7.Settings.HeaderAppearance = appearance13;
     this.ultraTile7.TabIndex = 6;
     this.coreBind.SetVerification(this.ultraTile7, null);
     //
     // ulpic7
     //
     this.ulpic7.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic7, null);
     this.ulpic7.Location = new System.Drawing.Point(0, 18);
     this.ulpic7.Name = "ulpic7";
     this.ulpic7.Size = new System.Drawing.Size(238, 82);
     this.ulpic7.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic7, null);
     //
     // ultraTile8
     //
     this.ultraTile8.Caption = "图像8";
     this.ultraTile8.Control = this.ulpic8;
     this.ultraTile8.Controls.Add(this.ulpic8);
     this.coreBind.SetDatabasecommand(this.ultraTile8, null);
     this.ultraTile8.Name = "ultraTile8";
     this.ultraTile8.PositionInNormalMode = new System.Drawing.Point(3, 1);
     this.ultraTile8.Settings.Appearance = appearance12;
     this.ultraTile8.Settings.HeaderAppearance = appearance13;
     this.ultraTile8.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraTile8, null);
     //
     // ulpic8
     //
     this.ulpic8.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic8, null);
     this.ulpic8.Location = new System.Drawing.Point(0, 18);
     this.ulpic8.Name = "ulpic8";
     this.ulpic8.Size = new System.Drawing.Size(238, 82);
     this.ulpic8.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic8, null);
     //
     // ultraTile9
     //
     this.ultraTile9.Caption = "图像9";
     this.ultraTile9.Control = this.ulpic9;
     this.ultraTile9.Controls.Add(this.ulpic9);
     this.coreBind.SetDatabasecommand(this.ultraTile9, null);
     this.ultraTile9.Name = "ultraTile9";
     this.ultraTile9.PositionInNormalMode = new System.Drawing.Point(0, 2);
     this.ultraTile9.Settings.Appearance = appearance12;
     this.ultraTile9.Settings.HeaderAppearance = appearance13;
     this.ultraTile9.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraTile9, null);
     //
     // ulpic9
     //
     this.ulpic9.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic9, null);
     this.ulpic9.Location = new System.Drawing.Point(0, 18);
     this.ulpic9.Name = "ulpic9";
     this.ulpic9.Size = new System.Drawing.Size(238, 82);
     this.ulpic9.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic9, null);
     //
     // ultraTile10
     //
     this.ultraTile10.Caption = "图像10";
     this.ultraTile10.Control = this.ulpic10;
     this.ultraTile10.Controls.Add(this.ulpic10);
     this.coreBind.SetDatabasecommand(this.ultraTile10, null);
     this.ultraTile10.Name = "ultraTile10";
     this.ultraTile10.PositionInNormalMode = new System.Drawing.Point(1, 2);
     this.ultraTile10.Settings.Appearance = appearance12;
     this.ultraTile10.Settings.HeaderAppearance = appearance13;
     this.ultraTile10.TabIndex = 9;
     this.coreBind.SetVerification(this.ultraTile10, null);
     //
     // ulpic10
     //
     this.ulpic10.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic10, null);
     this.ulpic10.Location = new System.Drawing.Point(0, 18);
     this.ulpic10.Name = "ulpic10";
     this.ulpic10.Size = new System.Drawing.Size(238, 82);
     this.ulpic10.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic10, null);
     //
     // ultraTile11
     //
     this.ultraTile11.Caption = "图像11";
     this.ultraTile11.Control = this.ulpic11;
     this.ultraTile11.Controls.Add(this.ulpic11);
     this.coreBind.SetDatabasecommand(this.ultraTile11, null);
     this.ultraTile11.Name = "ultraTile11";
     this.ultraTile11.PositionInNormalMode = new System.Drawing.Point(2, 2);
     this.ultraTile11.Settings.Appearance = appearance12;
     this.ultraTile11.Settings.HeaderAppearance = appearance13;
     this.ultraTile11.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraTile11, null);
     //
     // ulpic11
     //
     this.ulpic11.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic11, null);
     this.ulpic11.Location = new System.Drawing.Point(0, 18);
     this.ulpic11.Name = "ulpic11";
     this.ulpic11.Size = new System.Drawing.Size(238, 82);
     this.ulpic11.TabIndex = 2;
     this.coreBind.SetVerification(this.ulpic11, null);
     //
     // ultraTile12
     //
     this.ultraTile12.Caption = "二次计量动态曲线图数据";
     this.ultraTile12.Control = this.ultraChart12;
     this.ultraTile12.Controls.Add(this.ultraChart12);
     this.coreBind.SetDatabasecommand(this.ultraTile12, null);
     this.ultraTile12.Name = "ultraTile12";
     this.ultraTile12.PositionInNormalMode = new System.Drawing.Point(3, 2);
     this.ultraTile12.Settings.Appearance = appearance12;
     this.ultraTile12.Settings.HeaderAppearance = appearance13;
     this.ultraTile12.TabIndex = 11;
     this.coreBind.SetVerification(this.ultraTile12, null);
     //
     //			'UltraChart' properties's serialization: Since 'ChartType' changes the way axes look,
     //			'ChartType' must be persisted ahead of any Axes change made in design time.
     //
     this.ultraChart12.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart12
     //
     this.ultraChart12.Axis.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     paintElement2.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
     paintElement2.Fill = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(248)))), ((int)(((byte)(220)))));
     this.ultraChart12.Axis.PE = paintElement2;
     this.ultraChart12.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X.Labels.Visible = false;
     this.ultraChart12.Axis.X.LineThickness = 1;
     this.ultraChart12.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart12.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart12.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.X.Visible = false;
     this.ultraChart12.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart12.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.X2.Labels.Visible = false;
     this.ultraChart12.Axis.X2.LineThickness = 1;
     this.ultraChart12.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart12.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.X2.Visible = false;
     this.ultraChart12.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart12.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y.LineThickness = 1;
     this.ultraChart12.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Y.TickmarkInterval = 100;
     this.ultraChart12.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Y.Visible = true;
     this.ultraChart12.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart12.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Y2.Labels.Visible = false;
     this.ultraChart12.Axis.Y2.LineThickness = 1;
     this.ultraChart12.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Y2.TickmarkInterval = 100;
     this.ultraChart12.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Y2.Visible = false;
     this.ultraChart12.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z.Labels.Visible = false;
     this.ultraChart12.Axis.Z.LineThickness = 1;
     this.ultraChart12.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Z.Visible = false;
     this.ultraChart12.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart12.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart12.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart12.Axis.Z2.Labels.Visible = false;
     this.ultraChart12.Axis.Z2.LineThickness = 1;
     this.ultraChart12.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart12.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart12.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart12.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart12.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart12.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart12.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart12.Axis.Z2.Visible = false;
     this.ultraChart12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart12.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart12.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart12.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart12.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     this.coreBind.SetDatabasecommand(this.ultraChart12, null);
     this.ultraChart12.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart12.Effects.Effects.Add(gradientEffect2);
     this.ultraChart12.Location = new System.Drawing.Point(0, 18);
     this.ultraChart12.Name = "ultraChart12";
     this.ultraChart12.Size = new System.Drawing.Size(238, 82);
     this.ultraChart12.TabIndex = 4;
     this.ultraChart12.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart12.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart12, null);
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "结算单位";
     this.dataColumn87.ColumnName = "FS_SETTLEMENTNAME";
     //
     // MeasureDataQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1028, 666);
     this.Controls.Add(this.MeasureDataQuery_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "MeasureDataQuery";
     this.Text = "汽车衡计量数据查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.MeasureDataQuery_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel1_Fill_Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.MeasureDataQuery_Fill_Panel.ResumeLayout(false);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultTPPic)).EndInit();
     this.ultTPPic.ResumeLayout(false);
     this.ultraTile1.ResumeLayout(false);
     this.ultraTile2.ResumeLayout(false);
     this.ultraTile3.ResumeLayout(false);
     this.ultraTile4.ResumeLayout(false);
     this.ultraTile5.ResumeLayout(false);
     this.ultraTile6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).EndInit();
     this.ultraTile7.ResumeLayout(false);
     this.ultraTile8.ResumeLayout(false);
     this.ultraTile9.ResumeLayout(false);
     this.ultraTile10.ResumeLayout(false);
     this.ultraTile11.ResumeLayout(false);
     this.ultraTile12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart12)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADVISESPEC");
     Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSTYPE");
     Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_FLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 174747859);
     Infragistics.Win.Appearance appearance264 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance265 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance266 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance267 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance268 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance269 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("冶炼炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool40 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Get");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AddProdiction");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool44 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WeightPlan_BP));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("冶炼炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool46 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Get");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool31 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AddProdiction");
     Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance178 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TECHCARDNO");
     Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ORDERNO");
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_PLANTIME");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_COMPLETEFLAG");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PERSON");
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ORDER");
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHEDCOUNT");
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ISRETURNBILLET");
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance176 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("预报时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool58 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modify");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Up");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Down");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToTop");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool32 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToBotton");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool33 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool51 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Up");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool52 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Down");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool53 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToTop");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool54 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToBotton");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool55 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool56 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("预报时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool29 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool33 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool(" ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool34 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("炉号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool59 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modify");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("delete");
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.Appearance appearance129 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance128 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance127 = new Infragistics.Win.Appearance();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataTable4 = new System.Data.DataTable();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn78 = new System.Data.DataColumn();
     this.dataColumn79 = new System.Data.DataColumn();
     this.dataColumn80 = new System.Data.DataColumn();
     this.dataColumn81 = new System.Data.DataColumn();
     this.dataColumn82 = new System.Data.DataColumn();
     this.dataColumn83 = new System.Data.DataColumn();
     this.dataColumn84 = new System.Data.DataColumn();
     this.dataColumn85 = new System.Data.DataColumn();
     this.dataColumn86 = new System.Data.DataColumn();
     this.dataColumn87 = new System.Data.DataColumn();
     this.dataColumn88 = new System.Data.DataColumn();
     this.dataColumn89 = new System.Data.DataColumn();
     this.dataColumn90 = new System.Data.DataColumn();
     this.dataColumn91 = new System.Data.DataColumn();
     this.dataColumn92 = new System.Data.DataColumn();
     this.dataColumn93 = new System.Data.DataColumn();
     this.dataColumn94 = new System.Data.DataColumn();
     this.dataColumn95 = new System.Data.DataColumn();
     this.dataColumn96 = new System.Data.DataColumn();
     this.dataColumn97 = new System.Data.DataColumn();
     this.dataColumn98 = new System.Data.DataColumn();
     this.dataColumn99 = new System.Data.DataColumn();
     this.dataColumn100 = new System.Data.DataColumn();
     this.dataColumn101 = new System.Data.DataColumn();
     this.dataColumn102 = new System.Data.DataColumn();
     this.dataColumn103 = new System.Data.DataColumn();
     this.dataColumn104 = new System.Data.DataColumn();
     this.dataColumn105 = new System.Data.DataColumn();
     this.dataColumn106 = new System.Data.DataColumn();
     this.dataColumn107 = new System.Data.DataColumn();
     this.dataColumn108 = new System.Data.DataColumn();
     this.dataColumn109 = new System.Data.DataColumn();
     this.dataColumn110 = new System.Data.DataColumn();
     this.dataColumn111 = new System.Data.DataColumn();
     this.dataColumn112 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.panel2 = new System.Windows.Forms.Panel();
     this.cbAnalysisTime = new System.Windows.Forms.CheckBox();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.panel2_Fill_Panel = new System.Windows.Forms.Panel();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this._panel2_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel2_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel2_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel2_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
     this.txtStoveGD1 = new System.Windows.Forms.TextBox();
     this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
     this.dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
     this.ClientArea_Fill_Panel_1 = new System.Windows.Forms.Panel();
     this._ClientArea_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager2 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._ClientArea_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_1_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.label28 = new System.Windows.Forms.Label();
     this.tbAs = new System.Windows.Forms.TextBox();
     this.tbAls = new System.Windows.Forms.TextBox();
     this.tbSb = new System.Windows.Forms.TextBox();
     this.tbTi = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.cbBilletReturn = new System.Windows.Forms.ComboBox();
     this.label12 = new System.Windows.Forms.Label();
     this.cbTransType = new System.Windows.Forms.ComboBox();
     this.LxComb = new System.Windows.Forms.ComboBox();
     this.lbTransType = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.cbx_SteelSendType = new System.Windows.Forms.ComboBox();
     this.label45 = new System.Windows.Forms.Label();
     this.cbx_OrgUse = new System.Windows.Forms.ComboBox();
     this.label44 = new System.Windows.Forms.Label();
     this.tbADVSPEC = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.tbLength = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.tbPerson = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.tbP = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.tbS = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.tbMn = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tbSi = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbC = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.tbCount = new System.Windows.Forms.TextBox();
     this.cbSpec = new System.Windows.Forms.ComboBox();
     this.cbSteelType = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tbCardNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tbStoveNo = new System.Windows.Forms.TextBox();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
     this.dateTimePicker5 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker6 = new System.Windows.Forms.DateTimePicker();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.panel5 = new System.Windows.Forms.Panel();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.ultraTabPageControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     this.ultraGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     this.ultraPanel3.ClientArea.SuspendLayout();
     this.ultraPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     this.ultraPanel4.SuspendLayout();
     this.ultraPanel5.ClientArea.SuspendLayout();
     this.ultraPanel5.SuspendLayout();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
     this.ultraTabControl2.SuspendLayout();
     this.ultraTabPageControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
     this.ultraGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     this.ultraPanel6.ClientArea.SuspendLayout();
     this.ultraPanel6.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox3);
     this.ultraTabPageControl1.Controls.Add(this.panel2);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl1, null);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 25);
     this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraTabPageControl1.Name = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size = new System.Drawing.Size(1321, 479);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox3.Controls.Add(this.dateTimePicker1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox3, null);
     this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox3.Location = new System.Drawing.Point(0, 38);
     this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(1321, 441);
     this.ultraGroupBox3.TabIndex = 12;
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     appearance34.TextHAlignAsString = "Center";
     appearance34.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance34;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(114, 0);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 4;
     appearance35.TextHAlignAsString = "Center";
     appearance35.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance35;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
     appearance36.TextHAlignAsString = "Center";
     appearance36.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance36;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     appearance37.TextHAlignAsString = "Center";
     appearance37.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance37;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     appearance38.TextHAlignAsString = "Center";
     appearance38.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance38;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
     appearance39.TextHAlignAsString = "Center";
     appearance39.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance39;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn6.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     appearance40.TextHAlignAsString = "Center";
     appearance40.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance40;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     appearance41.TextHAlignAsString = "Center";
     appearance41.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance41;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     appearance42.TextHAlignAsString = "Center";
     appearance42.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance42;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn9.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     appearance43.TextHAlignAsString = "Center";
     appearance43.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance43;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     appearance44.TextHAlignAsString = "Center";
     appearance44.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance44;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 4;
     appearance45.TextHAlignAsString = "Center";
     appearance45.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance45;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     appearance46.TextHAlignAsString = "Center";
     appearance46.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance46;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 3;
     appearance47.TextHAlignAsString = "Center";
     appearance47.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance47;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 36;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 46);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20});
     ultraGridGroup1.Header.Caption = "化学成分";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 12;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 18;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 3;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance264.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance264;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowColSizing = Infragistics.Win.UltraWinGrid.AllowColSizing.Synchronized;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance265.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance265;
     appearance266.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance266;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance267.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance267.TextHAlignAsString = "Center";
     appearance267.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance267;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance268.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance268;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance269.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance269.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance269.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance269.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance269;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 0);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1315, 438);
     this.ultraGrid1.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable4,
     this.dataTable3});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn45,
     this.dataColumn54,
     this.dataColumn21,
     this.dataColumn11,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "工艺流动卡号";
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "炉号";
     this.dataColumn2.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "钢种";
     this.dataColumn3.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "规格";
     this.dataColumn4.ColumnName = "FS_GP_SPE";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "长度";
     this.dataColumn5.ColumnName = "FN_LENGTH";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "C";
     this.dataColumn6.ColumnName = "FN_GP_C";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "Si";
     this.dataColumn7.ColumnName = "FN_GP_SI";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "Mn";
     this.dataColumn8.ColumnName = "FN_GP_MN";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "S";
     this.dataColumn9.ColumnName = "FN_GP_S";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "P";
     this.dataColumn10.ColumnName = "FN_GP_P";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "判定员";
     this.dataColumn22.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "分析时间";
     this.dataColumn23.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "建议轧制规格";
     this.dataColumn45.ColumnName = "FS_ADVISESPEC";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "运送方式";
     this.dataColumn54.ColumnName = "FS_TRANSTYPE";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "去向";
     this.dataColumn21.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "块数";
     this.dataColumn11.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "Ti";
     this.dataColumn13.ColumnName = "FN_GP_TI";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "Sb";
     this.dataColumn14.ColumnName = "FN_GP_SB";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "Als";
     this.dataColumn15.ColumnName = "FN_GP_ALS";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "AS";
     this.dataColumn16.ColumnName = "FN_GP_AS";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn41,
     this.dataColumn20,
     this.dataColumn56,
     this.dataColumn12});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "工艺流动卡号";
     this.dataColumn25.ColumnName = "FS_TECHCARDNO";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "炉号";
     this.dataColumn26.ColumnName = "FS_STOVENO";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "钢种";
     this.dataColumn27.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "规格";
     this.dataColumn28.ColumnName = "FS_SPEC";
     //
     // dataColumn29
     //
     this.dataColumn29.Caption = "长度";
     this.dataColumn29.ColumnName = "FN_LENGTH";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "条数";
     this.dataColumn30.ColumnName = "FN_COUNT";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "订单号";
     this.dataColumn31.ColumnName = "FS_ORDERNO";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "预报时间";
     this.dataColumn38.ColumnName = "FD_PLANTIME";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "完炉标志";
     this.dataColumn39.ColumnName = "FS_COMPLETEFLAG";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "预报员";
     this.dataColumn41.ColumnName = "FS_PERSON";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "过磅序号";
     this.dataColumn20.ColumnName = "FS_ORDER";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "已计量块数";
     this.dataColumn56.ColumnName = "WEIGHEDCOUNT";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "返回坯";
     this.dataColumn12.ColumnName = "FN_ISRETURNBILLET";
     //
     // dataTable4
     //
     this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn52,
     this.dataColumn78,
     this.dataColumn79,
     this.dataColumn80,
     this.dataColumn81,
     this.dataColumn82,
     this.dataColumn83,
     this.dataColumn84,
     this.dataColumn85,
     this.dataColumn86,
     this.dataColumn87,
     this.dataColumn88,
     this.dataColumn89,
     this.dataColumn90,
     this.dataColumn91,
     this.dataColumn92,
     this.dataColumn93,
     this.dataColumn94,
     this.dataColumn95,
     this.dataColumn96,
     this.dataColumn97,
     this.dataColumn98,
     this.dataColumn99,
     this.dataColumn100,
     this.dataColumn101,
     this.dataColumn102,
     this.dataColumn103,
     this.dataColumn104,
     this.dataColumn105,
     this.dataColumn106,
     this.dataColumn107,
     this.dataColumn108,
     this.dataColumn109,
     this.dataColumn110,
     this.dataColumn111,
     this.dataColumn112});
     this.dataTable4.TableName = "检验数据表";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "炉号";
     //
     // dataColumn78
     //
     this.dataColumn78.ColumnName = "样号";
     //
     // dataColumn79
     //
     this.dataColumn79.ColumnName = "钢种";
     //
     // dataColumn80
     //
     this.dataColumn80.ColumnName = "班次";
     //
     // dataColumn81
     //
     this.dataColumn81.ColumnName = "日期";
     //
     // dataColumn82
     //
     this.dataColumn82.ColumnName = "时间";
     //
     // dataColumn83
     //
     this.dataColumn83.ColumnName = "C";
     //
     // dataColumn84
     //
     this.dataColumn84.ColumnName = "Si";
     //
     // dataColumn85
     //
     this.dataColumn85.ColumnName = "Mn";
     //
     // dataColumn86
     //
     this.dataColumn86.ColumnName = "P";
     //
     // dataColumn87
     //
     this.dataColumn87.ColumnName = "S";
     //
     // dataColumn88
     //
     this.dataColumn88.ColumnName = "Cr";
     //
     // dataColumn89
     //
     this.dataColumn89.ColumnName = "Ni";
     //
     // dataColumn90
     //
     this.dataColumn90.ColumnName = "W";
     //
     // dataColumn91
     //
     this.dataColumn91.ColumnName = "V";
     //
     // dataColumn92
     //
     this.dataColumn92.ColumnName = "Mo";
     //
     // dataColumn93
     //
     this.dataColumn93.ColumnName = "Ti";
     //
     // dataColumn94
     //
     this.dataColumn94.ColumnName = "Cu";
     //
     // dataColumn95
     //
     this.dataColumn95.ColumnName = "Al";
     //
     // dataColumn96
     //
     this.dataColumn96.ColumnName = "B";
     //
     // dataColumn97
     //
     this.dataColumn97.ColumnName = "Co";
     //
     // dataColumn98
     //
     this.dataColumn98.ColumnName = "Sn";
     //
     // dataColumn99
     //
     this.dataColumn99.ColumnName = "Pb";
     //
     // dataColumn100
     //
     this.dataColumn100.ColumnName = "Sb";
     //
     // dataColumn101
     //
     this.dataColumn101.ColumnName = "Bi";
     //
     // dataColumn102
     //
     this.dataColumn102.ColumnName = "Nb";
     //
     // dataColumn103
     //
     this.dataColumn103.ColumnName = "Ca";
     //
     // dataColumn104
     //
     this.dataColumn104.ColumnName = "Mg";
     //
     // dataColumn105
     //
     this.dataColumn105.ColumnName = "Ce";
     //
     // dataColumn106
     //
     this.dataColumn106.ColumnName = "N";
     //
     // dataColumn107
     //
     this.dataColumn107.ColumnName = "Zr";
     //
     // dataColumn108
     //
     this.dataColumn108.ColumnName = "Bs";
     //
     // dataColumn109
     //
     this.dataColumn109.ColumnName = "Ns";
     //
     // dataColumn110
     //
     this.dataColumn110.ColumnName = "Nt";
     //
     // dataColumn111
     //
     this.dataColumn111.ColumnName = "Fe";
     //
     // dataColumn112
     //
     this.dataColumn112.ColumnName = "人员";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn24,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn51});
     this.dataTable3.TableName = "Table3";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "总重量";
     this.dataColumn24.ColumnName = "FN_TOTALWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "总支数";
     this.dataColumn42.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "炉号";
     this.dataColumn43.ColumnName = "FS_STOVENO";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FN_TOTALBILLET";
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(181, 31);
     this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(72, 25);
     this.dateTimePicker1.TabIndex = 741;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.cbAnalysisTime);
     this.panel2.Controls.Add(this.tbQueryStoveNo);
     this.panel2.Controls.Add(this.panel2_Fill_Panel);
     this.panel2.Controls.Add(this.dateTimePicker2);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Left);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Right);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Top);
     this.panel2.Controls.Add(this._panel2_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Margin = new System.Windows.Forms.Padding(4);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1321, 38);
     this.panel2.TabIndex = 11;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // cbAnalysisTime
     //
     this.cbAnalysisTime.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbAnalysisTime, null);
     this.cbAnalysisTime.Location = new System.Drawing.Point(5, 6);
     this.cbAnalysisTime.Margin = new System.Windows.Forms.Padding(4);
     this.cbAnalysisTime.Name = "cbAnalysisTime";
     this.cbAnalysisTime.Size = new System.Drawing.Size(18, 17);
     this.cbAnalysisTime.TabIndex = 742;
     this.cbAnalysisTime.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.cbAnalysisTime, null);
     this.cbAnalysisTime.CheckedChanged += new System.EventHandler(this.cbAnalysisTime_CheckedChanged);
     //
     // tbQueryStoveNo
     //
     this.tbQueryStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryStoveNo, null);
     this.tbQueryStoveNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryStoveNo.Location = new System.Drawing.Point(384, 4);
     this.tbQueryStoveNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(69, 25);
     this.tbQueryStoveNo.TabIndex = 742;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // panel2_Fill_Panel
     //
     this.panel2_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel2_Fill_Panel, null);
     this.panel2_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2_Fill_Panel.Location = new System.Drawing.Point(0, 32);
     this.panel2_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
     this.panel2_Fill_Panel.Name = "panel2_Fill_Panel";
     this.panel2_Fill_Panel.Size = new System.Drawing.Size(1321, 6);
     this.panel2_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel2_Fill_Panel, null);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(223, 4);
     this.dateTimePicker2.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(81, 25);
     this.dateTimePicker2.TabIndex = 743;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // _panel2_Toolbars_Dock_Area_Left
     //
     this._panel2_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Left, null);
     this._panel2_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel2_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 32);
     this._panel2_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
     this._panel2_Toolbars_Dock_Area_Left.Name = "_panel2_Toolbars_Dock_Area_Left";
     this._panel2_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 6);
     this._panel2_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel2;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool19.ControlName = "dateTimePicker1";
     controlContainerTool19.InstanceProps.Width = 144;
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 107;
     controlContainerTool21.ControlName = "tbQueryStoveNo";
     controlContainerTool21.InstanceProps.Width = 110;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool19,
     controlContainerTool20,
     controlContainerTool21,
     buttonTool39,
     buttonTool40,
     buttonTool30,
     buttonTool17,
     buttonTool15});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "分析时间";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 144;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "至";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 107;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "查询";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool24.SharedPropsInternal.Caption = "炉号";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Width = 110;
     buttonTool46.SharedPropsInternal.Caption = "获取";
     buttonTool46.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
     buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance13;
     buttonTool16.SharedPropsInternal.Caption = "导出";
     buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool29.SharedPropsInternal.Caption = "删除";
     buttonTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool31.SharedPropsInternal.Caption = "生成预报";
     buttonTool31.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool46,
     buttonTool16,
     buttonTool29,
     buttonTool31});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick_1);
     //
     // _panel2_Toolbars_Dock_Area_Right
     //
     this._panel2_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Right, null);
     this._panel2_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel2_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1321, 32);
     this._panel2_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
     this._panel2_Toolbars_Dock_Area_Right.Name = "_panel2_Toolbars_Dock_Area_Right";
     this._panel2_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 6);
     this._panel2_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Right, null);
     //
     // _panel2_Toolbars_Dock_Area_Top
     //
     this._panel2_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Top, null);
     this._panel2_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel2_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel2_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
     this._panel2_Toolbars_Dock_Area_Top.Name = "_panel2_Toolbars_Dock_Area_Top";
     this._panel2_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1321, 32);
     this._panel2_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Top, null);
     //
     // _panel2_Toolbars_Dock_Area_Bottom
     //
     this._panel2_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel2_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel2_Toolbars_Dock_Area_Bottom, null);
     this._panel2_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel2_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel2_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 38);
     this._panel2_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._panel2_Toolbars_Dock_Area_Bottom.Name = "_panel2_Toolbars_Dock_Area_Bottom";
     this._panel2_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1321, 0);
     this._panel2_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraTabPageControl2
     //
     this.ultraTabPageControl2.Controls.Add(this.ultraGroupBox4);
     this.ultraTabPageControl2.Controls.Add(this.ultraPanel3);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl2, null);
     this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraTabPageControl2.Name = "ultraTabPageControl2";
     this.ultraTabPageControl2.Size = new System.Drawing.Size(1321, 479);
     this.coreBind.SetVerification(this.ultraTabPageControl2, null);
     //
     // ultraGroupBox4
     //
     appearance170.ForeColor = System.Drawing.Color.Red;
     this.ultraGroupBox4.Appearance = appearance170;
     this.ultraGroupBox4.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox4.Controls.Add(this.ultraGrid2);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox4, null);
     this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox4.Location = new System.Drawing.Point(0, 34);
     this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox4.Name = "ultraGroupBox4";
     this.ultraGroupBox4.Size = new System.Drawing.Size(1321, 445);
     this.ultraGroupBox4.TabIndex = 11;
     this.coreBind.SetVerification(this.ultraGroupBox4, null);
     this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraLabel2
     //
     appearance178.BackColor = System.Drawing.Color.Black;
     this.ultraLabel2.Appearance = appearance178;
     this.coreBind.SetDatabasecommand(this.ultraLabel2, null);
     this.ultraLabel2.Location = new System.Drawing.Point(-13333, -12500);
     this.ultraLabel2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraLabel2.Name = "ultraLabel2";
     this.ultraLabel2.Size = new System.Drawing.Size(40, 29);
     this.ultraLabel2.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraLabel2, null);
     this.ultraLabel2.Visible = false;
     //
     // ultraGrid2
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "Table2";
     this.ultraGrid2.DataSource = this.dataSet1;
     appearance48.TextHAlignAsString = "Center";
     appearance48.TextVAlignAsString = "Middle";
     ultraGridColumn21.CellAppearance = appearance48;
     ultraGridColumn21.Header.VisiblePosition = 0;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     appearance49.TextHAlignAsString = "Center";
     appearance49.TextVAlignAsString = "Middle";
     ultraGridColumn22.CellAppearance = appearance49;
     ultraGridColumn22.Header.VisiblePosition = 1;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     appearance50.TextHAlignAsString = "Center";
     appearance50.TextVAlignAsString = "Middle";
     ultraGridColumn23.CellAppearance = appearance50;
     ultraGridColumn23.Header.VisiblePosition = 2;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     appearance51.TextHAlignAsString = "Center";
     appearance51.TextVAlignAsString = "Middle";
     ultraGridColumn24.CellAppearance = appearance51;
     ultraGridColumn24.Header.VisiblePosition = 3;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     appearance52.TextHAlignAsString = "Center";
     appearance52.TextVAlignAsString = "Middle";
     ultraGridColumn25.CellAppearance = appearance52;
     ultraGridColumn25.Header.VisiblePosition = 4;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 4;
     appearance53.TextHAlignAsString = "Center";
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn26.CellAppearance = appearance53;
     ultraGridColumn26.Header.VisiblePosition = 5;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
     appearance54.TextHAlignAsString = "Center";
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn27.CellAppearance = appearance54;
     ultraGridColumn27.Header.VisiblePosition = 6;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
     appearance55.TextHAlignAsString = "Center";
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn28.CellAppearance = appearance55;
     ultraGridColumn28.Header.VisiblePosition = 7;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     appearance56.TextHAlignAsString = "Center";
     appearance56.TextVAlignAsString = "Middle";
     ultraGridColumn29.CellAppearance = appearance56;
     ultraGridColumn29.Header.VisiblePosition = 8;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     appearance57.TextHAlignAsString = "Center";
     appearance57.TextVAlignAsString = "Middle";
     ultraGridColumn30.CellAppearance = appearance57;
     ultraGridColumn30.Header.VisiblePosition = 9;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     appearance58.TextHAlignAsString = "Center";
     appearance58.TextVAlignAsString = "Middle";
     ultraGridColumn31.CellAppearance = appearance58;
     ultraGridColumn31.Header.VisiblePosition = 10;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     appearance59.TextHAlignAsString = "Center";
     appearance59.TextVAlignAsString = "Middle";
     ultraGridColumn32.CellAppearance = appearance59;
     ultraGridColumn32.Header.VisiblePosition = 11;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.Header.VisiblePosition = 12;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33});
     ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand2.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand2.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand2.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 8;
     appearance28.FontData.BoldAsString = "True";
     this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance28;
     this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance29.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance29;
     appearance30.TextVAlignAsString = "Middle";
     this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance30;
     this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid2.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance31.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance31.TextHAlignAsString = "Center";
     appearance31.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance31;
     this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid2.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid2.DisplayLayout.Override.MinRowHeight = 21;
     appearance32.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance32;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance33.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance33.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance33;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid2.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid2.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(3, 0);
     this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(1315, 442);
     this.ultraGrid2.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraGrid2, null);
     //
     // ultraPanel3
     //
     //
     // ultraPanel3.ClientArea
     //
     this.ultraPanel3.ClientArea.Controls.Add(this.txtStoveGD1);
     this.ultraPanel3.ClientArea.Controls.Add(this.ultraLabel1);
     this.ultraPanel3.ClientArea.Controls.Add(this.dateTimePicker4);
     this.ultraPanel3.ClientArea.Controls.Add(this.dateTimePicker3);
     this.ultraPanel3.ClientArea.Controls.Add(this.ClientArea_Fill_Panel_1);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Left);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Right);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Left);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Right);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Top);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Bottom);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Top);
     this.ultraPanel3.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_1_Bottom);
     this.coreBind.SetDatabasecommand(this.ultraPanel3.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel3.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel3, null);
     this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel3.Margin = new System.Windows.Forms.Padding(4);
     this.ultraPanel3.Name = "ultraPanel3";
     this.ultraPanel3.Size = new System.Drawing.Size(1321, 34);
     this.ultraPanel3.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraPanel3, null);
     //
     // txtStoveGD1
     //
     this.coreBind.SetDatabasecommand(this.txtStoveGD1, null);
     this.txtStoveGD1.Location = new System.Drawing.Point(381, 4);
     this.txtStoveGD1.Margin = new System.Windows.Forms.Padding(4);
     this.txtStoveGD1.Name = "txtStoveGD1";
     this.txtStoveGD1.Size = new System.Drawing.Size(80, 25);
     this.txtStoveGD1.TabIndex = 5;
     this.coreBind.SetVerification(this.txtStoveGD1, null);
     //
     // ultraLabel1
     //
     appearance176.BackColor = System.Drawing.Color.Red;
     this.ultraLabel1.Appearance = appearance176;
     this.coreBind.SetDatabasecommand(this.ultraLabel1, null);
     this.ultraLabel1.Location = new System.Drawing.Point(-13333, -12500);
     this.ultraLabel1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraLabel1.Name = "ultraLabel1";
     this.ultraLabel1.Size = new System.Drawing.Size(40, 29);
     this.ultraLabel1.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraLabel1, null);
     //
     // dateTimePicker4
     //
     this.dateTimePicker4.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker4.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker4, null);
     this.dateTimePicker4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker4.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker4.Location = new System.Drawing.Point(224, 4);
     this.dateTimePicker4.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker4.Name = "dateTimePicker4";
     this.dateTimePicker4.Size = new System.Drawing.Size(80, 25);
     this.dateTimePicker4.TabIndex = 743;
     this.coreBind.SetVerification(this.dateTimePicker4, null);
     //
     // dateTimePicker3
     //
     this.dateTimePicker3.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker3.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker3, null);
     this.dateTimePicker3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker3.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker3.Location = new System.Drawing.Point(83, 2);
     this.dateTimePicker3.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker3.Name = "dateTimePicker3";
     this.dateTimePicker3.Size = new System.Drawing.Size(72, 25);
     this.dateTimePicker3.TabIndex = 742;
     this.coreBind.SetVerification(this.dateTimePicker3, null);
     //
     // ClientArea_Fill_Panel_1
     //
     this.ClientArea_Fill_Panel_1.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.ClientArea_Fill_Panel_1, null);
     this.ClientArea_Fill_Panel_1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ClientArea_Fill_Panel_1.Location = new System.Drawing.Point(0, 64);
     this.ClientArea_Fill_Panel_1.Margin = new System.Windows.Forms.Padding(4);
     this.ClientArea_Fill_Panel_1.Name = "ClientArea_Fill_Panel_1";
     this.ClientArea_Fill_Panel_1.Size = new System.Drawing.Size(1321, 0);
     this.ClientArea_Fill_Panel_1.TabIndex = 0;
     this.coreBind.SetVerification(this.ClientArea_Fill_Panel_1, null);
     //
     // _ClientArea_Toolbars_Dock_Area_Left
     //
     this._ClientArea_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Left, null);
     this._ClientArea_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._ClientArea_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 64);
     this._ClientArea_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_Left.Name = "_ClientArea_Toolbars_Dock_Area_Left";
     this._ClientArea_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager2
     //
     this.ultraToolbarsManager2.DesignerFlags = 1;
     this.ultraToolbarsManager2.DockWithinContainer = this.ultraPanel3.ClientArea;
     this.ultraToolbarsManager2.LockToolbars = true;
     this.ultraToolbarsManager2.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager2.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 0;
     ultraToolbar2.FloatingSize = new System.Drawing.Size(316, 62);
     controlContainerTool5.ControlName = "dateTimePicker3";
     controlContainerTool5.InstanceProps.Width = 144;
     controlContainerTool6.ControlName = "dateTimePicker4";
     controlContainerTool6.InstanceProps.Width = 106;
     controlContainerTool12.ControlName = "txtStoveGD1";
     controlContainerTool12.InstanceProps.Width = 121;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool5,
     controlContainerTool6,
     controlContainerTool12,
     buttonTool5,
     buttonTool58,
     buttonTool18,
     buttonTool22,
     buttonTool24,
     buttonTool32,
     buttonTool1,
     buttonTool33});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager2.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar2});
     buttonTool51.SharedPropsInternal.Caption = "上移";
     buttonTool51.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool52.SharedPropsInternal.Caption = "下移";
     buttonTool52.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool53.SharedPropsInternal.Caption = "置顶";
     buttonTool53.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool54.SharedPropsInternal.Caption = "置底";
     buttonTool54.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool55.SharedPropsInternal.Caption = "查询";
     buttonTool55.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance114.Image = ((object)(resources.GetObject("appearance114.Image")));
     buttonTool56.SharedPropsInternal.AppearancesSmall.Appearance = appearance114;
     buttonTool56.SharedPropsInternal.Caption = "导出";
     buttonTool56.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool15.ControlName = "dateTimePicker3";
     controlContainerTool15.SharedPropsInternal.Caption = "预报时间";
     controlContainerTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool15.SharedPropsInternal.Width = 144;
     controlContainerTool29.ControlName = "dateTimePicker4";
     controlContainerTool29.SharedPropsInternal.Caption = "至";
     controlContainerTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool29.SharedPropsInternal.Width = 106;
     controlContainerTool33.SharedPropsInternal.Caption = "abc";
     controlContainerTool34.ControlName = "txtStoveGD1";
     controlContainerTool34.SharedPropsInternal.Caption = "炉号";
     controlContainerTool34.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool34.SharedPropsInternal.Width = 121;
     buttonTool59.SharedPropsInternal.Caption = "强制完炉";
     buttonTool59.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool59.SharedPropsInternal.Enabled = false;
     buttonTool59.SharedPropsInternal.Visible = false;
     buttonTool2.SharedPropsInternal.Caption = "删除预报";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager2.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool51,
     buttonTool52,
     buttonTool53,
     buttonTool54,
     buttonTool55,
     buttonTool56,
     controlContainerTool15,
     controlContainerTool29,
     controlContainerTool33,
     controlContainerTool34,
     buttonTool59,
     buttonTool2});
     this.ultraToolbarsManager2.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager2_ToolClick);
     //
     // _ClientArea_Toolbars_Dock_Area_Right
     //
     this._ClientArea_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Right, null);
     this._ClientArea_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._ClientArea_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1321, 64);
     this._ClientArea_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_Right.Name = "_ClientArea_Toolbars_Dock_Area_Right";
     this._ClientArea_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Right, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Left
     //
     this._ClientArea_Toolbars_Dock_Area_1_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Left, null);
     this._ClientArea_Toolbars_Dock_Area_1_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._ClientArea_Toolbars_Dock_Area_1_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Left.Location = new System.Drawing.Point(0, 64);
     this._ClientArea_Toolbars_Dock_Area_1_Left.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_1_Left.Name = "_ClientArea_Toolbars_Dock_Area_1_Left";
     this._ClientArea_Toolbars_Dock_Area_1_Left.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Left.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Left, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Right
     //
     this._ClientArea_Toolbars_Dock_Area_1_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Right, null);
     this._ClientArea_Toolbars_Dock_Area_1_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._ClientArea_Toolbars_Dock_Area_1_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Right.Location = new System.Drawing.Point(1321, 64);
     this._ClientArea_Toolbars_Dock_Area_1_Right.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_1_Right.Name = "_ClientArea_Toolbars_Dock_Area_1_Right";
     this._ClientArea_Toolbars_Dock_Area_1_Right.Size = new System.Drawing.Size(0, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Right.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Right, null);
     //
     // _ClientArea_Toolbars_Dock_Area_Top
     //
     this._ClientArea_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Top, null);
     this._ClientArea_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._ClientArea_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 32);
     this._ClientArea_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_Top.Name = "_ClientArea_Toolbars_Dock_Area_Top";
     this._ClientArea_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1321, 32);
     this._ClientArea_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Top, null);
     //
     // _ClientArea_Toolbars_Dock_Area_Bottom
     //
     this._ClientArea_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_Bottom, null);
     this._ClientArea_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._ClientArea_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 34);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_Bottom";
     this._ClientArea_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1321, 0);
     this._ClientArea_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Bottom, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Top
     //
     this._ClientArea_Toolbars_Dock_Area_1_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Top, null);
     this._ClientArea_Toolbars_Dock_Area_1_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._ClientArea_Toolbars_Dock_Area_1_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Top.Location = new System.Drawing.Point(0, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Top.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_1_Top.Name = "_ClientArea_Toolbars_Dock_Area_1_Top";
     this._ClientArea_Toolbars_Dock_Area_1_Top.Size = new System.Drawing.Size(1321, 32);
     this._ClientArea_Toolbars_Dock_Area_1_Top.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Top, null);
     //
     // _ClientArea_Toolbars_Dock_Area_1_Bottom
     //
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._ClientArea_Toolbars_Dock_Area_1_Bottom, null);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Location = new System.Drawing.Point(0, 34);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_1_Bottom";
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.Size = new System.Drawing.Size(1321, 0);
     this._ClientArea_Toolbars_Dock_Area_1_Bottom.ToolbarsManager = this.ultraToolbarsManager2;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_1_Bottom, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1323, 240);
     this.ultraGroupBox2.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.label28);
     this.ultraGroupBox1.Controls.Add(this.tbAs);
     this.ultraGroupBox1.Controls.Add(this.tbAls);
     this.ultraGroupBox1.Controls.Add(this.tbSb);
     this.ultraGroupBox1.Controls.Add(this.tbTi);
     this.ultraGroupBox1.Controls.Add(this.label32);
     this.ultraGroupBox1.Controls.Add(this.label31);
     this.ultraGroupBox1.Controls.Add(this.label29);
     this.ultraGroupBox1.Controls.Add(this.cbBilletReturn);
     this.ultraGroupBox1.Controls.Add(this.label12);
     this.ultraGroupBox1.Controls.Add(this.cbTransType);
     this.ultraGroupBox1.Controls.Add(this.LxComb);
     this.ultraGroupBox1.Controls.Add(this.lbTransType);
     this.ultraGroupBox1.Controls.Add(this.label30);
     this.ultraGroupBox1.Controls.Add(this.comboBox1);
     this.ultraGroupBox1.Controls.Add(this.cbx_SteelSendType);
     this.ultraGroupBox1.Controls.Add(this.label45);
     this.ultraGroupBox1.Controls.Add(this.cbx_OrgUse);
     this.ultraGroupBox1.Controls.Add(this.label44);
     this.ultraGroupBox1.Controls.Add(this.tbADVSPEC);
     this.ultraGroupBox1.Controls.Add(this.label25);
     this.ultraGroupBox1.Controls.Add(this.tbLength);
     this.ultraGroupBox1.Controls.Add(this.label21);
     this.ultraGroupBox1.Controls.Add(this.tbPerson);
     this.ultraGroupBox1.Controls.Add(this.label19);
     this.ultraGroupBox1.Controls.Add(this.label11);
     this.ultraGroupBox1.Controls.Add(this.tbP);
     this.ultraGroupBox1.Controls.Add(this.label10);
     this.ultraGroupBox1.Controls.Add(this.tbS);
     this.ultraGroupBox1.Controls.Add(this.label9);
     this.ultraGroupBox1.Controls.Add(this.tbMn);
     this.ultraGroupBox1.Controls.Add(this.label8);
     this.ultraGroupBox1.Controls.Add(this.tbSi);
     this.ultraGroupBox1.Controls.Add(this.label7);
     this.ultraGroupBox1.Controls.Add(this.label6);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.tbC);
     this.ultraGroupBox1.Controls.Add(this.label4);
     this.ultraGroupBox1.Controls.Add(this.tbCount);
     this.ultraGroupBox1.Controls.Add(this.cbSpec);
     this.ultraGroupBox1.Controls.Add(this.cbSteelType);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.tbCardNo);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.tbStoveNo);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox1.Location = new System.Drawing.Point(3, 0);
     this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1317, 237);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "数据录入";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // label28
     //
     this.label28.BackColor = System.Drawing.Color.Transparent;
     this.label28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label28, null);
     this.label28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label28.Location = new System.Drawing.Point(433, 127);
     this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(58, 27);
     this.label28.TabIndex = 801;
     this.label28.Text = "As";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label28, null);
     //
     // tbAs
     //
     this.tbAs.BackColor = System.Drawing.SystemColors.Control;
     this.tbAs.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbAs, null);
     this.tbAs.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbAs.Location = new System.Drawing.Point(433, 155);
     this.tbAs.Margin = new System.Windows.Forms.Padding(4);
     this.tbAs.Name = "tbAs";
     this.tbAs.ReadOnly = true;
     this.tbAs.Size = new System.Drawing.Size(58, 25);
     this.tbAs.TabIndex = 800;
     this.tbAs.Text = "0";
     this.tbAs.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbAs, null);
     //
     // tbAls
     //
     this.tbAls.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbAls, null);
     this.tbAls.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbAls.Location = new System.Drawing.Point(607, 155);
     this.tbAls.Margin = new System.Windows.Forms.Padding(4);
     this.tbAls.Name = "tbAls";
     this.tbAls.ReadOnly = true;
     this.tbAls.Size = new System.Drawing.Size(58, 25);
     this.tbAls.TabIndex = 799;
     this.tbAls.Text = "0";
     this.tbAls.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbAls, null);
     //
     // tbSb
     //
     this.tbSb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbSb, null);
     this.tbSb.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbSb.Location = new System.Drawing.Point(549, 155);
     this.tbSb.Margin = new System.Windows.Forms.Padding(4);
     this.tbSb.Name = "tbSb";
     this.tbSb.ReadOnly = true;
     this.tbSb.Size = new System.Drawing.Size(58, 25);
     this.tbSb.TabIndex = 798;
     this.tbSb.Text = "0";
     this.tbSb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbSb, null);
     //
     // tbTi
     //
     this.tbTi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbTi, null);
     this.tbTi.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbTi.Location = new System.Drawing.Point(491, 155);
     this.tbTi.Margin = new System.Windows.Forms.Padding(4);
     this.tbTi.Name = "tbTi";
     this.tbTi.ReadOnly = true;
     this.tbTi.Size = new System.Drawing.Size(58, 25);
     this.tbTi.TabIndex = 797;
     this.tbTi.Text = "0";
     this.tbTi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbTi, null);
     //
     // label32
     //
     this.label32.BackColor = System.Drawing.Color.Transparent;
     this.label32.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label32, null);
     this.label32.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label32.Location = new System.Drawing.Point(607, 127);
     this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(58, 27);
     this.label32.TabIndex = 796;
     this.label32.Text = "Als";
     this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label32, null);
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label31, null);
     this.label31.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label31.Location = new System.Drawing.Point(549, 127);
     this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(58, 27);
     this.label31.TabIndex = 795;
     this.label31.Text = "Sb";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label31, null);
     //
     // label29
     //
     this.label29.BackColor = System.Drawing.Color.Transparent;
     this.label29.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label29, null);
     this.label29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label29.Location = new System.Drawing.Point(491, 127);
     this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(58, 27);
     this.label29.TabIndex = 794;
     this.label29.Text = "Ti";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label29, null);
     //
     // cbBilletReturn
     //
     this.coreBind.SetDatabasecommand(this.cbBilletReturn, null);
     this.cbBilletReturn.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbBilletReturn.FormattingEnabled = true;
     this.cbBilletReturn.Location = new System.Drawing.Point(1227, 58);
     this.cbBilletReturn.Margin = new System.Windows.Forms.Padding(4);
     this.cbBilletReturn.Name = "cbBilletReturn";
     this.cbBilletReturn.Size = new System.Drawing.Size(75, 23);
     this.cbBilletReturn.TabIndex = 789;
     this.coreBind.SetVerification(this.cbBilletReturn, null);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(1165, 64);
     this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(53, 18);
     this.label12.TabIndex = 788;
     this.label12.Text = "返回坯";
     this.coreBind.SetVerification(this.label12, null);
     //
     // cbTransType
     //
     this.coreBind.SetDatabasecommand(this.cbTransType, null);
     this.cbTransType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbTransType.FormattingEnabled = true;
     this.cbTransType.Location = new System.Drawing.Point(1051, 176);
     this.cbTransType.Margin = new System.Windows.Forms.Padding(4);
     this.cbTransType.Name = "cbTransType";
     this.cbTransType.Size = new System.Drawing.Size(105, 23);
     this.cbTransType.TabIndex = 787;
     this.coreBind.SetVerification(this.cbTransType, null);
     //
     // LxComb
     //
     this.coreBind.SetDatabasecommand(this.LxComb, null);
     this.LxComb.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.LxComb.FormattingEnabled = true;
     this.LxComb.Location = new System.Drawing.Point(793, 177);
     this.LxComb.Margin = new System.Windows.Forms.Padding(4);
     this.LxComb.Name = "LxComb";
     this.LxComb.Size = new System.Drawing.Size(105, 23);
     this.LxComb.TabIndex = 786;
     this.coreBind.SetVerification(this.LxComb, null);
     this.LxComb.SelectedIndexChanged += new System.EventHandler(this.LxComb_SelectedIndexChanged);
     //
     // lbTransType
     //
     this.lbTransType.AutoSize = true;
     this.lbTransType.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.lbTransType, null);
     this.lbTransType.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbTransType.Location = new System.Drawing.Point(970, 180);
     this.lbTransType.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbTransType.Name = "lbTransType";
     this.lbTransType.Size = new System.Drawing.Size(68, 18);
     this.lbTransType.TabIndex = 784;
     this.lbTransType.Text = "运送方式";
     this.coreBind.SetVerification(this.lbTransType, null);
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label30, null);
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label30.Location = new System.Drawing.Point(737, 181);
     this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(46, 18);
     this.label30.TabIndex = 780;
     this.label30.Text = "去  向";
     this.coreBind.SetVerification(this.label30, null);
     //
     // comboBox1
     //
     this.coreBind.SetDatabasecommand(this.comboBox1, null);
     this.comboBox1.Font = new System.Drawing.Font("宋体", 9F);
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "热送",
     "冷送"});
     this.comboBox1.Location = new System.Drawing.Point(1067, 246);
     this.comboBox1.Margin = new System.Windows.Forms.Padding(4);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(145, 23);
     this.comboBox1.TabIndex = 775;
     this.coreBind.SetVerification(this.comboBox1, null);
     this.comboBox1.Visible = false;
     //
     // cbx_SteelSendType
     //
     this.coreBind.SetDatabasecommand(this.cbx_SteelSendType, null);
     this.cbx_SteelSendType.Font = new System.Drawing.Font("宋体", 9F);
     this.cbx_SteelSendType.FormattingEnabled = true;
     this.cbx_SteelSendType.Items.AddRange(new object[] {
     "热送",
     "冷送"});
     this.cbx_SteelSendType.Location = new System.Drawing.Point(1067, 246);
     this.cbx_SteelSendType.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_SteelSendType.Name = "cbx_SteelSendType";
     this.cbx_SteelSendType.Size = new System.Drawing.Size(145, 23);
     this.cbx_SteelSendType.TabIndex = 775;
     this.coreBind.SetVerification(this.cbx_SteelSendType, null);
     this.cbx_SteelSendType.Visible = false;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label45, null);
     this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label45.Location = new System.Drawing.Point(996, 251);
     this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(67, 15);
     this.label45.TabIndex = 774;
     this.label45.Text = "送钢状态";
     this.coreBind.SetVerification(this.label45, null);
     this.label45.Visible = false;
     //
     // cbx_OrgUse
     //
     this.coreBind.SetDatabasecommand(this.cbx_OrgUse, null);
     this.cbx_OrgUse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbx_OrgUse.FormattingEnabled = true;
     this.cbx_OrgUse.Items.AddRange(new object[] {
     "是",
     "否"});
     this.cbx_OrgUse.Location = new System.Drawing.Point(917, 251);
     this.cbx_OrgUse.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_OrgUse.Name = "cbx_OrgUse";
     this.cbx_OrgUse.Size = new System.Drawing.Size(59, 23);
     this.cbx_OrgUse.TabIndex = 773;
     this.cbx_OrgUse.Text = "是";
     this.coreBind.SetVerification(this.cbx_OrgUse, null);
     this.cbx_OrgUse.Visible = false;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label44, null);
     this.label44.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label44.Location = new System.Drawing.Point(811, 256);
     this.label44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(97, 15);
     this.label44.TabIndex = 772;
     this.label44.Text = "是否组织利用";
     this.coreBind.SetVerification(this.label44, null);
     this.label44.Visible = false;
     //
     // tbADVSPEC
     //
     this.coreBind.SetDatabasecommand(this.tbADVSPEC, null);
     this.tbADVSPEC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbADVSPEC.Location = new System.Drawing.Point(1051, 121);
     this.tbADVSPEC.Margin = new System.Windows.Forms.Padding(4);
     this.tbADVSPEC.Name = "tbADVSPEC";
     this.tbADVSPEC.Size = new System.Drawing.Size(105, 25);
     this.tbADVSPEC.TabIndex = 748;
     this.coreBind.SetVerification(this.tbADVSPEC, null);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label25.Location = new System.Drawing.Point(947, 127);
     this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(97, 15);
     this.label25.TabIndex = 747;
     this.label25.Text = "建议轧制规格";
     this.coreBind.SetVerification(this.label25, null);
     //
     // tbLength
     //
     this.coreBind.SetDatabasecommand(this.tbLength, null);
     this.tbLength.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbLength.Location = new System.Drawing.Point(871, 56);
     this.tbLength.Margin = new System.Windows.Forms.Padding(4);
     this.tbLength.Name = "tbLength";
     this.tbLength.Size = new System.Drawing.Size(105, 25);
     this.tbLength.TabIndex = 739;
     this.tbLength.Text = "6.950";
     this.coreBind.SetVerification(this.tbLength, null);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label21, null);
     this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label21.Location = new System.Drawing.Point(719, 127);
     this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 15);
     this.label21.TabIndex = 737;
     this.label21.Text = "判定员";
     this.coreBind.SetVerification(this.label21, null);
     //
     // tbPerson
     //
     this.tbPerson.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.tbPerson, null);
     this.tbPerson.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbPerson.ForeColor = System.Drawing.SystemColors.WindowText;
     this.tbPerson.Location = new System.Drawing.Point(793, 121);
     this.tbPerson.Margin = new System.Windows.Forms.Padding(4);
     this.tbPerson.MaxLength = 8;
     this.tbPerson.Name = "tbPerson";
     this.tbPerson.ReadOnly = true;
     this.tbPerson.Size = new System.Drawing.Size(105, 25);
     this.tbPerson.TabIndex = 736;
     this.coreBind.SetVerification(this.tbPerson, null);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label19.Location = new System.Drawing.Point(29, 149);
     this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(105, 15);
     this.label19.TabIndex = 733;
     this.label19.Text = "化学成分(%)";
     this.coreBind.SetVerification(this.label19, null);
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(375, 127);
     this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(58, 27);
     this.label11.TabIndex = 718;
     this.label11.Text = "P";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label11, null);
     //
     // tbP
     //
     this.tbP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbP, null);
     this.tbP.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbP.Location = new System.Drawing.Point(375, 155);
     this.tbP.Margin = new System.Windows.Forms.Padding(4);
     this.tbP.Name = "tbP";
     this.tbP.ReadOnly = true;
     this.tbP.Size = new System.Drawing.Size(58, 25);
     this.tbP.TabIndex = 717;
     this.tbP.Text = "0";
     this.tbP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbP, null);
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(317, 127);
     this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 27);
     this.label10.TabIndex = 716;
     this.label10.Text = "S";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label10, null);
     //
     // tbS
     //
     this.tbS.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbS, null);
     this.tbS.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbS.Location = new System.Drawing.Point(317, 155);
     this.tbS.Margin = new System.Windows.Forms.Padding(4);
     this.tbS.Name = "tbS";
     this.tbS.ReadOnly = true;
     this.tbS.Size = new System.Drawing.Size(58, 25);
     this.tbS.TabIndex = 715;
     this.tbS.Text = "0";
     this.tbS.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbS, null);
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(260, 127);
     this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(58, 27);
     this.label9.TabIndex = 714;
     this.label9.Text = "Mn";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label9, null);
     //
     // tbMn
     //
     this.tbMn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbMn, null);
     this.tbMn.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbMn.Location = new System.Drawing.Point(260, 155);
     this.tbMn.Margin = new System.Windows.Forms.Padding(4);
     this.tbMn.Name = "tbMn";
     this.tbMn.ReadOnly = true;
     this.tbMn.Size = new System.Drawing.Size(58, 25);
     this.tbMn.TabIndex = 713;
     this.tbMn.Text = "0";
     this.tbMn.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbMn, null);
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(203, 127);
     this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(58, 27);
     this.label8.TabIndex = 712;
     this.label8.Text = "Si";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label8, null);
     //
     // tbSi
     //
     this.tbSi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbSi, null);
     this.tbSi.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbSi.Location = new System.Drawing.Point(203, 155);
     this.tbSi.Margin = new System.Windows.Forms.Padding(4);
     this.tbSi.Name = "tbSi";
     this.tbSi.ReadOnly = true;
     this.tbSi.Size = new System.Drawing.Size(58, 25);
     this.tbSi.TabIndex = 711;
     this.tbSi.Text = "0";
     this.tbSi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbSi, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(811, 68);
     this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(45, 15);
     this.label7.TabIndex = 710;
     this.label7.Text = "长 度";
     this.coreBind.SetVerification(this.label7, null);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(629, 68);
     this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(45, 15);
     this.label6.TabIndex = 709;
     this.label6.Text = "规 格";
     this.coreBind.SetVerification(this.label6, null);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(448, 68);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(45, 15);
     this.label3.TabIndex = 708;
     this.label3.Text = "钢 种";
     this.coreBind.SetVerification(this.label3, null);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(145, 127);
     this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 27);
     this.label5.TabIndex = 707;
     this.label5.Text = "C";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label5, null);
     //
     // tbC
     //
     this.tbC.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.tbC, null);
     this.tbC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbC.Location = new System.Drawing.Point(145, 155);
     this.tbC.Margin = new System.Windows.Forms.Padding(4);
     this.tbC.Name = "tbC";
     this.tbC.ReadOnly = true;
     this.tbC.Size = new System.Drawing.Size(58, 25);
     this.tbC.TabIndex = 706;
     this.tbC.Text = "0";
     this.tbC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbC, null);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(996, 68);
     this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 15);
     this.label4.TabIndex = 704;
     this.label4.Text = "块 数";
     this.coreBind.SetVerification(this.label4, null);
     //
     // tbCount
     //
     this.coreBind.SetDatabasecommand(this.tbCount, null);
     this.tbCount.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCount.Location = new System.Drawing.Point(1051, 56);
     this.tbCount.Margin = new System.Windows.Forms.Padding(4);
     this.tbCount.Name = "tbCount";
     this.tbCount.Size = new System.Drawing.Size(105, 25);
     this.tbCount.TabIndex = 703;
     this.coreBind.SetVerification(this.tbCount, null);
     //
     // cbSpec
     //
     this.coreBind.SetDatabasecommand(this.cbSpec, null);
     this.cbSpec.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbSpec.FormattingEnabled = true;
     this.cbSpec.Items.AddRange(new object[] {
     "",
     "165",
     "150"});
     this.cbSpec.Location = new System.Drawing.Point(684, 58);
     this.cbSpec.Margin = new System.Windows.Forms.Padding(4);
     this.cbSpec.Name = "cbSpec";
     this.cbSpec.Size = new System.Drawing.Size(105, 23);
     this.cbSpec.TabIndex = 700;
     this.coreBind.SetVerification(this.cbSpec, null);
     //
     // cbSteelType
     //
     this.coreBind.SetDatabasecommand(this.cbSteelType, null);
     this.cbSteelType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbSteelType.FormattingEnabled = true;
     this.cbSteelType.Items.AddRange(new object[] {
     "Q235B",
     "Q195",
     "HRB500E",
     "HRB500",
     "HRB400E",
     "HRB400",
     "HRB335E",
     "HRB335",
     "HRB235",
     "HRB200",
     "",
     ""});
     this.cbSteelType.Location = new System.Drawing.Point(503, 58);
     this.cbSteelType.Margin = new System.Windows.Forms.Padding(4);
     this.cbSteelType.Name = "cbSteelType";
     this.cbSteelType.Size = new System.Drawing.Size(105, 23);
     this.cbSteelType.TabIndex = 698;
     this.coreBind.SetVerification(this.cbSteelType, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(35, 68);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(97, 15);
     this.label2.TabIndex = 6;
     this.label2.Text = "工艺流动卡号";
     this.coreBind.SetVerification(this.label2, null);
     //
     // tbCardNo
     //
     this.tbCardNo.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.tbCardNo, null);
     this.tbCardNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCardNo.Location = new System.Drawing.Point(145, 56);
     this.tbCardNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbCardNo.Name = "tbCardNo";
     this.tbCardNo.ReadOnly = true;
     this.tbCardNo.Size = new System.Drawing.Size(105, 25);
     this.tbCardNo.TabIndex = 5;
     this.coreBind.SetVerification(this.tbCardNo, null);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(272, 68);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 15);
     this.label1.TabIndex = 4;
     this.label1.Text = "炉 号";
     this.coreBind.SetVerification(this.label1, null);
     //
     // tbStoveNo
     //
     this.tbStoveNo.BackColor = System.Drawing.SystemColors.Window;
     this.tbStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbStoveNo, null);
     this.tbStoveNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbStoveNo.Location = new System.Drawing.Point(317, 56);
     this.tbStoveNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbStoveNo.MaxLength = 13;
     this.tbStoveNo.Name = "tbStoveNo";
     this.tbStoveNo.Size = new System.Drawing.Size(105, 25);
     this.tbStoveNo.TabIndex = 3;
     this.coreBind.SetVerification(this.tbStoveNo, null);
     //
     // ultraTabControl1
     //
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
     this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
     this.coreBind.SetDatabasecommand(this.ultraTabControl1, null);
     this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraTabControl1.Name = "ultraTabControl1";
     this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
     this.ultraTabControl1.Size = new System.Drawing.Size(1323, 505);
     this.ultraTabControl1.TabIndex = 0;
     ultraTab4.TabPage = this.ultraTabPageControl1;
     ultraTab4.Text = "流程卡数据";
     ultraTab5.TabPage = this.ultraTabPageControl2;
     ultraTab5.Text = "板坯辊道预报";
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab4,
     ultraTab5});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
     //
     // ultraTabSharedControlsPage1
     //
     this.coreBind.SetDatabasecommand(this.ultraTabSharedControlsPage1, null);
     this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
     this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1321, 479);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.coreBind.SetDatabasecommand(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Margin = new System.Windows.Forms.Padding(400, 100, 0, 0);
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(109, 26);
     this.coreBind.SetVerification(this.contextMenuStrip1, null);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem1.Image")));
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(108, 22);
     this.toolStripMenuItem1.Text = "放大";
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraTabControl1);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraPanel4);
     this.coreBind.SetDatabasecommand(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel2, null);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1323, 505);
     this.ultraPanel2.TabIndex = 13;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraPanel4
     //
     this.ultraPanel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     // ultraPanel4.ClientArea
     //
     this.coreBind.SetDatabasecommand(this.ultraPanel4.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel4.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel4, null);
     this.ultraPanel4.Location = new System.Drawing.Point(36, 14);
     this.ultraPanel4.Margin = new System.Windows.Forms.Padding(4);
     this.ultraPanel4.Name = "ultraPanel4";
     this.ultraPanel4.Size = new System.Drawing.Size(239, 0);
     this.ultraPanel4.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel4, null);
     //
     // ultraPanel5
     //
     //
     // ultraPanel5.ClientArea
     //
     this.ultraPanel5.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.coreBind.SetDatabasecommand(this.ultraPanel5.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel5.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel5, null);
     this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel5.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel5.Margin = new System.Windows.Forms.Padding(4);
     this.ultraPanel5.Name = "ultraPanel5";
     this.ultraPanel5.Size = new System.Drawing.Size(1323, 240);
     this.ultraPanel5.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraPanel5, null);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel5);
     this.coreBind.SetDatabasecommand(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel1.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel1, null);
     this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 505);
     this.ultraPanel1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(1323, 240);
     this.ultraPanel1.TabIndex = 14;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraTabControl2
     //
     this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
     this.coreBind.SetDatabasecommand(this.ultraTabControl2, null);
     this.ultraTabControl2.Location = new System.Drawing.Point(0, 0);
     this.ultraTabControl2.Name = "ultraTabControl2";
     this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
     this.ultraTabControl2.Size = new System.Drawing.Size(200, 100);
     this.ultraTabControl2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraTabControl2, null);
     //
     // ultraTabPageControl4
     //
     this.ultraTabPageControl4.Controls.Add(this.ultraGroupBox5);
     this.ultraTabPageControl4.Controls.Add(this.ultraPanel6);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl4, null);
     this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl4.Name = "ultraTabPageControl4";
     this.ultraTabPageControl4.Size = new System.Drawing.Size(864, 416);
     this.coreBind.SetVerification(this.ultraTabPageControl4, null);
     //
     // ultraGroupBox5
     //
     this.ultraGroupBox5.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox5.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox5.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox5, null);
     this.ultraGroupBox5.Location = new System.Drawing.Point(9, 45);
     this.ultraGroupBox5.Name = "ultraGroupBox5";
     this.ultraGroupBox5.Size = new System.Drawing.Size(988, 374);
     this.ultraGroupBox5.TabIndex = 11;
     this.coreBind.SetVerification(this.ultraGroupBox5, null);
     this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraLabel4
     //
     appearance129.BackColor = System.Drawing.Color.Black;
     this.ultraLabel4.Appearance = appearance129;
     this.coreBind.SetDatabasecommand(this.ultraLabel4, null);
     this.ultraLabel4.Location = new System.Drawing.Point(871, 154);
     this.ultraLabel4.Name = "ultraLabel4";
     this.ultraLabel4.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel4.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraLabel4, null);
     //
     // ultraLabel5
     //
     appearance128.BackColor = System.Drawing.Color.Black;
     this.ultraLabel5.Appearance = appearance128;
     this.coreBind.SetDatabasecommand(this.ultraLabel5, null);
     this.ultraLabel5.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraLabel5.Name = "ultraLabel5";
     this.ultraLabel5.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel5.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraLabel5, null);
     this.ultraLabel5.Visible = false;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "Table2";
     this.ultraGrid3.DataSource = this.dataSet1;
     appearance101.BackColor = System.Drawing.Color.White;
     appearance101.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance101.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid3.DisplayLayout.Appearance = appearance101;
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     appearance102.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance102;
     appearance103.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance103;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance104.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance104.BackColor2 = System.Drawing.Color.White;
     appearance104.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance104.FontData.SizeInPoints = 11F;
     appearance104.ForeColor = System.Drawing.Color.Black;
     appearance104.TextHAlignAsString = "Center";
     appearance104.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance104;
     appearance105.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance105;
     appearance106.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance106.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance106.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance106;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.VisibleIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 30;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance107.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance107.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance107.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance107.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance107;
     this.ultraGrid3.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(29, 12);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(982, 371);
     this.ultraGrid3.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     //
     // ultraPanel6
     //
     //
     // ultraPanel6.ClientArea
     //
     this.ultraPanel6.ClientArea.Controls.Add(this.comboBox2);
     this.ultraPanel6.ClientArea.Controls.Add(this.ultraLabel6);
     this.ultraPanel6.ClientArea.Controls.Add(this.dateTimePicker5);
     this.ultraPanel6.ClientArea.Controls.Add(this.dateTimePicker6);
     this.ultraPanel6.ClientArea.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this.ultraPanel6.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel6.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel6, null);
     this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraPanel6.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel6.Name = "ultraPanel6";
     this.ultraPanel6.Size = new System.Drawing.Size(864, 27);
     this.ultraPanel6.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraPanel6, null);
     //
     // comboBox2
     //
     this.coreBind.SetDatabasecommand(this.comboBox2, null);
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location = new System.Drawing.Point(425, 3);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(85, 23);
     this.comboBox2.TabIndex = 3;
     this.coreBind.SetVerification(this.comboBox2, null);
     //
     // ultraLabel6
     //
     appearance127.BackColor = System.Drawing.Color.Red;
     this.ultraLabel6.Appearance = appearance127;
     this.coreBind.SetDatabasecommand(this.ultraLabel6, null);
     this.ultraLabel6.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraLabel6.Name = "ultraLabel6";
     this.ultraLabel6.Size = new System.Drawing.Size(30, 23);
     this.ultraLabel6.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraLabel6, null);
     //
     // dateTimePicker5
     //
     this.dateTimePicker5.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker5.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker5, null);
     this.dateTimePicker5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker5.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker5.Location = new System.Drawing.Point(230, 4);
     this.dateTimePicker5.Name = "dateTimePicker5";
     this.dateTimePicker5.Size = new System.Drawing.Size(138, 25);
     this.dateTimePicker5.TabIndex = 743;
     this.coreBind.SetVerification(this.dateTimePicker5, null);
     //
     // dateTimePicker6
     //
     this.dateTimePicker6.CalendarFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker6.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker6, null);
     this.dateTimePicker6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker6.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker6.Location = new System.Drawing.Point(70, 4);
     this.dateTimePicker6.Name = "dateTimePicker6";
     this.dateTimePicker6.Size = new System.Drawing.Size(138, 25);
     this.dateTimePicker6.TabIndex = 742;
     this.coreBind.SetVerification(this.dateTimePicker6, null);
     //
     // panel1
     //
     this.panel1.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(864, 27);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // ultraTabSharedControlsPage2
     //
     this.coreBind.SetDatabasecommand(this.ultraTabSharedControlsPage2, null);
     this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(1, 24);
     this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
     this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(196, 73);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage2, null);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.ultraPanel2);
     this.panel5.Controls.Add(this.ultraPanel1);
     this.coreBind.SetDatabasecommand(this.panel5, null);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Margin = new System.Windows.Forms.Padding(4);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(1323, 745);
     this.panel5.TabIndex = 16;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // WeightPlan_BP
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1323, 745);
     this.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5);
     this.Name = "WeightPlan_BP";
     this.Text = "板坯计量预报";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.WeightPlan_BP_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.WeightPlan_BP_FormClosing);
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ultraTabPageControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     this.ultraGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     this.ultraPanel3.ClientArea.ResumeLayout(false);
     this.ultraPanel3.ClientArea.PerformLayout();
     this.ultraPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     this.ultraPanel4.ResumeLayout(false);
     this.ultraPanel5.ClientArea.ResumeLayout(false);
     this.ultraPanel5.ResumeLayout(false);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
     this.ultraTabControl2.ResumeLayout(false);
     this.ultraTabPageControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
     this.ultraGroupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     this.ultraPanel6.ClientArea.ResumeLayout(false);
     this.ultraPanel6.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #15
0
ファイル: GxfpSapCx.designer.cs プロジェクト: Strongc/sencond
 /// <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();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Reload");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("inExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Edit");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UpSap");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.PopupControlContainerTool popupControlContainerTool2 = new Infragistics.Win.UltraWinToolbars.PopupControlContainerTool("PopupControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.PopupGalleryTool popupGalleryTool2 = new Infragistics.Win.UltraWinToolbars.PopupGalleryTool("PopupGalleryTool1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("find");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("|");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Reload");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("inExcel");
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRODUCTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ITEMNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAPSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UPLOADFLAG", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GBSJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLETCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_STOVENO", 0, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_STOVENO", 0, true);
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 6, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 6, true);
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLETCOUNT", 8, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLETCOUNT", 8, true);
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.uToolBar = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.ugpData = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.pnlData = new System.Windows.Forms.Panel();
     this.pnlDataLeft = new System.Windows.Forms.Panel();
     this.txtLh = new System.Windows.Forms.TextBox();
     this.lblOpt = new System.Windows.Forms.Label();
     this.qDteEnd = new System.Windows.Forms.DateTimePicker();
     this.label26 = new System.Windows.Forms.Label();
     this.lblScr = new System.Windows.Forms.Label();
     this.qDteBegin = new System.Windows.Forms.DateTimePicker();
     this.label25 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.qTxtScdd = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.uGridData = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugpData)).BeginInit();
     this.ugpData.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     this.pnlData.SuspendLayout();
     this.pnlDataLeft.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uGridData)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(992, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 26);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(992, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // uToolBar
     //
     this.uToolBar.DesignerFlags = 1;
     this.uToolBar.DockWithinContainer = this.panel1;
     this.uToolBar.ShowFullMenusDelay = 500;
     this.uToolBar.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     buttonTool9.InstanceProps.IsFirstInGroup = true;
     buttonTool11.InstanceProps.IsFirstInGroup = true;
     buttonTool6.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool7,
     buttonTool9,
     buttonTool11,
     buttonTool6});
     ultraToolbar1.Text = "UltraToolbar1";
     this.uToolBar.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool1.SharedPropsInternal.Caption = "确认修改";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool2.SharedPropsInternal.Caption = "上传SAP";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool3.SharedPropsInternal.Caption = "导出";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     popupControlContainerTool2.SharedPropsInternal.Caption = "PopupControlContainerTool1";
     popupControlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     popupGalleryTool2.SharedPropsInternal.Caption = "PopupGalleryTool1";
     buttonTool8.SharedPropsInternal.Caption = "查询";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Caption = "ControlContainerTool1";
     controlContainerTool4.SharedPropsInternal.Caption = "|";
     buttonTool10.SharedPropsInternal.Caption = "标志复位";
     buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Caption = "导入";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Visible = false;
     this.uToolBar.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool1,
     buttonTool2,
     buttonTool3,
     popupControlContainerTool2,
     popupGalleryTool2,
     buttonTool8,
     controlContainerTool2,
     controlContainerTool4,
     buttonTool10,
     buttonTool12});
     this.uToolBar.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.uToolBar_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable3});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn12,
     this.dataColumn18,
     this.dataColumn20,
     this.dataColumn9,
     this.dataColumn7,
     this.dataColumn10,
     this.dataColumn13,
     this.dataColumn15});
     this.dataTable1.TableName = "计量数据";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "炉号";
     this.dataColumn1.ColumnName = "FS_STOVENO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "生产订单号";
     this.dataColumn2.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "生产订单项目号";
     this.dataColumn3.ColumnName = "FS_ITEMNO";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "库存地";
     this.dataColumn12.ColumnName = "FS_SAPSTORE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "上传标志";
     this.dataColumn18.ColumnName = "FS_UPLOADFLAG";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "记帐日期";
     this.dataColumn20.ColumnName = "FS_ACCOUNTDATE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "实际重量";
     this.dataColumn9.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "计量时间";
     this.dataColumn7.ColumnName = "GBSJ";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "条数";
     this.dataColumn10.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "工厂";
     this.dataColumn13.ColumnName = "FS_PLANT";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "物料名称";
     this.dataColumn15.ColumnName = "FS_MATERIALNAME";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn8,
     this.dataColumn11});
     this.dataTable2.TableName = "生产订单信息";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "生产订单号";
     this.dataColumn4.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "行项目号";
     this.dataColumn5.ColumnName = "FS_ITEMNO";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "物料号";
     this.dataColumn6.ColumnName = "FS_MATERIAL";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "物料名称";
     this.dataColumn8.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "工厂";
     this.dataColumn11.ColumnName = "FS_FACTORY";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn14,
     this.dataColumn19,
     this.dataColumn21,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27});
     this.dataTable3.TableName = "计量明细数据";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "轧制号";
     this.dataColumn14.ColumnName = "FS_BATCHNO";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "吊号";
     this.dataColumn19.ColumnName = "FN_BANDNO";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "支数";
     this.dataColumn21.ColumnName = "FN_BANDBILLETCOUNT";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "类型";
     this.dataColumn24.ColumnName = "FS_TYPE";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "实际重量";
     this.dataColumn25.ColumnName = "FN_WEIGHT";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "理论重量";
     this.dataColumn26.ColumnName = "FN_THEORYWEIGHT";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "计量时间";
     this.dataColumn27.ColumnName = "FD_DATETIME";
     this.dataColumn27.DataType = typeof(System.DateTime);
     //
     // ugpData
     //
     this.ugpData.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.coreBind.SetDatabasecommand(this.ugpData, null);
     this.ugpData.Dock = System.Windows.Forms.DockStyle.Top;
     this.ugpData.ExpandedSize = new System.Drawing.Size(992, 96);
     this.ugpData.Location = new System.Drawing.Point(0, 26);
     this.ugpData.Name = "ugpData";
     this.ugpData.Size = new System.Drawing.Size(992, 96);
     this.ugpData.TabIndex = 1;
     this.ugpData.Text = "详细信息";
     this.coreBind.SetVerification(this.ugpData, null);
     this.ugpData.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2003;
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.pnlData);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 22);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(988, 72);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     //
     // pnlData
     //
     this.pnlData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlData.Controls.Add(this.pnlDataLeft);
     this.coreBind.SetDatabasecommand(this.pnlData, null);
     this.pnlData.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlData.Location = new System.Drawing.Point(0, 0);
     this.pnlData.Name = "pnlData";
     this.pnlData.Size = new System.Drawing.Size(988, 74);
     this.pnlData.TabIndex = 2;
     this.coreBind.SetVerification(this.pnlData, null);
     //
     // pnlDataLeft
     //
     this.pnlDataLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlDataLeft.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnlDataLeft.Controls.Add(this.txtLh);
     this.pnlDataLeft.Controls.Add(this.lblOpt);
     this.pnlDataLeft.Controls.Add(this.qDteEnd);
     this.pnlDataLeft.Controls.Add(this.label26);
     this.pnlDataLeft.Controls.Add(this.lblScr);
     this.pnlDataLeft.Controls.Add(this.qDteBegin);
     this.pnlDataLeft.Controls.Add(this.label25);
     this.pnlDataLeft.Controls.Add(this.label24);
     this.pnlDataLeft.Controls.Add(this.qTxtScdd);
     this.pnlDataLeft.Controls.Add(this.label23);
     this.coreBind.SetDatabasecommand(this.pnlDataLeft, null);
     this.pnlDataLeft.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlDataLeft.Location = new System.Drawing.Point(0, 0);
     this.pnlDataLeft.Name = "pnlDataLeft";
     this.pnlDataLeft.Size = new System.Drawing.Size(988, 74);
     this.pnlDataLeft.TabIndex = 3;
     this.coreBind.SetVerification(this.pnlDataLeft, null);
     //
     // txtLh
     //
     this.coreBind.SetDatabasecommand(this.txtLh, null);
     this.txtLh.Location = new System.Drawing.Point(622, 9);
     this.txtLh.Name = "txtLh";
     this.txtLh.Size = new System.Drawing.Size(138, 21);
     this.txtLh.TabIndex = 635;
     this.coreBind.SetVerification(this.txtLh, null);
     //
     // lblOpt
     //
     this.coreBind.SetDatabasecommand(this.lblOpt, null);
     this.lblOpt.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblOpt.ForeColor = System.Drawing.Color.Red;
     this.lblOpt.Location = new System.Drawing.Point(546, 37);
     this.lblOpt.Name = "lblOpt";
     this.lblOpt.Size = new System.Drawing.Size(430, 24);
     this.lblOpt.TabIndex = 634;
     this.lblOpt.Text = "当前操作:";
     this.lblOpt.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.coreBind.SetVerification(this.lblOpt, null);
     //
     // qDteEnd
     //
     this.coreBind.SetDatabasecommand(this.qDteEnd, null);
     this.qDteEnd.Location = new System.Drawing.Point(235, 8);
     this.qDteEnd.Name = "qDteEnd";
     this.qDteEnd.Size = new System.Drawing.Size(113, 21);
     this.qDteEnd.TabIndex = 633;
     this.coreBind.SetVerification(this.qDteEnd, null);
     //
     // label26
     //
     this.coreBind.SetDatabasecommand(this.label26, null);
     this.label26.ForeColor = System.Drawing.Color.Black;
     this.label26.Location = new System.Drawing.Point(178, 6);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(61, 24);
     this.label26.TabIndex = 632;
     this.label26.Text = "结束日期";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label26, null);
     //
     // lblScr
     //
     this.coreBind.SetDatabasecommand(this.lblScr, null);
     this.lblScr.ForeColor = System.Drawing.Color.Black;
     this.lblScr.Location = new System.Drawing.Point(3, 39);
     this.lblScr.Name = "lblScr";
     this.lblScr.Size = new System.Drawing.Size(544, 24);
     this.lblScr.TabIndex = 631;
     this.lblScr.Text = "操作人员:";
     this.lblScr.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.coreBind.SetVerification(this.lblScr, null);
     //
     // qDteBegin
     //
     this.coreBind.SetDatabasecommand(this.qDteBegin, null);
     this.qDteBegin.Location = new System.Drawing.Point(58, 7);
     this.qDteBegin.Name = "qDteBegin";
     this.qDteBegin.Size = new System.Drawing.Size(113, 21);
     this.qDteBegin.TabIndex = 630;
     this.coreBind.SetVerification(this.qDteBegin, null);
     //
     // label25
     //
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(3, 5);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(58, 24);
     this.label25.TabIndex = 629;
     this.label25.Text = "开始日期";
     this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label25, null);
     //
     // label24
     //
     this.coreBind.SetDatabasecommand(this.label24, null);
     this.label24.ForeColor = System.Drawing.Color.Black;
     this.label24.Location = new System.Drawing.Point(586, 8);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(44, 24);
     this.label24.TabIndex = 627;
     this.label24.Text = "炉号";
     this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label24, null);
     //
     // qTxtScdd
     //
     this.coreBind.SetDatabasecommand(this.qTxtScdd, null);
     this.qTxtScdd.Location = new System.Drawing.Point(430, 9);
     this.qTxtScdd.Name = "qTxtScdd";
     this.qTxtScdd.Size = new System.Drawing.Size(138, 21);
     this.qTxtScdd.TabIndex = 612;
     this.coreBind.SetVerification(this.qTxtScdd, null);
     //
     // label23
     //
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.ForeColor = System.Drawing.Color.Black;
     this.label23.Location = new System.Drawing.Point(377, 7);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(56, 24);
     this.label23.TabIndex = 611;
     this.label23.Text = "生产订单";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label23, null);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.uGridData);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 122);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(992, 532);
     this.panel2.TabIndex = 4;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // uGridData
     //
     this.coreBind.SetDatabasecommand(this.uGridData, null);
     this.uGridData.DataMember = "计量数据";
     this.uGridData.DataSource = this.dataSet1;
     appearance19.BackColor = System.Drawing.Color.White;
     appearance19.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance19.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.uGridData.DisplayLayout.Appearance = appearance19;
     ultraGridColumn1.Header.VisiblePosition = 1;
     ultraGridColumn1.Width = 100;
     ultraGridColumn2.Header.VisiblePosition = 3;
     ultraGridColumn2.Width = 104;
     ultraGridColumn3.Header.VisiblePosition = 4;
     ultraGridColumn3.Width = 81;
     ultraGridColumn4.Header.VisiblePosition = 8;
     ultraGridColumn4.Width = 67;
     ultraGridColumn5.Header.VisiblePosition = 9;
     ultraGridColumn5.Width = 66;
     ultraGridColumn6.Header.VisiblePosition = 2;
     ultraGridColumn7.Header.VisiblePosition = 5;
     ultraGridColumn8.Header.VisiblePosition = 0;
     ultraGridColumn8.Width = 189;
     ultraGridColumn9.Header.VisiblePosition = 6;
     ultraGridColumn9.Width = 66;
     ultraGridColumn10.Header.VisiblePosition = 7;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11});
     summarySettings1.DisplayFormat = "共{0}炉";
     summarySettings1.GroupBySummaryValueAppearance = appearance1;
     summarySettings2.DisplayFormat = "共:{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance2;
     summarySettings3.DisplayFormat = "共:{0}支";
     summarySettings3.GroupBySummaryValueAppearance = appearance3;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3});
     this.uGridData.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.uGridData.DisplayLayout.InterBandSpacing = 10;
     this.uGridData.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.uGridData.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.uGridData.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance21.BackColor = System.Drawing.Color.Transparent;
     this.uGridData.DisplayLayout.Override.CardAreaAppearance = appearance21;
     this.uGridData.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.uGridData.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.uGridData.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance22.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance22.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance22.ForeColor = System.Drawing.Color.White;
     appearance22.TextHAlignAsString = "Center";
     appearance22.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.uGridData.DisplayLayout.Override.HeaderAppearance = appearance22;
     this.uGridData.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uGridData.DisplayLayout.Override.RowAppearance = appearance23;
     appearance24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance24.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.uGridData.DisplayLayout.Override.RowSelectorAppearance = appearance24;
     this.uGridData.DisplayLayout.Override.RowSelectorWidth = 12;
     this.uGridData.DisplayLayout.Override.RowSizing = Infragistics.Win.UltraWinGrid.RowSizing.Free;
     this.uGridData.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance25.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance25.ForeColor = System.Drawing.Color.Black;
     this.uGridData.DisplayLayout.Override.SelectedRowAppearance = appearance25;
     this.uGridData.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.uGridData.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.uGridData.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.ExtendedAutoDrag;
     this.uGridData.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
     this.uGridData.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.uGridData.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uGridData.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.uGridData.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.uGridData.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.uGridData.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.uGridData.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.uGridData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uGridData.Location = new System.Drawing.Point(0, 0);
     this.uGridData.Name = "uGridData";
     this.uGridData.Size = new System.Drawing.Size(992, 532);
     this.uGridData.TabIndex = 13;
     this.coreBind.SetVerification(this.uGridData, null);
     this.uGridData.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.uGridData_DoubleClickCell);
     //
     // GxfpSapCx
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 654);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.ugpData);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.KeyPreview = true;
     this.Name = "GxfpSapCx";
     this.Text = "汽车方坯上传SAP数据查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.UpSap_Load);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.UpSap_KeyPress);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugpData)).EndInit();
     this.ugpData.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     this.pnlData.ResumeLayout(false);
     this.pnlDataLeft.ResumeLayout(false);
     this.pnlDataLeft.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uGridData)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbOperFlag              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel9              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSynch        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1     = new Infragistics.Win.Misc.UltraLabel();
     this.cmbOperName     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1    = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery        = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperFlag)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(932, 387);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbOperFlag);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox2.Controls.Add(this.cmbSynch);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Location = new System.Drawing.Point(104, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(720, 168);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(24, 136);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel4.TabIndex = 45;
     this.ultraLabel4.Text     = "操作类型:";
     //
     // cmbOperFlag
     //
     this.cmbOperFlag.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperFlag.Location     = new System.Drawing.Point(128, 136);
     this.cmbOperFlag.Name         = "cmbOperFlag";
     this.cmbOperFlag.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperFlag.TabIndex     = 44;
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(392, 86);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 41;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(320, 86);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(72, 20);
     this.chkEndDate.TabIndex    = 43;
     this.chkEndDate.Text        = "结束时间";
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(392, 62);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 40;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(320, 62);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(80, 20);
     this.chkBeginDate.TabIndex    = 42;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(288, 136);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel9.TabIndex = 39;
     this.ultraLabel9.Text     = "同步标志:";
     //
     // cmbSynch
     //
     this.cmbSynch.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSynch.Location     = new System.Drawing.Point(392, 136);
     this.cmbSynch.Name         = "cmbSynch";
     this.cmbSynch.Size         = new System.Drawing.Size(144, 21);
     this.cmbSynch.TabIndex     = 38;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(592, 104);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(288, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(64, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 104);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 64);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 32;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(392, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(592, 64);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(592, 24);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 64);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(128, 104);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 32);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 13;
     //
     // OperLogReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1000, 605);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Name  = "OperLogReport";
     this.Text  = Login.constApp.strCardTypeL6Name + "操作日志报表";
     this.Load += new System.EventHandler(this.OperLogReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperFlag)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #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();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGridPrintDocument1 = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1          = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbEndDate         = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate         = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmdBeginDate       = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate       = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel8        = new Infragistics.Win.Misc.UltraLabel();
     this.txtCustomerService = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7        = new Infragistics.Win.Misc.UltraLabel();
     this.txtSales           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel5        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnterpriseType  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel           = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel3        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2        = new Infragistics.Win.Misc.UltraLabel();
     this.btnPrint           = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery           = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.saveFileDialog1    = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(16, 182);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(1000, 402);
     this.ultraGroupBox2.TabIndex = 4;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(72, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(200, 80);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "非会员档案";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerService);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.txtSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.cmbEnterpriseType);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Location = new System.Drawing.Point(80, 8);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(744, 160);
     this.ultraGroupBox1.TabIndex = 3;
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(456, 120);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 36;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(336, 120);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex    = 38;
     this.chkEndDate.Text        = "结束时间";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(176, 120);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmdBeginDate.TabIndex     = 35;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(56, 120);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 37;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(352, 88);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 32;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // txtCustomerService
     //
     this.txtCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCustomerService.Location     = new System.Drawing.Point(456, 88);
     this.txtCustomerService.Name         = "txtCustomerService";
     this.txtCustomerService.Size         = new System.Drawing.Size(100, 21);
     this.txtCustomerService.TabIndex     = 31;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(72, 88);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 30;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // txtSales
     //
     this.txtSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSales.Location     = new System.Drawing.Point(176, 88);
     this.txtSales.Name         = "txtSales";
     this.txtSales.Size         = new System.Drawing.Size(100, 21);
     this.txtSales.TabIndex     = 29;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(352, 56);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 28;
     this.ultraLabel6.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(456, 56);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 27;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(72, 56);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 26;
     this.ultraLabel5.Text     = "企业性质:";
     //
     // cmbEnterpriseType
     //
     this.cmbEnterpriseType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnterpriseType.Location     = new System.Drawing.Point(176, 56);
     this.cmbEnterpriseType.Name         = "cmbEnterpriseType";
     this.cmbEnterpriseType.Size         = new System.Drawing.Size(104, 21);
     this.cmbEnterpriseType.TabIndex     = 25;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(640, 104);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 20;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(72, 24);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 18;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(352, 24);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 17;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(640, 72);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex    = 9;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(640, 40);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 8;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(176, 24);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(456, 24);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // FMemberFileReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1028, 605);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "FMemberFileReport";
     this.Text  = Login.constApp.strCardTypeL8Name + "非会员档案报表";
     this.Load += new System.EventHandler(this.FMemberFileReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnExcel                = new Infragistics.Win.Misc.UltraButton();
     this.cmbEndDate              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnPrint                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel2             = new Infragistics.Win.Misc.UltraLabel();
     this.cmdBeginDate            = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbShow                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnQuery                = new Infragistics.Win.Misc.UltraButton();
     this.chkBeginDate            = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.saveFileDialog1         = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2          = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnFilter               = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(48, 48);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(176, 88);
     this.ultraGrid1.TabIndex          = 16;
     this.ultraGrid1.Text              = "预留列表";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnFilter);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Location = new System.Drawing.Point(120, 24);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(796, 128);
     this.ultraGroupBox1.TabIndex = 17;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(488, 88);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.TabIndex    = 12;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(280, 80);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.TabIndex     = 7;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(160, 80);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.TabIndex    = 11;
     this.chkEndDate.Text        = "结束时间";
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(488, 56);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.TabIndex    = 3;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(160, 32);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel2.TabIndex = 6;
     this.ultraLabel2.Text     = "招聘会:";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(280, 56);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.TabIndex     = 5;
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.Location     = new System.Drawing.Point(280, 32);
     this.cmbShow.Name         = "cmbShow";
     this.cmbShow.TabIndex     = 4;
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(488, 24);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.TabIndex    = 0;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(160, 56);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.TabIndex    = 10;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 168);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(960, 416);
     this.ultraGroupBox2.TabIndex = 18;
     //
     // btnFilter
     //
     this.btnFilter.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnFilter.Location    = new System.Drawing.Point(424, 32);
     this.btnFilter.Name        = "btnFilter";
     this.btnFilter.Size        = new System.Drawing.Size(48, 23);
     this.btnFilter.TabIndex    = 51;
     this.btnFilter.Text        = "检索";
     this.btnFilter.Click      += new System.EventHandler(this.btnFilter_Click);
     //
     // RemainReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(992, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "RemainReport";
     this.Text  = "预留报表";
     this.Load += new System.EventHandler(this.BookingReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #19
0
ファイル: GxSapFl.designer.cs プロジェクト: Strongc/sencond
 /// <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();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Edit");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UpSap");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Edit");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UpSap");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ToExcel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("InExcel");
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRODUCTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAPSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_AUDITOR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_HEADER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UPLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_STOVENO", 0, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_STOVENO", 0, true);
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 9, true, "计量数据", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 9, true);
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.uToolBar = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ugpData = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.pnlHint = new System.Windows.Forms.Panel();
     this.lstHint2 = new System.Windows.Forms.ListBox();
     this.lstHint1 = new System.Windows.Forms.ListBox();
     this.pnlData = new System.Windows.Forms.Panel();
     this.pnlDataRight = new System.Windows.Forms.Panel();
     this.label9 = new System.Windows.Forms.Label();
     this.cmbHead = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtZl = new System.Windows.Forms.TextBox();
     this.txtKcd = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.txtGc = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtWlmc = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtWlbh = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtHxmh = new System.Windows.Forms.TextBox();
     this.txtScdd = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtLh = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dteJzrq = new System.Windows.Forms.DateTimePicker();
     this.label1 = new System.Windows.Forms.Label();
     this.pnlDataLeft = new System.Windows.Forms.Panel();
     this.btnDel = new System.Windows.Forms.Button();
     this.qTxtZzh = new System.Windows.Forms.TextBox();
     this.qDteEnd = new System.Windows.Forms.DateTimePicker();
     this.label26 = new System.Windows.Forms.Label();
     this.lblScr = new System.Windows.Forms.Label();
     this.qDteBegin = new System.Windows.Forms.DateTimePicker();
     this.label25 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.qTxtScdd = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.panel5 = new System.Windows.Forms.Panel();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox14 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.textBox15 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox16 = new System.Windows.Forms.TextBox();
     this.textBox17 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.textBox18 = new System.Windows.Forms.TextBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label22 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.uGridData = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugpData)).BeginInit();
     this.ugpData.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     this.pnlHint.SuspendLayout();
     this.pnlData.SuspendLayout();
     this.pnlDataRight.SuspendLayout();
     this.pnlDataLeft.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uGridData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(992, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel, null);
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 26);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(992, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // _panel1_Toolbars_Dock_Area_Left
     //
     this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Left, null);
     this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // uToolBar
     //
     this.uToolBar.DesignerFlags = 1;
     this.uToolBar.DockWithinContainer = this.panel1;
     this.uToolBar.ShowFullMenusDelay = 500;
     this.uToolBar.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     buttonTool11.InstanceProps.IsFirstInGroup = true;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     buttonTool5.InstanceProps.IsFirstInGroup = true;
     buttonTool6.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool7,
     buttonTool11,
     buttonTool4,
     buttonTool5,
     buttonTool6});
     ultraToolbar1.Text = "UltraToolbar1";
     this.uToolBar.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool1.SharedPropsInternal.Caption = "确认修改";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool2.SharedPropsInternal.Caption = "上传SAP";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool3.SharedPropsInternal.Caption = "导出";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool8.SharedPropsInternal.Caption = "查询";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Caption = "导入";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.uToolBar.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool1,
     buttonTool2,
     buttonTool3,
     buttonTool8,
     buttonTool12});
     this.uToolBar.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.uToolBar_ToolClick);
     //
     // _panel1_Toolbars_Dock_Area_Right
     //
     this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Right, null);
     this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // _panel1_Toolbars_Dock_Area_Top
     //
     this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Top, null);
     this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, null);
     //
     // _panel1_Toolbars_Dock_Area_Bottom
     //
     this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._panel1_Toolbars_Dock_Area_Bottom, null);
     this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 26);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.uToolBar;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // ugpData
     //
     this.ugpData.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.coreBind.SetDatabasecommand(this.ugpData, null);
     this.ugpData.Dock = System.Windows.Forms.DockStyle.Top;
     this.ugpData.ExpandedSize = new System.Drawing.Size(992, 226);
     this.ugpData.Location = new System.Drawing.Point(0, 26);
     this.ugpData.Name = "ugpData";
     this.ugpData.Size = new System.Drawing.Size(992, 226);
     this.ugpData.TabIndex = 1;
     this.ugpData.Text = "详细信息";
     this.coreBind.SetVerification(this.ugpData, null);
     this.ugpData.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2003;
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.pnlHint);
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.pnlData);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 22);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(988, 202);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     //
     // pnlHint
     //
     this.pnlHint.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlHint.Controls.Add(this.lstHint2);
     this.pnlHint.Controls.Add(this.lstHint1);
     this.coreBind.SetDatabasecommand(this.pnlHint, null);
     this.pnlHint.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlHint.Location = new System.Drawing.Point(0, 121);
     this.pnlHint.Name = "pnlHint";
     this.pnlHint.Size = new System.Drawing.Size(988, 81);
     this.pnlHint.TabIndex = 4;
     this.coreBind.SetVerification(this.pnlHint, null);
     //
     // lstHint2
     //
     this.coreBind.SetDatabasecommand(this.lstHint2, null);
     this.lstHint2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstHint2.FormattingEnabled = true;
     this.lstHint2.ItemHeight = 12;
     this.lstHint2.Location = new System.Drawing.Point(355, 0);
     this.lstHint2.Name = "lstHint2";
     this.lstHint2.ScrollAlwaysVisible = true;
     this.lstHint2.Size = new System.Drawing.Size(633, 76);
     this.lstHint2.TabIndex = 5;
     this.coreBind.SetVerification(this.lstHint2, null);
     //
     // lstHint1
     //
     this.coreBind.SetDatabasecommand(this.lstHint1, null);
     this.lstHint1.Dock = System.Windows.Forms.DockStyle.Left;
     this.lstHint1.FormattingEnabled = true;
     this.lstHint1.ItemHeight = 12;
     this.lstHint1.Location = new System.Drawing.Point(0, 0);
     this.lstHint1.Name = "lstHint1";
     this.lstHint1.ScrollAlwaysVisible = true;
     this.lstHint1.Size = new System.Drawing.Size(355, 76);
     this.lstHint1.TabIndex = 4;
     this.coreBind.SetVerification(this.lstHint1, null);
     //
     // pnlData
     //
     this.pnlData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlData.Controls.Add(this.pnlDataRight);
     this.pnlData.Controls.Add(this.pnlDataLeft);
     this.coreBind.SetDatabasecommand(this.pnlData, null);
     this.pnlData.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlData.Location = new System.Drawing.Point(0, 0);
     this.pnlData.Name = "pnlData";
     this.pnlData.Size = new System.Drawing.Size(988, 121);
     this.pnlData.TabIndex = 2;
     this.coreBind.SetVerification(this.pnlData, null);
     //
     // pnlDataRight
     //
     this.pnlDataRight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlDataRight.Controls.Add(this.label9);
     this.pnlDataRight.Controls.Add(this.cmbHead);
     this.pnlDataRight.Controls.Add(this.label8);
     this.pnlDataRight.Controls.Add(this.txtZl);
     this.pnlDataRight.Controls.Add(this.txtKcd);
     this.pnlDataRight.Controls.Add(this.label7);
     this.pnlDataRight.Controls.Add(this.txtGc);
     this.pnlDataRight.Controls.Add(this.label6);
     this.pnlDataRight.Controls.Add(this.txtWlmc);
     this.pnlDataRight.Controls.Add(this.label5);
     this.pnlDataRight.Controls.Add(this.txtWlbh);
     this.pnlDataRight.Controls.Add(this.label4);
     this.pnlDataRight.Controls.Add(this.txtHxmh);
     this.pnlDataRight.Controls.Add(this.txtScdd);
     this.pnlDataRight.Controls.Add(this.label11);
     this.pnlDataRight.Controls.Add(this.txtLh);
     this.pnlDataRight.Controls.Add(this.label3);
     this.pnlDataRight.Controls.Add(this.label2);
     this.pnlDataRight.Controls.Add(this.dteJzrq);
     this.pnlDataRight.Controls.Add(this.label1);
     this.coreBind.SetDatabasecommand(this.pnlDataRight, null);
     this.pnlDataRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlDataRight.Location = new System.Drawing.Point(355, 0);
     this.pnlDataRight.Name = "pnlDataRight";
     this.pnlDataRight.Size = new System.Drawing.Size(633, 121);
     this.pnlDataRight.TabIndex = 4;
     this.coreBind.SetVerification(this.pnlDataRight, null);
     //
     // label9
     //
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location = new System.Drawing.Point(512, 51);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(34, 24);
     this.label9.TabIndex = 629;
     this.label9.Text = "重量";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label9, null);
     //
     // cmbHead
     //
     this.coreBind.SetDatabasecommand(this.cmbHead, null);
     this.cmbHead.FormattingEnabled = true;
     this.cmbHead.Items.AddRange(new object[] {
     "甲夜",
     "甲早",
     "甲中",
     "乙夜",
     "乙早",
     "乙中",
     "丙夜",
     "丙早",
     "丙中",
     "丁夜",
     "丁早",
     "丁中"});
     this.cmbHead.Location = new System.Drawing.Point(412, 21);
     this.cmbHead.Name = "cmbHead";
     this.cmbHead.Size = new System.Drawing.Size(121, 20);
     this.cmbHead.TabIndex = 628;
     this.coreBind.SetVerification(this.cmbHead, null);
     //
     // label8
     //
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.ForeColor = System.Drawing.Color.Red;
     this.label8.Location = new System.Drawing.Point(361, 17);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(45, 24);
     this.label8.TabIndex = 627;
     this.label8.Text = "头文本";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label8, null);
     //
     // txtZl
     //
     this.txtZl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtZl, null);
     this.txtZl.Location = new System.Drawing.Point(546, 53);
     this.txtZl.Name = "txtZl";
     this.txtZl.ReadOnly = true;
     this.txtZl.Size = new System.Drawing.Size(73, 21);
     this.txtZl.TabIndex = 625;
     this.coreBind.SetVerification(this.txtZl, null);
     //
     // txtKcd
     //
     this.coreBind.SetDatabasecommand(this.txtKcd, null);
     this.txtKcd.Location = new System.Drawing.Point(424, 52);
     this.txtKcd.Name = "txtKcd";
     this.txtKcd.Size = new System.Drawing.Size(63, 21);
     this.txtKcd.TabIndex = 207;
     this.coreBind.SetVerification(this.txtKcd, null);
     this.txtKcd.Leave += new System.EventHandler(this.txtKcd_Leave);
     //
     // label7
     //
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.ForeColor = System.Drawing.Color.Red;
     this.label7.Location = new System.Drawing.Point(379, 50);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(50, 24);
     this.label7.TabIndex = 618;
     this.label7.Text = "库存地";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label7, null);
     //
     // txtGc
     //
     this.coreBind.SetDatabasecommand(this.txtGc, null);
     this.txtGc.Location = new System.Drawing.Point(276, 53);
     this.txtGc.Name = "txtGc";
     this.txtGc.Size = new System.Drawing.Size(66, 21);
     this.txtGc.TabIndex = 206;
     this.coreBind.SetVerification(this.txtGc, null);
     this.txtGc.Leave += new System.EventHandler(this.txtGc_Leave);
     //
     // label6
     //
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.ForeColor = System.Drawing.Color.Red;
     this.label6.Location = new System.Drawing.Point(230, 50);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(45, 24);
     this.label6.TabIndex = 616;
     this.label6.Text = "工  厂";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label6, null);
     //
     // txtWlmc
     //
     this.txtWlmc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtWlmc, null);
     this.txtWlmc.Location = new System.Drawing.Point(405, 89);
     this.txtWlmc.Name = "txtWlmc";
     this.txtWlmc.ReadOnly = true;
     this.txtWlmc.Size = new System.Drawing.Size(215, 21);
     this.txtWlmc.TabIndex = 615;
     this.coreBind.SetVerification(this.txtWlmc, null);
     //
     // label5
     //
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(350, 86);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(54, 24);
     this.label5.TabIndex = 614;
     this.label5.Text = "物料描述";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label5, null);
     //
     // txtWlbh
     //
     this.txtWlbh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtWlbh, null);
     this.txtWlbh.Location = new System.Drawing.Point(237, 89);
     this.txtWlbh.Name = "txtWlbh";
     this.txtWlbh.ReadOnly = true;
     this.txtWlbh.Size = new System.Drawing.Size(107, 21);
     this.txtWlbh.TabIndex = 613;
     this.coreBind.SetVerification(this.txtWlbh, null);
     //
     // label4
     //
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(179, 87);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 24);
     this.label4.TabIndex = 612;
     this.label4.Text = "物料编码";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label4, null);
     //
     // txtHxmh
     //
     this.txtHxmh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.txtHxmh, null);
     this.txtHxmh.Location = new System.Drawing.Point(100, 89);
     this.txtHxmh.Name = "txtHxmh";
     this.txtHxmh.ReadOnly = true;
     this.txtHxmh.Size = new System.Drawing.Size(73, 21);
     this.txtHxmh.TabIndex = 611;
     this.coreBind.SetVerification(this.txtHxmh, null);
     //
     // txtScdd
     //
     this.coreBind.SetDatabasecommand(this.txtScdd, null);
     this.txtScdd.Location = new System.Drawing.Point(64, 53);
     this.txtScdd.Name = "txtScdd";
     this.txtScdd.Size = new System.Drawing.Size(113, 21);
     this.txtScdd.TabIndex = 205;
     this.coreBind.SetVerification(this.txtScdd, null);
     this.txtScdd.Leave += new System.EventHandler(this.txtScdd_Leave);
     //
     // label11
     //
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.ForeColor = System.Drawing.Color.Red;
     this.label11.Location = new System.Drawing.Point(9, 51);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 24);
     this.label11.TabIndex = 609;
     this.label11.Text = "生产订单";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label11, null);
     //
     // txtLh
     //
     this.coreBind.SetDatabasecommand(this.txtLh, null);
     this.txtLh.Location = new System.Drawing.Point(237, 19);
     this.txtLh.Name = "txtLh";
     this.txtLh.Size = new System.Drawing.Size(96, 21);
     this.txtLh.TabIndex = 204;
     this.coreBind.SetVerification(this.txtLh, null);
     this.txtLh.Leave += new System.EventHandler(this.txtLh_Leave);
     //
     // label3
     //
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(6, 87);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 24);
     this.label3.TabIndex = 605;
     this.label3.Text = "生产订单行项目";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // label2
     //
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(188, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(41, 24);
     this.label2.TabIndex = 604;
     this.label2.Text = "炉 号";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label2, null);
     //
     // dteJzrq
     //
     this.coreBind.SetDatabasecommand(this.dteJzrq, null);
     this.dteJzrq.Location = new System.Drawing.Point(64, 16);
     this.dteJzrq.Name = "dteJzrq";
     this.dteJzrq.Size = new System.Drawing.Size(113, 21);
     this.dteJzrq.TabIndex = 201;
     this.coreBind.SetVerification(this.dteJzrq, null);
     //
     // label1
     //
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(7, 14);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 24);
     this.label1.TabIndex = 602;
     this.label1.Text = "记账日期";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     //
     // pnlDataLeft
     //
     this.pnlDataLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.pnlDataLeft.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnlDataLeft.Controls.Add(this.btnDel);
     this.pnlDataLeft.Controls.Add(this.qTxtZzh);
     this.pnlDataLeft.Controls.Add(this.qDteEnd);
     this.pnlDataLeft.Controls.Add(this.label26);
     this.pnlDataLeft.Controls.Add(this.lblScr);
     this.pnlDataLeft.Controls.Add(this.qDteBegin);
     this.pnlDataLeft.Controls.Add(this.label25);
     this.pnlDataLeft.Controls.Add(this.label24);
     this.pnlDataLeft.Controls.Add(this.qTxtScdd);
     this.pnlDataLeft.Controls.Add(this.label23);
     this.pnlDataLeft.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this.pnlDataLeft, null);
     this.pnlDataLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.pnlDataLeft.Location = new System.Drawing.Point(0, 0);
     this.pnlDataLeft.Name = "pnlDataLeft";
     this.pnlDataLeft.Size = new System.Drawing.Size(355, 121);
     this.pnlDataLeft.TabIndex = 3;
     this.coreBind.SetVerification(this.pnlDataLeft, null);
     //
     // btnDel
     //
     this.coreBind.SetDatabasecommand(this.btnDel, null);
     this.btnDel.Location = new System.Drawing.Point(279, 49);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(68, 23);
     this.btnDel.TabIndex = 637;
     this.btnDel.Text = "删除";
     this.btnDel.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDel, null);
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // qTxtZzh
     //
     this.qTxtZzh.AcceptsReturn = true;
     this.coreBind.SetDatabasecommand(this.qTxtZzh, null);
     this.qTxtZzh.Location = new System.Drawing.Point(200, 50);
     this.qTxtZzh.Name = "qTxtZzh";
     this.qTxtZzh.Size = new System.Drawing.Size(69, 21);
     this.qTxtZzh.TabIndex = 636;
     this.coreBind.SetVerification(this.qTxtZzh, null);
     //
     // qDteEnd
     //
     this.coreBind.SetDatabasecommand(this.qDteEnd, null);
     this.qDteEnd.Location = new System.Drawing.Point(235, 15);
     this.qDteEnd.Name = "qDteEnd";
     this.qDteEnd.Size = new System.Drawing.Size(113, 21);
     this.qDteEnd.TabIndex = 633;
     this.coreBind.SetVerification(this.qDteEnd, null);
     //
     // label26
     //
     this.coreBind.SetDatabasecommand(this.label26, null);
     this.label26.ForeColor = System.Drawing.Color.Black;
     this.label26.Location = new System.Drawing.Point(178, 13);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(61, 24);
     this.label26.TabIndex = 632;
     this.label26.Text = "结束日期";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label26, null);
     //
     // lblScr
     //
     this.coreBind.SetDatabasecommand(this.lblScr, null);
     this.lblScr.ForeColor = System.Drawing.Color.Black;
     this.lblScr.Location = new System.Drawing.Point(14, 92);
     this.lblScr.Name = "lblScr";
     this.lblScr.Size = new System.Drawing.Size(301, 24);
     this.lblScr.TabIndex = 631;
     this.lblScr.Text = "操作人员:";
     this.lblScr.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.coreBind.SetVerification(this.lblScr, null);
     //
     // qDteBegin
     //
     this.coreBind.SetDatabasecommand(this.qDteBegin, null);
     this.qDteBegin.Location = new System.Drawing.Point(58, 14);
     this.qDteBegin.Name = "qDteBegin";
     this.qDteBegin.Size = new System.Drawing.Size(113, 21);
     this.qDteBegin.TabIndex = 630;
     this.coreBind.SetVerification(this.qDteBegin, null);
     //
     // label25
     //
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(3, 12);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(58, 24);
     this.label25.TabIndex = 629;
     this.label25.Text = "开始日期";
     this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label25, null);
     //
     // label24
     //
     this.coreBind.SetDatabasecommand(this.label24, null);
     this.label24.ForeColor = System.Drawing.Color.Black;
     this.label24.Location = new System.Drawing.Point(145, 48);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(59, 24);
     this.label24.TabIndex = 627;
     this.label24.Text = "轧制编号";
     this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label24, null);
     //
     // qTxtScdd
     //
     this.coreBind.SetDatabasecommand(this.qTxtScdd, null);
     this.qTxtScdd.Location = new System.Drawing.Point(58, 50);
     this.qTxtScdd.Name = "qTxtScdd";
     this.qTxtScdd.Size = new System.Drawing.Size(84, 21);
     this.qTxtScdd.TabIndex = 612;
     this.coreBind.SetVerification(this.qTxtScdd, null);
     this.qTxtScdd.Leave += new System.EventHandler(this.qTxtScdd_Leave);
     //
     // label23
     //
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.ForeColor = System.Drawing.Color.Black;
     this.label23.Location = new System.Drawing.Point(5, 48);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(56, 24);
     this.label23.TabIndex = 611;
     this.label23.Text = "生产订单";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label23, null);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel5.Controls.Add(this.comboBox1);
     this.panel5.Controls.Add(this.textBox8);
     this.panel5.Controls.Add(this.label12);
     this.panel5.Controls.Add(this.textBox11);
     this.panel5.Controls.Add(this.label13);
     this.panel5.Controls.Add(this.label14);
     this.panel5.Controls.Add(this.textBox12);
     this.panel5.Controls.Add(this.label15);
     this.panel5.Controls.Add(this.textBox13);
     this.panel5.Controls.Add(this.label16);
     this.panel5.Controls.Add(this.textBox14);
     this.panel5.Controls.Add(this.label17);
     this.panel5.Controls.Add(this.textBox15);
     this.panel5.Controls.Add(this.label18);
     this.panel5.Controls.Add(this.textBox16);
     this.panel5.Controls.Add(this.textBox17);
     this.panel5.Controls.Add(this.label19);
     this.panel5.Controls.Add(this.textBox18);
     this.panel5.Controls.Add(this.checkBox2);
     this.panel5.Controls.Add(this.label20);
     this.panel5.Controls.Add(this.label21);
     this.panel5.Controls.Add(this.dateTimePicker2);
     this.panel5.Controls.Add(this.label22);
     this.coreBind.SetDatabasecommand(this.panel5, null);
     this.panel5.Location = new System.Drawing.Point(361, 3);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(617, 121);
     this.panel5.TabIndex = 1;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // comboBox1
     //
     this.coreBind.SetDatabasecommand(this.comboBox1, null);
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "2",
     "3",
     "4",
     "5",
     "6"});
     this.comboBox1.Location = new System.Drawing.Point(377, 3);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(52, 20);
     this.comboBox1.TabIndex = 626;
     this.coreBind.SetVerification(this.comboBox1, null);
     //
     // textBox8
     //
     this.textBox8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox8, null);
     this.textBox8.Location = new System.Drawing.Point(497, 76);
     this.textBox8.Name = "textBox8";
     this.textBox8.ReadOnly = true;
     this.textBox8.Size = new System.Drawing.Size(93, 21);
     this.textBox8.TabIndex = 625;
     this.coreBind.SetVerification(this.textBox8, null);
     //
     // label12
     //
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.ForeColor = System.Drawing.Color.Black;
     this.label12.Location = new System.Drawing.Point(423, 74);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(70, 24);
     this.label12.TabIndex = 624;
     this.label12.Text = "收货数量";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label12, null);
     //
     // textBox11
     //
     this.coreBind.SetDatabasecommand(this.textBox11, null);
     this.textBox11.Location = new System.Drawing.Point(242, 2);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(79, 21);
     this.textBox11.TabIndex = 623;
     this.coreBind.SetVerification(this.textBox11, null);
     //
     // label13
     //
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.ForeColor = System.Drawing.Color.Red;
     this.label13.Location = new System.Drawing.Point(204, 1);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(32, 24);
     this.label13.TabIndex = 622;
     this.label13.Text = "罐号";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label13, null);
     //
     // label14
     //
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.ForeColor = System.Drawing.Color.Red;
     this.label14.Location = new System.Drawing.Point(327, 3);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(44, 24);
     this.label14.TabIndex = 620;
     this.label14.Text = "炉座号";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     //
     // textBox12
     //
     this.coreBind.SetDatabasecommand(this.textBox12, null);
     this.textBox12.Location = new System.Drawing.Point(527, 27);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(63, 21);
     this.textBox12.TabIndex = 619;
     this.coreBind.SetVerification(this.textBox12, null);
     //
     // label15
     //
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.ForeColor = System.Drawing.Color.Red;
     this.label15.Location = new System.Drawing.Point(481, 25);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(50, 24);
     this.label15.TabIndex = 618;
     this.label15.Text = "库存地";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label15, null);
     //
     // textBox13
     //
     this.coreBind.SetDatabasecommand(this.textBox13, null);
     this.textBox13.Location = new System.Drawing.Point(404, 26);
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(66, 21);
     this.textBox13.TabIndex = 617;
     this.coreBind.SetVerification(this.textBox13, null);
     //
     // label16
     //
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.ForeColor = System.Drawing.Color.Red;
     this.label16.Location = new System.Drawing.Point(353, 24);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(45, 24);
     this.label16.TabIndex = 616;
     this.label16.Text = "工  厂";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label16, null);
     //
     // textBox14
     //
     this.textBox14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox14, null);
     this.textBox14.Location = new System.Drawing.Point(437, 49);
     this.textBox14.Name = "textBox14";
     this.textBox14.ReadOnly = true;
     this.textBox14.Size = new System.Drawing.Size(167, 21);
     this.textBox14.TabIndex = 615;
     this.coreBind.SetVerification(this.textBox14, null);
     //
     // label17
     //
     this.coreBind.SetDatabasecommand(this.label17, null);
     this.label17.ForeColor = System.Drawing.Color.Black;
     this.label17.Location = new System.Drawing.Point(375, 50);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(70, 24);
     this.label17.TabIndex = 614;
     this.label17.Text = "物料描述";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label17, null);
     //
     // textBox15
     //
     this.textBox15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox15, null);
     this.textBox15.Location = new System.Drawing.Point(264, 48);
     this.textBox15.Name = "textBox15";
     this.textBox15.ReadOnly = true;
     this.textBox15.Size = new System.Drawing.Size(107, 21);
     this.textBox15.TabIndex = 613;
     this.coreBind.SetVerification(this.textBox15, null);
     //
     // label18
     //
     this.coreBind.SetDatabasecommand(this.label18, null);
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(188, 46);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(70, 24);
     this.label18.TabIndex = 612;
     this.label18.Text = "物料编码";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label18, null);
     //
     // textBox16
     //
     this.textBox16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this.textBox16, null);
     this.textBox16.Location = new System.Drawing.Point(96, 50);
     this.textBox16.Name = "textBox16";
     this.textBox16.ReadOnly = true;
     this.textBox16.Size = new System.Drawing.Size(102, 21);
     this.textBox16.TabIndex = 611;
     this.coreBind.SetVerification(this.textBox16, null);
     //
     // textBox17
     //
     this.coreBind.SetDatabasecommand(this.textBox17, null);
     this.textBox17.Location = new System.Drawing.Point(85, 26);
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new System.Drawing.Size(198, 21);
     this.textBox17.TabIndex = 610;
     this.coreBind.SetVerification(this.textBox17, null);
     //
     // label19
     //
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.ForeColor = System.Drawing.Color.Red;
     this.label19.Location = new System.Drawing.Point(22, 24);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(56, 24);
     this.label19.TabIndex = 609;
     this.label19.Text = "生产订单";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label19, null);
     //
     // textBox18
     //
     this.coreBind.SetDatabasecommand(this.textBox18, null);
     this.textBox18.Location = new System.Drawing.Point(476, 3);
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new System.Drawing.Size(71, 21);
     this.textBox18.TabIndex = 607;
     this.coreBind.SetVerification(this.textBox18, null);
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.checkBox2, null);
     this.checkBox2.ForeColor = System.Drawing.Color.Red;
     this.checkBox2.Location = new System.Drawing.Point(553, 5);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(72, 16);
     this.checkBox2.TabIndex = 606;
     this.checkBox2.Text = "可以上传";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.checkBox2, null);
     //
     // label20
     //
     this.coreBind.SetDatabasecommand(this.label20, null);
     this.label20.ForeColor = System.Drawing.Color.Black;
     this.label20.Location = new System.Drawing.Point(-6, 48);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(96, 24);
     this.label20.TabIndex = 605;
     this.label20.Text = "生产订单行项目";
     this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label20, null);
     //
     // label21
     //
     this.coreBind.SetDatabasecommand(this.label21, null);
     this.label21.ForeColor = System.Drawing.Color.Red;
     this.label21.Location = new System.Drawing.Point(436, 1);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(34, 24);
     this.label21.TabIndex = 604;
     this.label21.Text = "炉号";
     this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label21, null);
     //
     // dateTimePicker2
     //
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Location = new System.Drawing.Point(85, 1);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(113, 21);
     this.dateTimePicker2.TabIndex = 603;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // label22
     //
     this.coreBind.SetDatabasecommand(this.label22, null);
     this.label22.ForeColor = System.Drawing.Color.Red;
     this.label22.Location = new System.Drawing.Point(31, -1);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(58, 24);
     this.label22.TabIndex = 602;
     this.label22.Text = "记账日期";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label22, null);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.uGridData);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 252);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(992, 402);
     this.panel2.TabIndex = 4;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // uGridData
     //
     this.coreBind.SetDatabasecommand(this.uGridData, null);
     this.uGridData.DataMember = "计量数据";
     this.uGridData.DataSource = this.dataSet1;
     appearance37.BackColor = System.Drawing.Color.White;
     appearance37.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance37.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.uGridData.DisplayLayout.Appearance = appearance37;
     ultraGridColumn1.Header.VisiblePosition = 3;
     ultraGridColumn1.Width = 89;
     ultraGridColumn2.Header.VisiblePosition = 0;
     ultraGridColumn2.Width = 98;
     ultraGridColumn3.Header.VisiblePosition = 6;
     ultraGridColumn3.Width = 62;
     ultraGridColumn4.Header.VisiblePosition = 7;
     ultraGridColumn4.Width = 78;
     ultraGridColumn5.Header.VisiblePosition = 9;
     ultraGridColumn5.Width = 65;
     ultraGridColumn6.Header.VisiblePosition = 8;
     ultraGridColumn6.Width = 46;
     ultraGridColumn7.Header.VisiblePosition = 11;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn8.Header.VisiblePosition = 10;
     ultraGridColumn8.Hidden = true;
     ultraGridColumn9.Header.VisiblePosition = 5;
     ultraGridColumn9.Width = 75;
     ultraGridColumn10.Header.VisiblePosition = 4;
     ultraGridColumn10.Width = 66;
     ultraGridColumn11.Header.VisiblePosition = 2;
     ultraGridColumn11.Hidden = true;
     ultraGridColumn11.Width = 214;
     ultraGridColumn12.Header.Caption = "物料编号";
     ultraGridColumn12.Header.VisiblePosition = 1;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12});
     summarySettings1.DisplayFormat = "{0}块";
     summarySettings1.GroupBySummaryValueAppearance = appearance3;
     summarySettings2.DisplayFormat = "{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance4;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.uGridData.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.uGridData.DisplayLayout.InterBandSpacing = 10;
     appearance38.BackColor = System.Drawing.Color.Transparent;
     this.uGridData.DisplayLayout.Override.CardAreaAppearance = appearance38;
     this.uGridData.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance39.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance39.ForeColor = System.Drawing.Color.White;
     appearance39.TextHAlignAsString = "Center";
     appearance39.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.uGridData.DisplayLayout.Override.HeaderAppearance = appearance39;
     appearance40.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uGridData.DisplayLayout.Override.RowAppearance = appearance40;
     appearance41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance41.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.uGridData.DisplayLayout.Override.RowSelectorAppearance = appearance41;
     this.uGridData.DisplayLayout.Override.RowSelectorWidth = 12;
     this.uGridData.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance42.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance42.ForeColor = System.Drawing.Color.Black;
     this.uGridData.DisplayLayout.Override.SelectedRowAppearance = appearance42;
     this.uGridData.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.uGridData.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uGridData.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.uGridData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uGridData.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.uGridData.Location = new System.Drawing.Point(0, 0);
     this.uGridData.Name = "uGridData";
     this.uGridData.Size = new System.Drawing.Size(992, 402);
     this.uGridData.TabIndex = 14;
     this.coreBind.SetVerification(this.uGridData, null);
     this.uGridData.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.uGridData_DoubleClickCell);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn7,
     this.dataColumn12,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn20,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn3});
     this.dataTable1.TableName = "计量数据";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "炉号";
     this.dataColumn1.ColumnName = "FS_STOVENO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "生产订单号";
     this.dataColumn2.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "工厂";
     this.dataColumn7.ColumnName = "FS_PLANT";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "库存地";
     this.dataColumn12.ColumnName = "FS_SAPSTORE";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "上传人员";
     this.dataColumn15.ColumnName = "FS_AUDITOR";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "头文本";
     this.dataColumn16.ColumnName = "FS_HEADER";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "FS_WEIGHTNO";
     this.dataColumn17.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "上传";
     this.dataColumn18.ColumnName = "FS_UPLOADFLAG";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "记帐日期";
     this.dataColumn20.ColumnName = "FS_ACCOUNTDATE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "重量";
     this.dataColumn9.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "物料名称";
     this.dataColumn10.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FS_MATERIAL";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn11,
     this.dataColumn8});
     this.dataTable2.TableName = "生产订单信息";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "生产订单号";
     this.dataColumn4.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "行项目号";
     this.dataColumn5.ColumnName = "FS_ITEMNO";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "物料号";
     this.dataColumn6.ColumnName = "FS_MATERIAL";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "物资名称";
     this.dataColumn11.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "工厂";
     this.dataColumn8.ColumnName = "FS_FACTORY";
     //
     // GxSapFl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 654);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.ugpData);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.KeyPreview = true;
     this.Name = "GxSapFl";
     this.Text = "高线发料数据上传SAP";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.PySapFl_Load);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.UpSap_KeyPress);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uToolBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ugpData)).EndInit();
     this.ugpData.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     this.pnlHint.ResumeLayout(false);
     this.pnlData.ResumeLayout(false);
     this.pnlDataRight.ResumeLayout(false);
     this.pnlDataRight.PerformLayout();
     this.pnlDataLeft.ResumeLayout(false);
     this.pnlDataLeft.PerformLayout();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uGridData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbDept                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel7             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSales                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel20            = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight          = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbState                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1             = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate            = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate            = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName             = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1            = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo              = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.saveFileDialog1         = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox1          = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1              = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1 = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.cmbOperType             = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel8             = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbState)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperType)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbOperType);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox2.Controls.Add(this.cmbDept);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel20);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbState);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Location = new System.Drawing.Point(16, 24);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(1102, 150);
     this.ultraGroupBox2.TabIndex = 6;
     this.ultraGroupBox2.Text     = "查找";
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(928, 31);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(152, 21);
     this.cmbDept.TabIndex     = 69;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(826, 31);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 68;
     this.ultraLabel7.Text     = "部门:";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(656, 108);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(152, 21);
     this.cmbSales.TabIndex     = 63;
     //
     // ultraLabel20
     //
     this.ultraLabel20.Location = new System.Drawing.Point(554, 108);
     this.ultraLabel20.Name     = "ultraLabel20";
     this.ultraLabel20.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel20.TabIndex = 62;
     this.ultraLabel20.Text     = "销售人员:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(290, 112);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 47;
     this.ultraLabel6.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(392, 112);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(144, 21);
     this.cmbMemberRight.TabIndex     = 46;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(290, 72);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 39;
     this.ultraLabel4.Text     = "会员状态:";
     //
     // cmbState
     //
     this.cmbState.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbState.Location     = new System.Drawing.Point(392, 72);
     this.cmbState.Name         = "cmbState";
     this.cmbState.Size         = new System.Drawing.Size(144, 21);
     this.cmbState.TabIndex     = 38;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(1021, 106);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(290, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(26, 112);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(26, 72);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(26, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 32;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(554, 72);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(100, 23);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(554, 32);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(100, 23);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(656, 72);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(656, 32);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(392, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(928, 106);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(838, 106);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 72);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(128, 112);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 32);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 13;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 197);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(1102, 347);
     this.ultraGroupBox1.TabIndex = 7;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // cmbOperType
     //
     this.cmbOperType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperType.Location     = new System.Drawing.Point(928, 71);
     this.cmbOperType.Name         = "cmbOperType";
     this.cmbOperType.Size         = new System.Drawing.Size(152, 21);
     this.cmbOperType.TabIndex     = 71;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(826, 71);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 70;
     this.ultraLabel8.Text     = "类型:";
     //
     // InMoneyReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1186, 557);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "InMoneyReport";
     this.Text  = "一通卡充值报表";
     this.Load += new System.EventHandler(this.InMoneyReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbState)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperType)).EndInit();
     this.ResumeLayout(false);
 }