Ejemplo n.º 1
0
    /// <summary>
    ///     Método responsável por atualizar a lista dos itens não salvos
    /// (SkaObjeto.LstItensNaoSalvos).
    /// </summary>
    /// <param name="Udgv">UltraGrid que irá receber a lista de itens não salvos.</param>
    public static void AtualizaListaItensNaoSalvos(ref Infragistics.Win.UltraWinGrid.UltraGrid Udgv)
    {
        if (LstItensNaoSalvos != null && LstItensNaoSalvos.Count > 0)
        {
            Udgv.Visible = true;

            //DataTable temporário
            DataTable dt = new DataTable();

            //Colunas
            dt.Columns.Add("Selecionar", typeof(string));
            dt.Columns.Add("Item não salvo", typeof(string));
            dt.Columns.Add("HashCode", typeof(string));

            for (int x = 0; x < LstItensNaoSalvos.Count; x++)
            {
                //Nome do arquivo, Custo, Quantidade, CaminhoCompleto
                dt.Rows.Add("Continuar", LstItensNaoSalvos[x].Text, LstItensNaoSalvos[x].GetHashCode().ToString());
            }

            Udgv.DataSource = dt;
        }
        else
        {
            Udgv.Visible = false;
        }
    }
Ejemplo n.º 2
0
 /// <summary>
 ///     Método que seta a seleção da tupla recém adicionada (último registro da grade de dados).
 /// Esse método deve ser chamado somente quando for criar novos resgistros.
 /// </summary>
 /// <param name="UltraGrid"></param>
 public static void SetaUltimaTuplaSelecionada(Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid)
 {
     if (UltraGrid.Rows.Count > 0)
     {
         UltraGrid.Rows[UltraGrid.Rows.Count - 1].Activate();
     }
 }
Ejemplo n.º 3
0
 public UltraWinGridHelper(Infragistics.Win.UltraWinGrid.UltraGrid ultraWinGrid)
 {
     this.UltraWinGrid = ultraWinGrid;
     this.UltraWinGrid.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.Select;
     this.UltraWinGrid.DataSource = this.UltraDataSource;
     this.LoadStyle = Infragistics.Win.UltraWinGrid.LoadStyle.LoadOnDemand;
 }
Ejemplo n.º 4
0
    /// <summary>
    ///     Método que abre o form para seleção das colunas.
    /// </summary>
    /// <param name="UltraGrid">UltraDataGridView que terá suas colunas apresentadas para o usuário.</param>
    public static void EscolheColunasGrid(Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid)
    {
        FrmSelColunasGrid frm = new FrmSelColunasGrid(UltraGrid);

        frm.ShowDialog();

        UltraGrid = frm._Grid;
    }
Ejemplo n.º 5
0
 /// <summary>
 ///     Instancia o objeto da classe informando que os dados serão exportados através de um
 /// UltraGrid.
 /// </summary>
 /// <param name="Udgv">UltraGrid que é será exportado os dados.</param>
 /// <param name="ControleAdicionarCms">Controle (Botão, combobox) que será adicionado o 'context menu strip' para exportação dos dados.</param>
 /// <param name="NomeModulo">Nome do módulo que está exportando o arquivo. Isso serve para o nome do arquivo de saída.</param>
 public Exporter(Infragistics.Win.UltraWinGrid.UltraGrid Udgv, Control ControleAdicionarCms, String NomeModulo)
 {
     mTipoGrade     = e_SkaTipoGrade.UltraGrid;
     mUdgv          = Udgv;
     mDt            = mUdgv.DataSource as DataTable;
     mControlAddCms = ControleAdicionarCms;
     mNomeModulo    = NomeModulo;
     InicializaInstanciasOpcoesCms();
 }
Ejemplo n.º 6
0
        void ConfigGrid(Infragistics.Win.UltraWinGrid.UltraGrid utralGrid)
        {
            //Tiêu đề
            utralGrid.Text = "Danh sách phòng ban";

            //tiêu đề cột
            //for (int i = 0; i < utralGrid; i++)
            //{

            //}
        }
Ejemplo n.º 7
0
        public static void UltraGrid_KeyPress(object sender, KeyPressEventArgs e)
        {
            Infragistics.Win.UltraWinGrid.UltraGrid grid = (sender as Infragistics.Win.UltraWinGrid.UltraGrid);

            Infragistics.Win.UltraWinGrid.UltraGridCell activeCell = grid == null ? null : grid.ActiveCell;

            // if there is an active cell, its not in edit mode and can enter edit mode
            if (null != activeCell && false == activeCell.IsInEditMode && activeCell.CanEnterEditMode)
            {
                // if the character is not a control character
                if (char.IsControl(e.KeyChar) == false)
                {
                    // try to put cell into edit mode
                    grid.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode);

                    // if this cell is still active and it is in edit mode...
                    if (grid.ActiveCell == activeCell && activeCell.IsInEditMode)
                    {
                        // get its editor
                        Infragistics.Win.EmbeddableEditorBase editor = grid.ActiveCell.EditorResolved;

                        // if the editor supports selectable text
                        if (editor.SupportsSelectableText)
                        {
                            // select all the text so it can be replaced
                            editor.SelectionStart  = 0;
                            editor.SelectionLength = editor.TextLength;

                            if (editor is Infragistics.Win.EditorWithMask)
                            {
                                // just clear the selected text and let the grid
                                // forward the keypress to the editor
                                editor.SelectedText = string.Empty;
                            }
                            else
                            {
                                // then replace the selected text with the character
                                editor.SelectedText = new string(e.KeyChar, 1);

                                // mark the event as handled so the grid doesn't process it
                                e.Handled = true;
                            }
                        }
                    }
                }
            }
        }
Ejemplo n.º 8
0
        public static void UltraGrid_KeyDown(object sender, KeyEventArgs e)
        {
            Infragistics.Win.UltraWinGrid.UltraGrid dgvDatos = (sender as Infragistics.Win.UltraWinGrid.UltraGrid);
            switch (e.KeyCode)
            {
            case Keys.Up:
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode, false,
                                       false);
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.AboveCell, false,
                                       false);
                e.Handled = true;
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode, false,
                                       false);
                break;

            case Keys.Down:
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode, false,
                                       false);
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.BelowCell, false,
                                       false);
                e.Handled = true;
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode, false,
                                       false);
                break;

            case Keys.Right:
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode, false,
                                       false);
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.NextCellByTab, false,
                                       false);
                e.Handled = true;
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode, false,
                                       false);
                break;

            case Keys.Left:
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode, false,
                                       false);
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.PrevCellByTab, false,
                                       false);
                e.Handled = true;
                dgvDatos.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode, false,
                                       false);
                break;
            }
        }
Ejemplo n.º 9
0
        public static void GridUI(Infragistics.Win.UltraWinGrid.UltraGrid grid)
        {
            grid.DisplayLayout.Appearance.BackColor                      = System.Drawing.Color.White;;
            grid.DisplayLayout.CaptionAppearance.BackColor               = Color.FromName("WhiteSmoke");
            grid.DisplayLayout.Appearance.BackColor                      = Color.FromArgb(255, 255, 255);
            grid.DisplayLayout.Override.HeaderAppearance.BackColor       = Color.FromName("WhiteSmoke");
            grid.DisplayLayout.Override.RowAppearance.BackColor          = Color.FromArgb(230, 234, 245);
            grid.DisplayLayout.Override.RowAlternateAppearance.BackColor = Color.FromArgb(255, 255, 255);
            grid.DisplayLayout.Override.RowSelectors                     = Infragistics.Win.DefaultableBoolean.False;
            grid.DisplayLayout.Override.ActiveRowAppearance.BackColor    = System.Drawing.Color.Gainsboro;
            grid.DisplayLayout.Override.ActiveRowAppearance.ForeColor    = System.Drawing.Color.Black;
            grid.DisplayLayout.ScrollBarLook.Appearance.BackColor        = Color.FromName("LightGray");

            grid.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
            grid.DisplayLayout.Override.RowSizing       = Infragistics.Win.UltraWinGrid.RowSizing.Fixed;
            grid.DisplayLayout.Override.SelectTypeCol   = Infragistics.Win.UltraWinGrid.SelectType.None;
            grid.DisplayLayout.Override.SelectTypeRow   = Infragistics.Win.UltraWinGrid.SelectType.Single;
        }
Ejemplo n.º 10
0
    public static void AddHistoricoGrid(Infragistics.Win.UltraWinGrid.UltraGrid Udgv, String Mensagem)
    {
        List <String> lstColumns = Udgv.DisplayLayout.Bands[0].Columns.All.AsEnumerable().Select(c => c.ToString()).ToArray().ToList();

        DataTable dt = new DataTable();

        foreach (String c in lstColumns)
        {
            dt.Columns.Add(new DataColumn(c.ToString(), c.Contains("Data") ? typeof(System.DateTime) : typeof(System.String)));
        }

        //Histórico de orçamentos contém a coluna versão.
        if (lstColumns.Contains("Versão"))
        {
            dt.Columns.Add(new DataColumn("Versão", typeof(String)));
        }

        //dt.Rows.Add()
    }
Ejemplo n.º 11
0
        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);
            }
        }
Ejemplo n.º 12
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器
 /// 修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Checked");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ErrorCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ErrorCodeDescription");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Location");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Points");
     this.panelInput = new System.Windows.Forms.Panel();
     this.txtInput   = new UserControl.UCLabelEdit();
     this.panelGrid  = new System.Windows.Forms.Panel();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelInput.SuspendLayout();
     this.panelGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // panelInput
     //
     this.panelInput.Controls.Add(this.txtInput);
     this.panelInput.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelInput.Location = new System.Drawing.Point(0, 242);
     this.panelInput.Name     = "panelInput";
     this.panelInput.Size     = new System.Drawing.Size(526, 38);
     this.panelInput.TabIndex = 0;
     //
     // txtInput
     //
     this.txtInput.AllowEditOnlyChecked = true;
     this.txtInput.Caption         = "不良代码输入(&N)";
     this.txtInput.Checked         = false;
     this.txtInput.EditType        = UserControl.EditTypes.String;
     this.txtInput.Location        = new System.Drawing.Point(8, 6);
     this.txtInput.MaxLength       = 40;
     this.txtInput.Multiline       = false;
     this.txtInput.Name            = "txtInput";
     this.txtInput.PasswordChar    = '\0';
     this.txtInput.ReadOnly        = false;
     this.txtInput.ShowCheckBox    = false;
     this.txtInput.Size            = new System.Drawing.Size(503, 24);
     this.txtInput.TabIndex        = 0;
     this.txtInput.TabNext         = false;
     this.txtInput.Value           = "";
     this.txtInput.WidthType       = UserControl.WidthTypes.TooLong;
     this.txtInput.XAlign          = 111;
     this.txtInput.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtInput_TxtboxKeyPress);
     //
     // panelGrid
     //
     this.panelGrid.Controls.Add(this.ultraGrid1);
     this.panelGrid.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelGrid.Location = new System.Drawing.Point(0, 0);
     this.panelGrid.Name     = "panelGrid";
     this.panelGrid.Size     = new System.Drawing.Size(526, 242);
     this.panelGrid.TabIndex = 1;
     //
     // ultraGrid1
     //
     this.ultraGrid1.Cursor          = System.Windows.Forms.Cursors.Default;
     ultraGridColumn1.Header.Caption = "";
     ultraGridColumn1.Width          = 30;
     ultraGridColumn2.Header.Caption = "不良代码";
     ultraGridColumn2.Width          = 126;
     ultraGridColumn3.Header.Caption = "不良代码描述";
     ultraGridColumn3.Width          = 212;
     ultraGridColumn4.Header.Caption = "不良位置(F5)";
     ultraGridColumn4.Width          = 85;
     ultraGridColumn5.Header.Caption = "点数";
     ultraGridColumn5.Width          = 37;
     ultraGridBand1.Columns.Add(ultraGridColumn1);
     ultraGridBand1.Columns.Add(ultraGridColumn2);
     ultraGridBand1.Columns.Add(ultraGridColumn3);
     ultraGridBand1.Columns.Add(ultraGridColumn4);
     ultraGridBand1.Columns.Add(ultraGridColumn5);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     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(526, 242);
     this.ultraGrid1.TabIndex              = 0;
     this.ultraGrid1.BeforeCellDeactivate += new System.ComponentModel.CancelEventHandler(this.ultraGrid1_BeforeCellDeactivate);
     this.ultraGrid1.KeyPress             += new System.Windows.Forms.KeyPressEventHandler(this.ultraGrid1_KeyPress);
     //
     // UCErrorCodeSelect2
     //
     this.BackColor = System.Drawing.Color.Gainsboro;
     this.Controls.Add(this.panelGrid);
     this.Controls.Add(this.panelInput);
     this.Name  = "UCErrorCodeSelect2";
     this.Size  = new System.Drawing.Size(526, 280);
     this.Load += new System.EventHandler(this.UCErrorCodeSelect2_Load);
     this.panelInput.ResumeLayout(false);
     this.panelGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLETCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TOTALWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_STARTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ENDTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_COMPLETEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHEMOUT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TOTALWEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLETINDEX");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_THWEITSINGLE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_HISWEIGHT");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool28 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ַ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool29 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��׼");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool30 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmWeightQueryBillet));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool25 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ַ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool26 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��׼");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool27 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.cbx_Steel = new System.Windows.Forms.CheckBox();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.cbx_Standard = new System.Windows.Forms.CheckBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.cbx_Addr = new System.Windows.Forms.CheckBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = 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.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.llb_CloseAll = new System.Windows.Forms.LinkLabel();
     this.llb_ExpandAll = new System.Windows.Forms.LinkLabel();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea2 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea3 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea4 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataColumn25 = new System.Data.DataColumn();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.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.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Steel);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Standard);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Addr);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(992, 654);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(401, 3);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(101, 21);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // cbx_Steel
     //
     this.cbx_Steel.AutoSize = true;
     this.cbx_Steel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Steel, null);
     this.cbx_Steel.Location = new System.Drawing.Point(755, 6);
     this.cbx_Steel.Name = "cbx_Steel";
     this.cbx_Steel.Size = new System.Drawing.Size(48, 16);
     this.cbx_Steel.TabIndex = 1;
     this.cbx_Steel.Text = "����";
     this.cbx_Steel.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Steel, null);
     this.cbx_Steel.Visible = false;
     //
     // 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";
     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(228, 3);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(133, 21);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // cbx_Standard
     //
     this.cbx_Standard.AutoSize = true;
     this.cbx_Standard.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Standard, null);
     this.cbx_Standard.Location = new System.Drawing.Point(699, 6);
     this.cbx_Standard.Name = "cbx_Standard";
     this.cbx_Standard.Size = new System.Drawing.Size(48, 16);
     this.cbx_Standard.TabIndex = 1;
     this.cbx_Standard.Text = "��׼";
     this.cbx_Standard.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Standard, null);
     this.cbx_Standard.Visible = false;
     //
     // 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";
     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(73, 3);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(133, 21);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // cbx_Addr
     //
     this.cbx_Addr.AutoSize = true;
     this.cbx_Addr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Addr, null);
     this.cbx_Addr.Location = new System.Drawing.Point(643, 6);
     this.cbx_Addr.Name = "cbx_Addr";
     this.cbx_Addr.Size = new System.Drawing.Size(48, 16);
     this.cbx_Addr.TabIndex = 1;
     this.cbx_Addr.Text = "��ַ";
     this.cbx_Addr.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Addr, null);
     this.cbx_Addr.Visible = false;
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(11, 7);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(15, 14);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     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, 26);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 628);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Controls.Add(this.ultraExpandableGroupBox1);
     this.ultraGroupBox1.Controls.Add(this.llb_CloseAll);
     this.ultraGroupBox1.Controls.Add(this.llb_ExpandAll);
     this.ultraGroupBox1.Controls.Add(this.cbx_Filter);
     this.ultraGroupBox1.Controls.Add(this.pictureBox3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 628);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "��ѯ���";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16});
     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.ColumnLayout;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn17.Header.VisiblePosition = 0;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn18.Header.VisiblePosition = 1;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.VisiblePosition = 2;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn20.Header.VisiblePosition = 3;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn21.Header.VisiblePosition = 4;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn22.Header.VisiblePosition = 5;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn23.Header.VisiblePosition = 6;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn24.Header.VisiblePosition = 7;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn25.Header.VisiblePosition = 8;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn26.Header.VisiblePosition = 9;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26});
     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;
     appearance2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance2.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.HeaderAppearance = appearance2;
     appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance3.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.RowSelectorAppearance = appearance3;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance116.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance116;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance117.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance117;
     appearance25.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance25;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance118.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance118.TextHAlignAsString = "Center";
     appearance118.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance118;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance1.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance1;
     appearance119.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance119;
     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;
     appearance120.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance120.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance120.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance120.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance120;
     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("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 24);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(957, 601);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid1_DoubleClickRow);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
     new System.Data.DataRelation("Relation1", "Table1", "Table2", new string[] {
                 "FS_STOVENO"}, new string[] {
                 "FS_STOVENO"}, false)});
     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.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn20,
     this.dataColumn22,
     this.dataColumn23});
     this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.UniqueConstraint("Constraint1", new string[] {
                 "FS_STOVENO"}, false)});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "¯��";
     this.dataColumn1.ColumnName = "FS_STOVENO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "�ƺ�";
     this.dataColumn2.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "���";
     this.dataColumn3.ColumnName = "FS_SPEC";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "����";
     this.dataColumn4.ColumnName = "FN_LENGTH";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "��֧��";
     this.dataColumn5.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "������";
     this.dataColumn6.ColumnName = "FN_TOTALWEIGHT";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "������ʼʱ��";
     this.dataColumn7.ColumnName = "FD_STARTTIME";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "��������ʱ��";
     this.dataColumn8.ColumnName = "FD_ENDTIME";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "���ͷ�ʽ";
     this.dataColumn9.ColumnName = "FS_TRANSTYPE";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "ȥ��";
     this.dataColumn10.ColumnName = "FS_STORE";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "��¯";
     this.dataColumn11.ColumnName = "FS_COMPLETEFLAG";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "�ɷ�";
     this.dataColumn12.ColumnName = "CHEMOUT";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "����";
     this.dataColumn20.ColumnName = "FN_TOTALWEIGHT_LL";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "¯��";
     this.dataColumn22.ColumnName = "FN_COUNT";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "�������";
     this.dataColumn23.ColumnName = "FS_UNQUALIFIED";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn21,
     this.dataColumn24,
     this.dataColumn25});
     this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.ForeignKeyConstraint("Relation1", "Table1", new string[] {
                 "FS_STOVENO"}, new string[] {
                 "FS_STOVENO"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "֧��";
     this.dataColumn13.ColumnName = "FN_BILLETINDEX";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "����";
     this.dataColumn14.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "����";
     this.dataColumn15.ColumnName = "FN_NETWEIGHT_LL";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "������";
     this.dataColumn16.ColumnName = "FS_WEIGHTPOINT";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "����Ա";
     this.dataColumn17.ColumnName = "FS_PERSON";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "����ʱ��";
     this.dataColumn18.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "¯��";
     this.dataColumn19.ColumnName = "FS_STOVENO";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "���ر�־";
     this.dataColumn21.ColumnName = "FS_THWEITSINGLE";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "��ҵ���";
     this.dataColumn24.ColumnName = "FS_WEIGHTNO";
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Right;
     this.ultraExpandableGroupBox1.Expanded = false;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(298, 601);
     this.ultraExpandableGroupBox1.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraExpandableGroupBox1.HeaderClickAction = Infragistics.Win.Misc.GroupBoxHeaderClickAction.ToggleExpansion;
     this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.RightOutsideBorder;
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(960, 24);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(29, 601);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "����ͼƬƬ";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(264, 593);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Visible = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox2);
     this.panel1.Controls.Add(this.pictureBox1);
     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(264, 593);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // pictureBox2
     //
     this.coreBind.SetDatabasecommand(this.pictureBox2, null);
     this.pictureBox2.Location = new System.Drawing.Point(2, 228);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(260, 168);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 1;
     this.pictureBox2.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox2, null);
     this.pictureBox2.Click += new System.EventHandler(this.picSmall_Click);
     //
     // pictureBox1
     //
     this.coreBind.SetDatabasecommand(this.pictureBox1, null);
     this.pictureBox1.Location = new System.Drawing.Point(2, 28);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(260, 168);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox1, null);
     this.pictureBox1.Click += new System.EventHandler(this.picSmall_Click);
     //
     // llb_CloseAll
     //
     this.llb_CloseAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_CloseAll, null);
     this.llb_CloseAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_CloseAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.Location = new System.Drawing.Point(700, 4);
     this.llb_CloseAll.Name = "llb_CloseAll";
     this.llb_CloseAll.Size = new System.Drawing.Size(56, 14);
     this.llb_CloseAll.TabIndex = 0;
     this.llb_CloseAll.TabStop = true;
     this.llb_CloseAll.Text = "ȫ������";
     this.llb_CloseAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_CloseAll, null);
     this.llb_CloseAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_CloseAll_LinkClicked);
     //
     // llb_ExpandAll
     //
     this.llb_ExpandAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_ExpandAll, null);
     this.llb_ExpandAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_ExpandAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.Location = new System.Drawing.Point(626, 4);
     this.llb_ExpandAll.Name = "llb_ExpandAll";
     this.llb_ExpandAll.Size = new System.Drawing.Size(56, 14);
     this.llb_ExpandAll.TabIndex = 0;
     this.llb_ExpandAll.TabStop = true;
     this.llb_ExpandAll.Text = "ȫ��չ��";
     this.llb_ExpandAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_ExpandAll, null);
     this.llb_ExpandAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_ExpandAll_LinkClicked);
     //
     // 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(794, 2);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 0;
     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.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // pictureBox3
     //
     this.coreBind.SetDatabasecommand(this.pictureBox3, null);
     this.pictureBox3.Location = new System.Drawing.Point(90, 88);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(520, 315);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex = 1;
     this.pictureBox3.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox3, null);
     this.pictureBox3.WaitOnLoad = true;
     this.pictureBox3.Click += new System.EventHandler(this.picLarge_Click);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool21.ControlName = "cbxDateTime";
     controlContainerTool21.InstanceProps.IsFirstInGroup = true;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool1.ControlName = "dateTimePicker2";
     controlContainerTool24.ControlName = "tbQueryBatchNo";
     controlContainerTool24.InstanceProps.IsFirstInGroup = true;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool28.ControlName = "cbx_Addr";
     controlContainerTool28.InstanceProps.IsFirstInGroup = true;
     controlContainerTool28.InstanceProps.Width = 103;
     controlContainerTool29.ControlName = "cbx_Standard";
     controlContainerTool29.InstanceProps.Width = 48;
     controlContainerTool30.ControlName = "cbx_Steel";
     buttonTool5.InstanceProps.IsFirstInGroup = true;
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool21,
     controlContainerTool22,
     controlContainerTool1,
     controlContainerTool24,
     buttonTool1,
     controlContainerTool28,
     controlContainerTool29,
     controlContainerTool30,
     buttonTool5,
     buttonTool3});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     appearance76.Image = ((object)(resources.GetObject("appearance76.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance76;
     buttonTool6.SharedPropsInternal.Caption = "��ѯ";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.ControlName = "cbxDateTime";
     controlContainerTool16.SharedPropsInternal.Caption = " ";
     controlContainerTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool18.ControlName = "dateTimePicker1";
     controlContainerTool18.SharedPropsInternal.Caption = "ʱ���";
     controlContainerTool18.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool19.ControlName = "dateTimePicker2";
     controlContainerTool19.SharedPropsInternal.Caption = "��";
     controlContainerTool19.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool20.ControlName = "tbQueryBatchNo";
     controlContainerTool20.SharedPropsInternal.Caption = "¯��";
     controlContainerTool20.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool4.SharedPropsInternal.Caption = "����";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool4.SharedPropsInternal.Visible = false;
     controlContainerTool25.ControlName = "cbx_Addr";
     controlContainerTool25.SharedPropsInternal.Caption = "��ѡ��";
     controlContainerTool25.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool25.SharedPropsInternal.Visible = false;
     controlContainerTool25.SharedPropsInternal.Width = 103;
     controlContainerTool26.ControlName = "cbx_Standard";
     controlContainerTool26.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool26.SharedPropsInternal.Visible = false;
     controlContainerTool26.SharedPropsInternal.Width = 48;
     controlContainerTool27.ControlName = "cbx_Steel";
     controlContainerTool27.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool27.SharedPropsInternal.Visible = false;
     appearance16.Image = ((object)(resources.GetObject("appearance16.Image")));
     buttonTool2.SharedPropsInternal.AppearancesSmall.Appearance = appearance16;
     buttonTool2.SharedPropsInternal.Caption = "����";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool6,
     controlContainerTool16,
     controlContainerTool18,
     controlContainerTool19,
     controlContainerTool20,
     buttonTool4,
     controlContainerTool25,
     controlContainerTool26,
     controlContainerTool27,
     buttonTool2});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 654);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraToolbarsDockArea1
     //
     this.ultraToolbarsDockArea1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea1, null);
     this.ultraToolbarsDockArea1.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this.ultraToolbarsDockArea1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea1.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea1.Name = "ultraToolbarsDockArea1";
     this.ultraToolbarsDockArea1.Size = new System.Drawing.Size(992, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea1, null);
     //
     // ultraToolbarsDockArea2
     //
     this.ultraToolbarsDockArea2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea2, null);
     this.ultraToolbarsDockArea2.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this.ultraToolbarsDockArea2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea2.Location = new System.Drawing.Point(0, 654);
     this.ultraToolbarsDockArea2.Name = "ultraToolbarsDockArea2";
     this.ultraToolbarsDockArea2.Size = new System.Drawing.Size(992, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea2, null);
     //
     // ultraToolbarsDockArea3
     //
     this.ultraToolbarsDockArea3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea3, null);
     this.ultraToolbarsDockArea3.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this.ultraToolbarsDockArea3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea3.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea3.Name = "ultraToolbarsDockArea3";
     this.ultraToolbarsDockArea3.Size = new System.Drawing.Size(0, 654);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea3, null);
     //
     // ultraToolbarsDockArea4
     //
     this.ultraToolbarsDockArea4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea4, null);
     this.ultraToolbarsDockArea4.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this.ultraToolbarsDockArea4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea4.Location = new System.Drawing.Point(992, 0);
     this.ultraToolbarsDockArea4.Name = "ultraToolbarsDockArea4";
     this.ultraToolbarsDockArea4.Size = new System.Drawing.Size(0, 654);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea4, null);
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "�쳣����";
     this.dataColumn25.ColumnName = "FS_HISWEIGHT";
     //
     // frmWeightQueryBillet
     //
     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.FrmBase_Fill_Panel);
     this.Controls.Add(this.ultraToolbarsDockArea3);
     this.Controls.Add(this.ultraToolbarsDockArea4);
     this.Controls.Add(this.ultraToolbarsDockArea1);
     this.Controls.Add(this.ultraToolbarsDockArea2);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "frmWeightQueryBillet";
     this.Text = "";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.frmWeightQueryBillet_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((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.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 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.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�������");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("A��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_PLAN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_WGT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_WGT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("B��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_PLAN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_WGT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_WGT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("װ¯");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERWEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�ɲ�");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_ORDERNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ԭ��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTOR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_DONE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_DONE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DISCHARGED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_PLANTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_FC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_FC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RATE_ACTUAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RATE_THEORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_PLAN", 6, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_PLAN", 6, true);
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_NUM", 7, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_NUM", 7, true);
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_PLAN", 11, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_PLAN", 11, true);
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_NUM", 12, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_NUM", 12, true);
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings5 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_WGT", 8, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_WGT", 8, true);
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_WGT_LL", 9, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_WGT_LL", 9, true);
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings7 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_WGT", 13, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_WGT", 13, true);
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings8 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_WGT_LL", 14, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_WGT_LL", 14, true);
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings9 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Formula, "round(100 * sum( [FN_POINT_01_WGT_LL] , [FN_POINT_02_WGT_LL] )/sum( [FN_ZZ_WEIGHT" +
             "] ), 2)", "RATE_THEORY", 41, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "RATE_THEORY", 41, true);
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings10 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Formula, "round(100 * sum( [FN_POINT_01_WGT] , [FN_POINT_02_WGT] )/sum( [FN_ZZ_WEIGHT] ), 2" +
             ")", "RATE_ACTUAL", 40, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "RATE_ACTUAL", 40, true);
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings11 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_ZZ_WEIGHT", 25, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_ZZ_WEIGHT", 25, true);
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_PLAN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_WGT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_WGT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRODUCTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTWEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SINGLENUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SINGLEWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STANDNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TWINSTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADDRESSCHECK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STANDARDCHECK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPECHECK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FCLFLAG");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("Ԥ��״̬");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��¯״̬");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool42 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     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(frmWeightPlanBC));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool45 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("Ԥ��״̬");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��¯״̬");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbEdt_Finish = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbEdt_Status = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.llb_CloseAll = new System.Windows.Forms.LinkLabel();
     this.llb_ExpandAll = new System.Windows.Forms.LinkLabel();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraCalcManager1 = new Infragistics.Win.UltraWinCalcManager.UltraCalcManager(this.components);
     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.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.dataColumn29 = 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.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn59 = new System.Data.DataColumn();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn62 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn60 = new System.Data.DataColumn();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.lbl_Rate_Plan2 = new System.Windows.Forms.Label();
     this.lbl_Rate_Plan1 = new System.Windows.Forms.Label();
     this.lbl_Rate_Pre = new System.Windows.Forms.Label();
     this.cbx_WgtT = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_WgtR = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_FC2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_FC1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnSave2 = new System.Windows.Forms.Button();
     this.btnSave1 = new System.Windows.Forms.Button();
     this.btnDone2 = new System.Windows.Forms.Button();
     this.btnDone1 = new System.Windows.Forms.Button();
     this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
     this.cbEdt_CardType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.lbl_Count = new System.Windows.Forms.Label();
     this.cbx_Steel = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.Edt_WgtLL = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_Num2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_Num1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_SingleNum = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_BatchNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.Edt_OrderNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
     this.cbEdt_Length = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
     this.cbEdt_Spec = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbEdt_StandardNo = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbx_Point2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbEdt_Steel = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbx_StandardNo = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_Addr = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_Double = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_Point1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Finish)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Status)).BeginInit();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCalcManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtR)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_CardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Steel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_WgtLL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_SingleNum)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_BatchNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_OrderNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Length)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Spec)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_StandardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Steel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_StandardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Addr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Double)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.cbEdt_Finish);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbEdt_Status);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(992, 654);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // cbEdt_Finish
     //
     this.cbEdt_Finish.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.cbEdt_Finish.AutoSize = false;
     this.coreBind.SetDatabasecommand(this.cbEdt_Finish, null);
     valueListItem1.DataValue = "";
     valueListItem13.DataValue = "1";
     valueListItem13.DisplayText = "��";
     valueListItem12.DataValue = "0";
     valueListItem12.DisplayText = "��";
     this.cbEdt_Finish.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem1,
     valueListItem13,
     valueListItem12});
     this.cbEdt_Finish.Location = new System.Drawing.Point(668, 3);
     this.cbEdt_Finish.MaxLength = 8;
     this.cbEdt_Finish.Name = "cbEdt_Finish";
     this.cbEdt_Finish.Size = new System.Drawing.Size(50, 21);
     this.cbEdt_Finish.TabIndex = 0;
     this.coreBind.SetVerification(this.cbEdt_Finish, null);
     //
     // cbEdt_Status
     //
     this.cbEdt_Status.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.cbEdt_Status.AutoSize = false;
     this.coreBind.SetDatabasecommand(this.cbEdt_Status, null);
     valueListItem27.DataValue = "";
     valueListItem28.DataValue = "1";
     valueListItem28.DisplayText = "��";
     valueListItem29.DataValue = "0";
     valueListItem29.DisplayText = "��";
     this.cbEdt_Status.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem27,
     valueListItem28,
     valueListItem29});
     this.cbEdt_Status.Location = new System.Drawing.Point(578, 3);
     this.cbEdt_Status.MaxLength = 8;
     this.cbEdt_Status.Name = "cbEdt_Status";
     this.cbEdt_Status.Size = new System.Drawing.Size(50, 21);
     this.cbEdt_Status.TabIndex = 0;
     this.coreBind.SetVerification(this.cbEdt_Status, null);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(453, 3);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(85, 21);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // 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";
     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(85, 3);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(140, 21);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, 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";
     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(247, 3);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(140, 21);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(11, 7);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(15, 14);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     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, 26);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 628);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.llb_CloseAll);
     this.ultraGroupBox2.Controls.Add(this.llb_ExpandAll);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(992, 439);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "��ļ���Ԥ��";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // llb_CloseAll
     //
     this.llb_CloseAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_CloseAll, null);
     this.llb_CloseAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_CloseAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.Location = new System.Drawing.Point(768, 4);
     this.llb_CloseAll.Name = "llb_CloseAll";
     this.llb_CloseAll.Size = new System.Drawing.Size(56, 14);
     this.llb_CloseAll.TabIndex = 0;
     this.llb_CloseAll.TabStop = true;
     this.llb_CloseAll.Text = "ȫ������";
     this.llb_CloseAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_CloseAll, null);
     this.llb_CloseAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_CloseAll_LinkClicked);
     //
     // llb_ExpandAll
     //
     this.llb_ExpandAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_ExpandAll, null);
     this.llb_ExpandAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_ExpandAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.Location = new System.Drawing.Point(694, 4);
     this.llb_ExpandAll.Name = "llb_ExpandAll";
     this.llb_ExpandAll.Size = new System.Drawing.Size(56, 14);
     this.llb_ExpandAll.TabIndex = 0;
     this.llb_ExpandAll.TabStop = true;
     this.llb_ExpandAll.Text = "ȫ��չ��";
     this.llb_ExpandAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_ExpandAll, null);
     this.llb_ExpandAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_ExpandAll_LinkClicked);
     //
     // ultraGrid1
     //
     this.ultraGrid1.CalcManager = this.ultraCalcManager1;
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 6;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 6;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 25;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 33;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     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});
     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.ColumnLayout;
     summarySettings1.DisplayFormat = "{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance17;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance18;
     summarySettings3.DisplayFormat = "{0}";
     summarySettings3.GroupBySummaryValueAppearance = appearance19;
     summarySettings4.DisplayFormat = "{0}";
     summarySettings4.GroupBySummaryValueAppearance = appearance20;
     summarySettings5.DisplayFormat = "{0}";
     summarySettings5.GroupBySummaryValueAppearance = appearance21;
     summarySettings6.DisplayFormat = "{0}";
     summarySettings6.GroupBySummaryValueAppearance = appearance22;
     summarySettings7.DisplayFormat = "{0}";
     summarySettings7.GroupBySummaryValueAppearance = appearance23;
     summarySettings8.DisplayFormat = "{0}";
     summarySettings8.GroupBySummaryValueAppearance = appearance24;
     summarySettings9.DisplayFormat = "{0}";
     summarySettings9.GroupBySummaryValueAppearance = appearance26;
     summarySettings10.DisplayFormat = "{0}";
     summarySettings10.GroupBySummaryValueAppearance = appearance27;
     summarySettings11.DisplayFormat = "{0}";
     summarySettings11.GroupBySummaryValueAppearance = appearance28;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4,
     summarySettings5,
     summarySettings6,
     summarySettings7,
     summarySettings8,
     summarySettings9,
     summarySettings10,
     summarySettings11});
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn44.Header.VisiblePosition = 0;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn45.Header.VisiblePosition = 1;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn46.Header.VisiblePosition = 2;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn47.Header.VisiblePosition = 3;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn48.Header.VisiblePosition = 4;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn49.Header.VisiblePosition = 5;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn50.Header.VisiblePosition = 6;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn51.Header.VisiblePosition = 7;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn52.Header.VisiblePosition = 8;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn53.Header.VisiblePosition = 9;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn54.Header.VisiblePosition = 10;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn55.Header.VisiblePosition = 11;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn56.Header.VisiblePosition = 12;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn57.Header.VisiblePosition = 13;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn58.Header.VisiblePosition = 14;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn59.Header.VisiblePosition = 15;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn60.Header.VisiblePosition = 16;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn61.Header.VisiblePosition = 17;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn62.Header.VisiblePosition = 18;
     ultraGridColumn62.Hidden = true;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn63.Header.VisiblePosition = 19;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58,
     ultraGridColumn59,
     ultraGridColumn60,
     ultraGridColumn61,
     ultraGridColumn62,
     ultraGridColumn63});
     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;
     appearance29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance29.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.HeaderAppearance = appearance29;
     appearance30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance30.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.RowSelectorAppearance = appearance30;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance116.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance116;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance117.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance117;
     appearance25.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance25;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance118.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance118.TextHAlignAsString = "Center";
     appearance118.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance118;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance1.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance1;
     appearance119.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance119;
     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;
     appearance120.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance120.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance120.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance120.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance120;
     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("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 24);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(986, 412);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // ultraCalcManager1
     //
     this.ultraCalcManager1.ContainingControl = this;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
     new System.Data.DataRelation("Relation1", "Table1", "Table2", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_BATCHNO"}, false)});
     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.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.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn61,
     this.dataColumn62});
     this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.UniqueConstraint("Constraint1", new string[] {
                 "FS_ZC_BATCHNO"}, false)});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "�������";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "���Ʊ��";
     this.dataColumn2.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "���";
     this.dataColumn3.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "����";
     this.dataColumn4.ColumnName = "FN_LENGTH";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "�ƺ�";
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "A��";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "Ԥ��";
     this.dataColumn7.ColumnName = "FN_POINT_01_PLAN";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "ʵ��";
     this.dataColumn8.ColumnName = "FN_POINT_01_NUM";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "����";
     this.dataColumn9.ColumnName = "FN_POINT_01_WGT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "����";
     this.dataColumn10.ColumnName = "FN_POINT_01_WGT_LL";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "B��";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "Ԥ��";
     this.dataColumn12.ColumnName = "FN_POINT_02_PLAN";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "ʵ��";
     this.dataColumn13.ColumnName = "FN_POINT_02_NUM";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "����";
     this.dataColumn14.ColumnName = "FN_POINT_02_WGT";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "����";
     this.dataColumn15.ColumnName = "FN_POINT_02_WGT_LL";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "����";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "����";
     this.dataColumn17.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "����";
     this.dataColumn18.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "����";
     this.dataColumn19.ColumnName = "FN_BILLET_WEIGHT_LL";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "װ¯";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "����";
     this.dataColumn21.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "����";
     this.dataColumn22.ColumnName = "FN_ZC_ENTERWEIGHT";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "����";
     this.dataColumn23.ColumnName = "FN_ZC_ENTERWEIGHT_LL";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "�ɲ�";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "����";
     this.dataColumn25.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "����";
     this.dataColumn26.ColumnName = "FN_ZZ_WEIGHT";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "����";
     this.dataColumn27.ColumnName = "FN_ZZ_WEIGHT_LL";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "��������";
     this.dataColumn28.ColumnName = "FS_ZC_ORDERNO";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "ԭ��";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "���";
     this.dataColumn30.ColumnName = "FS_GP_SPE";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "����";
     this.dataColumn31.ColumnName = "FN_GP_LEN";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "������";
     this.dataColumn32.ColumnName = "FS_BATCH_OPTOR";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "����ʱ��";
     this.dataColumn33.ColumnName = "FS_BATCH_OPTDATE";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "���";
     this.dataColumn53.ColumnName = "FN_POINT_01_DONE";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "���";
     this.dataColumn54.ColumnName = "FN_POINT_02_DONE";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "�ѳ�¯";
     this.dataColumn55.ColumnName = "DISCHARGED";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "Ԥ��Ա";
     this.dataColumn56.ColumnName = "FS_PLANPERSON";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "Ԥ��ʱ��";
     this.dataColumn57.ColumnName = "FD_PLANTIME";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "�dz�";
     this.dataColumn58.ColumnName = "FN_POINT_01_FC";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "�dz�";
     this.dataColumn59.ColumnName = "FN_POINT_02_FC";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "ʵ�سɲ���(%)";
     this.dataColumn61.ColumnName = "RATE_ACTUAL";
     //
     // dataColumn62
     //
     this.dataColumn62.Caption = "���سɲ���(%)";
     this.dataColumn62.ColumnName = "RATE_THEORY";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn60});
     this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.ForeignKeyConstraint("Relation1", "Table1", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_BATCHNO"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "������";
     this.dataColumn34.ColumnName = "FS_POINTID";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "Ԥ����";
     this.dataColumn35.ColumnName = "FN_POINT_PLAN";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "�����";
     this.dataColumn36.ColumnName = "FN_POINT_NUM";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "����";
     this.dataColumn37.ColumnName = "FN_POINT_WGT";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "����";
     this.dataColumn38.ColumnName = "FN_POINT_WGT_LL";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "�ƺ�";
     this.dataColumn39.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "���";
     this.dataColumn40.ColumnName = "FS_SPEC";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "����";
     this.dataColumn41.ColumnName = "FN_LENGTH";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "������";
     this.dataColumn42.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "��������";
     this.dataColumn43.ColumnName = "FS_PRINTWEIGHTTYPE";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "����֧��";
     this.dataColumn44.ColumnName = "FN_SINGLENUM";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "��������";
     this.dataColumn45.ColumnName = "FN_SINGLEWEIGHT";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "��׼��";
     this.dataColumn46.ColumnName = "FS_STANDNO";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "��������";
     this.dataColumn47.ColumnName = "FS_PRINTTYPE";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "˫��";
     this.dataColumn48.ColumnName = "FS_TWINSTYPE";
     //
     // dataColumn49
     //
     this.dataColumn49.Caption = "��ַ";
     this.dataColumn49.ColumnName = "FS_ADDRESSCHECK";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "��׼";
     this.dataColumn50.ColumnName = "FS_STANDARDCHECK";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "�ƺ�";
     this.dataColumn51.ColumnName = "FS_STEELTYPECHECK";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "���Ʊ��";
     this.dataColumn52.ColumnName = "FS_BATCHNO";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "�dz�";
     this.dataColumn60.ColumnName = "FS_FCLFLAG";
     //
     // 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(868, 2);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 0;
     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.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(992, 189);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 439);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(992, 189);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "���ݱ༭����";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 20);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(986, 166);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lbl_Rate_Plan2);
     this.panel1.Controls.Add(this.lbl_Rate_Plan1);
     this.panel1.Controls.Add(this.lbl_Rate_Pre);
     this.panel1.Controls.Add(this.cbx_WgtT);
     this.panel1.Controls.Add(this.cbx_WgtR);
     this.panel1.Controls.Add(this.cbx_FC2);
     this.panel1.Controls.Add(this.cbx_FC1);
     this.panel1.Controls.Add(this.btnSave2);
     this.panel1.Controls.Add(this.btnSave1);
     this.panel1.Controls.Add(this.btnDone2);
     this.panel1.Controls.Add(this.btnDone1);
     this.panel1.Controls.Add(this.ultraLabel9);
     this.panel1.Controls.Add(this.cbEdt_CardType);
     this.panel1.Controls.Add(this.lbl_Count);
     this.panel1.Controls.Add(this.cbx_Steel);
     this.panel1.Controls.Add(this.Edt_WgtLL);
     this.panel1.Controls.Add(this.Edt_Num2);
     this.panel1.Controls.Add(this.Edt_Num1);
     this.panel1.Controls.Add(this.Edt_SingleNum);
     this.panel1.Controls.Add(this.Edt_BatchNo);
     this.panel1.Controls.Add(this.Edt_OrderNo);
     this.panel1.Controls.Add(this.ultraLabel3);
     this.panel1.Controls.Add(this.ultraLabel2);
     this.panel1.Controls.Add(this.ultraLabel8);
     this.panel1.Controls.Add(this.ultraLabel6);
     this.panel1.Controls.Add(this.ultraLabel7);
     this.panel1.Controls.Add(this.cbEdt_Length);
     this.panel1.Controls.Add(this.ultraLabel4);
     this.panel1.Controls.Add(this.ultraLabel5);
     this.panel1.Controls.Add(this.ultraLabel1);
     this.panel1.Controls.Add(this.cbEdt_Spec);
     this.panel1.Controls.Add(this.cbEdt_StandardNo);
     this.panel1.Controls.Add(this.cbx_Point2);
     this.panel1.Controls.Add(this.cbEdt_Steel);
     this.panel1.Controls.Add(this.cbx_StandardNo);
     this.panel1.Controls.Add(this.cbx_Addr);
     this.panel1.Controls.Add(this.cbx_Double);
     this.panel1.Controls.Add(this.cbx_Point1);
     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(986, 166);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // lbl_Rate_Plan2
     //
     this.lbl_Rate_Plan2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Rate_Plan2, null);
     this.lbl_Rate_Plan2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Rate_Plan2.ForeColor = System.Drawing.Color.Green;
     this.lbl_Rate_Plan2.Location = new System.Drawing.Point(838, 119);
     this.lbl_Rate_Plan2.Name = "lbl_Rate_Plan2";
     this.lbl_Rate_Plan2.Size = new System.Drawing.Size(29, 12);
     this.lbl_Rate_Plan2.TabIndex = 0;
     this.lbl_Rate_Plan2.Text = "����";
     this.coreBind.SetVerification(this.lbl_Rate_Plan2, null);
     //
     // lbl_Rate_Plan1
     //
     this.lbl_Rate_Plan1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Rate_Plan1, null);
     this.lbl_Rate_Plan1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Rate_Plan1.ForeColor = System.Drawing.Color.Green;
     this.lbl_Rate_Plan1.Location = new System.Drawing.Point(408, 119);
     this.lbl_Rate_Plan1.Name = "lbl_Rate_Plan1";
     this.lbl_Rate_Plan1.Size = new System.Drawing.Size(29, 12);
     this.lbl_Rate_Plan1.TabIndex = 0;
     this.lbl_Rate_Plan1.Text = "����";
     this.coreBind.SetVerification(this.lbl_Rate_Plan1, null);
     //
     // lbl_Rate_Pre
     //
     this.lbl_Rate_Pre.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Rate_Pre, null);
     this.lbl_Rate_Pre.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Rate_Pre.ForeColor = System.Drawing.Color.Green;
     this.lbl_Rate_Pre.Location = new System.Drawing.Point(587, 78);
     this.lbl_Rate_Pre.Name = "lbl_Rate_Pre";
     this.lbl_Rate_Pre.Size = new System.Drawing.Size(29, 12);
     this.lbl_Rate_Pre.TabIndex = 0;
     this.lbl_Rate_Pre.Text = "����";
     this.coreBind.SetVerification(this.lbl_Rate_Pre, null);
     //
     // cbx_WgtT
     //
     appearance10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cbx_WgtT.Appearance = appearance10;
     this.cbx_WgtT.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_WgtT, null);
     this.cbx_WgtT.Location = new System.Drawing.Point(748, 21);
     this.cbx_WgtT.Name = "cbx_WgtT";
     this.cbx_WgtT.Size = new System.Drawing.Size(71, 19);
     this.cbx_WgtT.TabIndex = 10;
     this.cbx_WgtT.Text = "���ش���";
     this.coreBind.SetVerification(this.cbx_WgtT, null);
     //
     // cbx_WgtR
     //
     appearance9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cbx_WgtR.Appearance = appearance9;
     this.cbx_WgtR.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_WgtR, null);
     this.cbx_WgtR.Location = new System.Drawing.Point(649, 21);
     this.cbx_WgtR.Name = "cbx_WgtR";
     this.cbx_WgtR.Size = new System.Drawing.Size(71, 19);
     this.cbx_WgtR.TabIndex = 9;
     this.cbx_WgtR.Text = "ʵ�ش���";
     this.coreBind.SetVerification(this.cbx_WgtR, null);
     //
     // cbx_FC2
     //
     this.cbx_FC2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_FC2, null);
     this.cbx_FC2.Enabled = false;
     this.cbx_FC2.Location = new System.Drawing.Point(649, 116);
     this.cbx_FC2.Name = "cbx_FC2";
     this.cbx_FC2.Size = new System.Drawing.Size(46, 19);
     this.cbx_FC2.TabIndex = 22;
     this.cbx_FC2.Text = "�dz�";
     this.coreBind.SetVerification(this.cbx_FC2, null);
     this.cbx_FC2.CheckedChanged += new System.EventHandler(this.cbx_FC2_CheckedChanged);
     //
     // cbx_FC1
     //
     this.cbx_FC1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_FC1, null);
     this.cbx_FC1.Enabled = false;
     this.cbx_FC1.Location = new System.Drawing.Point(219, 116);
     this.cbx_FC1.Name = "cbx_FC1";
     this.cbx_FC1.Size = new System.Drawing.Size(46, 19);
     this.cbx_FC1.TabIndex = 17;
     this.cbx_FC1.Text = "�dz�";
     this.coreBind.SetVerification(this.cbx_FC1, null);
     this.cbx_FC1.CheckedChanged += new System.EventHandler(this.cbx_FC1_CheckedChanged);
     //
     // btnSave2
     //
     this.coreBind.SetDatabasecommand(this.btnSave2, null);
     this.btnSave2.Location = new System.Drawing.Point(703, 114);
     this.btnSave2.Name = "btnSave2";
     this.btnSave2.Size = new System.Drawing.Size(62, 23);
     this.btnSave2.TabIndex = 23;
     this.btnSave2.Text = "ɾ��Ԥ��";
     this.btnSave2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnSave2, null);
     this.btnSave2.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnSave1
     //
     this.coreBind.SetDatabasecommand(this.btnSave1, null);
     this.btnSave1.Location = new System.Drawing.Point(273, 114);
     this.btnSave1.Name = "btnSave1";
     this.btnSave1.Size = new System.Drawing.Size(62, 23);
     this.btnSave1.TabIndex = 18;
     this.btnSave1.Text = "ɾ��Ԥ��";
     this.btnSave1.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnSave1, null);
     this.btnSave1.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDone2
     //
     this.coreBind.SetDatabasecommand(this.btnDone2, null);
     this.btnDone2.Enabled = false;
     this.btnDone2.Location = new System.Drawing.Point(773, 114);
     this.btnDone2.Name = "btnDone2";
     this.btnDone2.Size = new System.Drawing.Size(62, 23);
     this.btnDone2.TabIndex = 24;
     this.btnDone2.Text = "��������";
     this.btnDone2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDone2, null);
     this.btnDone2.Click += new System.EventHandler(this.btnDone_Click);
     //
     // btnDone1
     //
     this.coreBind.SetDatabasecommand(this.btnDone1, null);
     this.btnDone1.Enabled = false;
     this.btnDone1.Location = new System.Drawing.Point(343, 114);
     this.btnDone1.Name = "btnDone1";
     this.btnDone1.Size = new System.Drawing.Size(62, 23);
     this.btnDone1.TabIndex = 19;
     this.btnDone1.Text = "��������";
     this.btnDone1.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDone1, null);
     this.btnDone1.Click += new System.EventHandler(this.btnDone_Click);
     //
     // ultraLabel9
     //
     this.ultraLabel9.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel9, null);
     this.ultraLabel9.Location = new System.Drawing.Point(431, 78);
     this.ultraLabel9.Name = "ultraLabel9";
     this.ultraLabel9.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel9.TabIndex = 0;
     this.ultraLabel9.Text = "��������";
     this.coreBind.SetVerification(this.ultraLabel9, null);
     //
     // cbEdt_CardType
     //
     this.cbEdt_CardType.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_CardType, null);
     valueListItem22.DataValue = "";
     valueListItem18.DataValue = "�ص㹤��ר��";
     valueListItem18.DisplayText = "�ص㹤��ר��";
     valueListItem19.DataValue = "ʡ��ר��";
     valueListItem19.DisplayText = "ʡ��ר��";
     valueListItem20.DataValue = "ʡ��ר��";
     valueListItem20.DisplayText = "ʡ��ר��";
     valueListItem21.DataValue = "�������";
     valueListItem21.DisplayText = "�������";
     this.cbEdt_CardType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem22,
     valueListItem18,
     valueListItem19,
     valueListItem20,
     valueListItem21});
     this.cbEdt_CardType.Location = new System.Drawing.Point(489, 74);
     this.cbEdt_CardType.MaxLength = 20;
     this.cbEdt_CardType.Name = "cbEdt_CardType";
     this.cbEdt_CardType.Size = new System.Drawing.Size(92, 21);
     this.cbEdt_CardType.TabIndex = 8;
     this.coreBind.SetVerification(this.cbEdt_CardType, null);
     //
     // lbl_Count
     //
     this.lbl_Count.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Count, null);
     this.lbl_Count.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Count.ForeColor = System.Drawing.Color.Green;
     this.lbl_Count.Location = new System.Drawing.Point(586, 53);
     this.lbl_Count.Name = "lbl_Count";
     this.lbl_Count.Size = new System.Drawing.Size(29, 12);
     this.lbl_Count.TabIndex = 0;
     this.lbl_Count.Text = "����";
     this.coreBind.SetVerification(this.lbl_Count, null);
     //
     // cbx_Steel
     //
     this.cbx_Steel.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Steel, null);
     this.cbx_Steel.Location = new System.Drawing.Point(748, 75);
     this.cbx_Steel.Name = "cbx_Steel";
     this.cbx_Steel.Size = new System.Drawing.Size(71, 19);
     this.cbx_Steel.TabIndex = 14;
     this.cbx_Steel.Text = "��ӡ�ƺ�";
     this.coreBind.SetVerification(this.cbx_Steel, null);
     //
     // Edt_WgtLL
     //
     this.coreBind.SetDatabasecommand(this.Edt_WgtLL, null);
     this.Edt_WgtLL.Location = new System.Drawing.Point(489, 47);
     this.Edt_WgtLL.MaskInput = "{LOC}n.nnn";
     this.Edt_WgtLL.Name = "Edt_WgtLL";
     this.Edt_WgtLL.Nullable = true;
     this.Edt_WgtLL.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.Edt_WgtLL.Size = new System.Drawing.Size(92, 21);
     this.Edt_WgtLL.TabIndex = 7;
     this.Edt_WgtLL.Value = null;
     this.coreBind.SetVerification(this.Edt_WgtLL, null);
     this.Edt_WgtLL.ValueChanged += new System.EventHandler(this.Edt_WgtLL_ValueChanged);
     //
     // Edt_Num2
     //
     this.coreBind.SetDatabasecommand(this.Edt_Num2, null);
     this.Edt_Num2.Enabled = false;
     this.Edt_Num2.Location = new System.Drawing.Point(586, 115);
     this.Edt_Num2.MaskInput = "{LOC}nnn";
     this.Edt_Num2.Name = "Edt_Num2";
     this.Edt_Num2.Nullable = true;
     this.Edt_Num2.Size = new System.Drawing.Size(55, 21);
     this.Edt_Num2.TabIndex = 21;
     this.Edt_Num2.Value = null;
     this.coreBind.SetVerification(this.Edt_Num2, null);
     this.Edt_Num2.ValueChanged += new System.EventHandler(this.Edt_Num2_ValueChanged);
     //
     // Edt_Num1
     //
     this.coreBind.SetDatabasecommand(this.Edt_Num1, null);
     this.Edt_Num1.Enabled = false;
     this.Edt_Num1.Location = new System.Drawing.Point(156, 115);
     this.Edt_Num1.MaskInput = "{LOC}nnn";
     this.Edt_Num1.Name = "Edt_Num1";
     this.Edt_Num1.Nullable = true;
     this.Edt_Num1.Size = new System.Drawing.Size(55, 21);
     this.Edt_Num1.TabIndex = 16;
     this.Edt_Num1.Value = null;
     this.coreBind.SetVerification(this.Edt_Num1, null);
     this.Edt_Num1.ValueChanged += new System.EventHandler(this.Edt_Num1_ValueChanged);
     //
     // Edt_SingleNum
     //
     this.coreBind.SetDatabasecommand(this.Edt_SingleNum, null);
     this.Edt_SingleNum.Location = new System.Drawing.Point(489, 20);
     this.Edt_SingleNum.MaskInput = "{LOC}nnn";
     this.Edt_SingleNum.Name = "Edt_SingleNum";
     this.Edt_SingleNum.Nullable = true;
     this.Edt_SingleNum.Size = new System.Drawing.Size(92, 21);
     this.Edt_SingleNum.TabIndex = 6;
     this.Edt_SingleNum.Value = null;
     this.coreBind.SetVerification(this.Edt_SingleNum, null);
     //
     // Edt_BatchNo
     //
     this.coreBind.SetDatabasecommand(this.Edt_BatchNo, null);
     this.Edt_BatchNo.Enabled = false;
     this.Edt_BatchNo.Location = new System.Drawing.Point(265, 20);
     this.Edt_BatchNo.MaxLength = 20;
     this.Edt_BatchNo.Name = "Edt_BatchNo";
     this.Edt_BatchNo.Size = new System.Drawing.Size(119, 21);
     this.Edt_BatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.Edt_BatchNo, null);
     //
     // Edt_OrderNo
     //
     this.coreBind.SetDatabasecommand(this.Edt_OrderNo, null);
     this.Edt_OrderNo.Location = new System.Drawing.Point(265, 47);
     this.Edt_OrderNo.MaxLength = 12;
     this.Edt_OrderNo.Name = "Edt_OrderNo";
     this.Edt_OrderNo.Size = new System.Drawing.Size(119, 21);
     this.Edt_OrderNo.TabIndex = 4;
     this.coreBind.SetVerification(this.Edt_OrderNo, null);
     //
     // ultraLabel3
     //
     this.ultraLabel3.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel3, null);
     this.ultraLabel3.Location = new System.Drawing.Point(28, 78);
     this.ultraLabel3.Name = "ultraLabel3";
     this.ultraLabel3.Size = new System.Drawing.Size(29, 16);
     this.ultraLabel3.TabIndex = 0;
     this.ultraLabel3.Text = "����";
     this.coreBind.SetVerification(this.ultraLabel3, null);
     //
     // ultraLabel2
     //
     this.ultraLabel2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel2, null);
     this.ultraLabel2.Location = new System.Drawing.Point(28, 51);
     this.ultraLabel2.Name = "ultraLabel2";
     this.ultraLabel2.Size = new System.Drawing.Size(29, 16);
     this.ultraLabel2.TabIndex = 0;
     this.ultraLabel2.Text = "���";
     this.coreBind.SetVerification(this.ultraLabel2, null);
     //
     // ultraLabel8
     //
     this.ultraLabel8.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel8, null);
     this.ultraLabel8.Location = new System.Drawing.Point(431, 51);
     this.ultraLabel8.Name = "ultraLabel8";
     this.ultraLabel8.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel8.TabIndex = 0;
     this.ultraLabel8.Text = "��������";
     this.coreBind.SetVerification(this.ultraLabel8, null);
     //
     // ultraLabel6
     //
     this.ultraLabel6.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel6, null);
     this.ultraLabel6.Location = new System.Drawing.Point(207, 24);
     this.ultraLabel6.Name = "ultraLabel6";
     this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel6.TabIndex = 0;
     this.ultraLabel6.Text = "���Ʊ��";
     this.coreBind.SetVerification(this.ultraLabel6, null);
     //
     // ultraLabel7
     //
     this.ultraLabel7.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel7, null);
     this.ultraLabel7.Location = new System.Drawing.Point(431, 24);
     this.ultraLabel7.Name = "ultraLabel7";
     this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel7.TabIndex = 0;
     this.ultraLabel7.Text = "����֧��";
     this.coreBind.SetVerification(this.ultraLabel7, null);
     //
     // cbEdt_Length
     //
     this.cbEdt_Length.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_Length, null);
     valueListItem14.DataValue = "9";
     valueListItem14.DisplayText = "9";
     valueListItem15.DataValue = "12";
     valueListItem15.DisplayText = "12";
     this.cbEdt_Length.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem14,
     valueListItem15});
     this.cbEdt_Length.Location = new System.Drawing.Point(61, 74);
     this.cbEdt_Length.MaxLength = 8;
     this.cbEdt_Length.Name = "cbEdt_Length";
     this.cbEdt_Length.Size = new System.Drawing.Size(99, 21);
     this.cbEdt_Length.TabIndex = 3;
     this.coreBind.SetVerification(this.cbEdt_Length, null);
     //
     // ultraLabel4
     //
     this.ultraLabel4.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel4, null);
     this.ultraLabel4.Location = new System.Drawing.Point(207, 51);
     this.ultraLabel4.Name = "ultraLabel4";
     this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel4.TabIndex = 0;
     this.ultraLabel4.Text = "��������";
     this.coreBind.SetVerification(this.ultraLabel4, null);
     //
     // ultraLabel5
     //
     this.ultraLabel5.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel5, null);
     this.ultraLabel5.Location = new System.Drawing.Point(207, 78);
     this.ultraLabel5.Name = "ultraLabel5";
     this.ultraLabel5.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel5.TabIndex = 0;
     this.ultraLabel5.Text = "�� ׼ ��";
     this.coreBind.SetVerification(this.ultraLabel5, null);
     //
     // ultraLabel1
     //
     this.ultraLabel1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel1, null);
     this.ultraLabel1.Location = new System.Drawing.Point(28, 24);
     this.ultraLabel1.Name = "ultraLabel1";
     this.ultraLabel1.Size = new System.Drawing.Size(29, 16);
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text = "�ƺ�";
     this.coreBind.SetVerification(this.ultraLabel1, null);
     //
     // cbEdt_Spec
     //
     this.cbEdt_Spec.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_Spec, null);
     valueListItem23.DataValue = "12";
     valueListItem23.DisplayText = "12";
     valueListItem2.DataValue = "14";
     valueListItem2.DisplayText = "14";
     valueListItem3.DataValue = "16";
     valueListItem3.DisplayText = "16";
     valueListItem4.DataValue = "18";
     valueListItem4.DisplayText = "18";
     valueListItem5.DataValue = "20";
     valueListItem5.DisplayText = "20";
     valueListItem6.DataValue = "22";
     valueListItem6.DisplayText = "22";
     valueListItem7.DataValue = "24";
     valueListItem7.DisplayText = "24";
     valueListItem8.DataValue = "25";
     valueListItem8.DisplayText = "25";
     valueListItem9.DataValue = "28";
     valueListItem9.DisplayText = "28";
     valueListItem10.DataValue = "30";
     valueListItem10.DisplayText = "30";
     valueListItem11.DataValue = "32";
     valueListItem11.DisplayText = "32";
     this.cbEdt_Spec.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem23,
     valueListItem2,
     valueListItem3,
     valueListItem4,
     valueListItem5,
     valueListItem6,
     valueListItem7,
     valueListItem8,
     valueListItem9,
     valueListItem10,
     valueListItem11});
     this.cbEdt_Spec.Location = new System.Drawing.Point(61, 47);
     this.cbEdt_Spec.MaxLength = 20;
     this.cbEdt_Spec.Name = "cbEdt_Spec";
     this.cbEdt_Spec.Size = new System.Drawing.Size(99, 21);
     this.cbEdt_Spec.TabIndex = 2;
     this.coreBind.SetVerification(this.cbEdt_Spec, null);
     //
     // cbEdt_StandardNo
     //
     this.cbEdt_StandardNo.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_StandardNo, null);
     valueListItem17.DataValue = "";
     valueListItem16.DataValue = "GB 1499.2-2007";
     valueListItem16.DisplayText = "GB 1499.2-2007";
     this.cbEdt_StandardNo.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem17,
     valueListItem16});
     this.cbEdt_StandardNo.Location = new System.Drawing.Point(265, 74);
     this.cbEdt_StandardNo.MaxLength = 20;
     this.cbEdt_StandardNo.Name = "cbEdt_StandardNo";
     this.cbEdt_StandardNo.Size = new System.Drawing.Size(119, 21);
     this.cbEdt_StandardNo.TabIndex = 5;
     this.coreBind.SetVerification(this.cbEdt_StandardNo, null);
     //
     // cbx_Point2
     //
     this.cbx_Point2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Point2, null);
     this.cbx_Point2.Location = new System.Drawing.Point(489, 117);
     this.cbx_Point2.Name = "cbx_Point2";
     this.cbx_Point2.Size = new System.Drawing.Size(89, 19);
     this.cbx_Point2.TabIndex = 20;
     this.cbx_Point2.Text = "B��Ԥ������";
     this.coreBind.SetVerification(this.cbx_Point2, null);
     this.cbx_Point2.CheckedChanged += new System.EventHandler(this.cbx_Point2_CheckedChanged);
     //
     // cbEdt_Steel
     //
     this.cbEdt_Steel.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_Steel, null);
     this.cbEdt_Steel.Location = new System.Drawing.Point(61, 20);
     this.cbEdt_Steel.MaxLength = 20;
     this.cbEdt_Steel.Name = "cbEdt_Steel";
     this.cbEdt_Steel.Size = new System.Drawing.Size(99, 21);
     this.cbEdt_Steel.TabIndex = 1;
     this.coreBind.SetVerification(this.cbEdt_Steel, null);
     //
     // cbx_StandardNo
     //
     this.cbx_StandardNo.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_StandardNo, null);
     this.cbx_StandardNo.Location = new System.Drawing.Point(649, 75);
     this.cbx_StandardNo.Name = "cbx_StandardNo";
     this.cbx_StandardNo.Size = new System.Drawing.Size(71, 19);
     this.cbx_StandardNo.TabIndex = 13;
     this.cbx_StandardNo.Text = "��ӡ��׼";
     this.coreBind.SetVerification(this.cbx_StandardNo, null);
     //
     // cbx_Addr
     //
     this.cbx_Addr.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Addr, null);
     this.cbx_Addr.Location = new System.Drawing.Point(748, 48);
     this.cbx_Addr.Name = "cbx_Addr";
     this.cbx_Addr.Size = new System.Drawing.Size(71, 19);
     this.cbx_Addr.TabIndex = 12;
     this.cbx_Addr.Text = "��ӡ��ַ";
     this.coreBind.SetVerification(this.cbx_Addr, null);
     //
     // cbx_Double
     //
     this.cbx_Double.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Double, null);
     this.cbx_Double.Location = new System.Drawing.Point(649, 48);
     this.cbx_Double.Name = "cbx_Double";
     this.cbx_Double.Size = new System.Drawing.Size(71, 19);
     this.cbx_Double.TabIndex = 11;
     this.cbx_Double.Text = "��ӡ˫��";
     this.coreBind.SetVerification(this.cbx_Double, null);
     //
     // cbx_Point1
     //
     this.cbx_Point1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Point1, null);
     this.cbx_Point1.Location = new System.Drawing.Point(59, 117);
     this.cbx_Point1.Name = "cbx_Point1";
     this.cbx_Point1.Size = new System.Drawing.Size(89, 19);
     this.cbx_Point1.TabIndex = 15;
     this.cbx_Point1.Text = "A��Ԥ������";
     this.coreBind.SetVerification(this.cbx_Point1, null);
     this.cbx_Point1.CheckedChanged += new System.EventHandler(this.cbx_Point1_CheckedChanged);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool2.ControlName = "cbxDateTime";
     controlContainerTool2.InstanceProps.Width = 24;
     controlContainerTool12.ControlName = "dateTimePicker1";
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 162;
     controlContainerTool11.ControlName = "tbQueryBatchNo";
     controlContainerTool11.InstanceProps.IsFirstInGroup = true;
     controlContainerTool11.InstanceProps.Width = 144;
     controlContainerTool21.InstanceProps.IsFirstInGroup = true;
     controlContainerTool21.InstanceProps.Width = 145;
     controlContainerTool7.ControlName = "cbEdt_Status";
     controlContainerTool7.InstanceProps.IsFirstInGroup = true;
     controlContainerTool7.InstanceProps.Width = 84;
     controlContainerTool8.ControlName = "cbEdt_Finish";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     buttonTool39.InstanceProps.IsFirstInGroup = true;
     buttonTool42.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool2,
     controlContainerTool12,
     controlContainerTool20,
     controlContainerTool11,
     controlContainerTool21,
     controlContainerTool7,
     controlContainerTool8,
     buttonTool39,
     buttonTool42,
     buttonTool5});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 199;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "��";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 162;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Visible = false;
     controlContainerTool24.SharedPropsInternal.Width = 145;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "����Ԥ��";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool45.SharedPropsInternal.Visible = false;
     appearance124.Image = ((object)(resources.GetObject("appearance124.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance124;
     buttonTool4.SharedPropsInternal.Caption = "ɾ��Ԥ��";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool4.SharedPropsInternal.Visible = false;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.SharedPropsInternal.Caption = "��";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 24;
     controlContainerTool4.ControlName = "cbEdt_Status";
     controlContainerTool4.SharedPropsInternal.Caption = "Ԥ��";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.SharedPropsInternal.Width = 84;
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "���Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 144;
     controlContainerTool5.ControlName = "cbEdt_Finish";
     controlContainerTool5.SharedPropsInternal.Caption = "��¯";
     controlContainerTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool4,
     controlContainerTool1,
     controlContainerTool4,
     controlContainerTool10,
     controlContainerTool5});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 654);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // frmWeightPlanBC
     //
     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.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "frmWeightPlanBC";
     this.Text = "��ļ���Ԥ��";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.frmWeightPlanBC_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Finish)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Status)).EndInit();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCalcManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtR)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_CardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Steel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_WgtLL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_SingleNum)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_BatchNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_OrderNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Length)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Spec)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_StandardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Steel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_StandardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Addr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Double)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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_CARDNUMBER", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SUPPLIERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUNDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("卸货", 9023985);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("复磅", 9023986);
     Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SUPPLIERNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TYPENAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POINTNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_WEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_WEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUNDTYPE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_COUNT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "卸货", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "复磅", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_CARDNUMBER", 1, true, "汽车衡一次计量表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     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_WEIGHT", 11, true, "汽车衡一次计量表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = 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.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid3 = 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.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn17 = 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.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.tbBZ = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbSHDW = new System.Windows.Forms.ComboBox();
     this.label12 = new System.Windows.Forms.Label();
     this.cbFHDW = new System.Windows.Forms.ComboBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cbCYDW = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.cbFlow = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cbWLMC = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tbReceiverPlace = new System.Windows.Forms.TextBox();
     this.tbSenderPlace = new System.Windows.Forms.TextBox();
     this.tbWeight = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.tbCardNo = new System.Windows.Forms.TextBox();
     this.tbCarNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.cbBF = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     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_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.ultraComboEditor1 = new System.Windows.Forms.ComboBox();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
     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, 26);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(992, 468);
     this.ultraPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
     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(992, 468);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "汽车衡一次计量表";
     this.ultraGrid3.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.Hidden = true;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "卸货";
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 18);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupKey = "卸货";
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupKey = "卸货";
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupKey = "卸货";
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupKey = "复磅";
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn25.RowLayoutColumnInfo.ParentGroupKey = "复磅";
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupKey = "复磅";
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn27.RowLayoutColumnInfo.ParentGroupKey = "复磅";
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.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});
     ultraGridGroup1.Key = "卸货";
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 26;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup2.Key = "复磅";
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 34;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2});
     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});
     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 = appearance1;
     summarySettings2.DisplayFormat = "重量{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance2;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 8;
     appearance14.FontData.BoldAsString = "True";
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance14;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance15.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance15;
     appearance16.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance16;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance17.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance17.TextHAlignAsString = "Center";
     appearance17.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance17;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid3.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid3.DisplayLayout.Override.MinRowHeight = 21;
     appearance18.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance18;
     appearance19.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance19;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance20.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance20.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance20.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance20;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid3.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(986, 447);
     this.ultraGrid3.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid3_DoubleClickRow);
     //
     // 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.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.dataColumn18,
     this.dataColumn17,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27});
     this.dataTable1.TableName = "汽车衡一次计量表";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "车证卡号";
     this.dataColumn2.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "车号";
     this.dataColumn3.ColumnName = "FS_CARNO";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "物料名称";
     this.dataColumn4.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "发货单位";
     this.dataColumn5.ColumnName = "FS_SUPPLIERNAME";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "收货单位";
     this.dataColumn6.ColumnName = "FS_RECEIVER";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "发货地点";
     this.dataColumn7.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "卸货地点";
     this.dataColumn8.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "承运单位";
     this.dataColumn9.ColumnName = "FS_TRANSNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "流向";
     this.dataColumn10.ColumnName = "FS_TYPENAME";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "计量点";
     this.dataColumn11.ColumnName = "FS_POINTNAME";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "重量";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量员";
     this.dataColumn13.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "计量时间";
     this.dataColumn14.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "标识";
     this.dataColumn15.ColumnName = "FS_MEMO";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "备注";
     this.dataColumn18.ColumnName = "FS_BZ";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "炉号";
     this.dataColumn17.ColumnName = "FS_STOVENO";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "支数";
     this.dataColumn19.ColumnName = "FN_COUNT";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "卸车员";
     this.dataColumn20.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "卸车时间";
     this.dataColumn21.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "卸车点";
     this.dataColumn22.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "卸货确认";
     this.dataColumn23.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "复磅确认";
     this.dataColumn24.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "复磅确认时间";
     this.dataColumn25.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "复磅确认地点";
     this.dataColumn26.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "复磅确认员";
     this.dataColumn27.ColumnName = "FS_REWEIGHTPERSON";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.button4);
     this.ultraGroupBox1.Controls.Add(this.button3);
     this.ultraGroupBox1.Controls.Add(this.button2);
     this.ultraGroupBox1.Controls.Add(this.button1);
     this.ultraGroupBox1.Controls.Add(this.label16);
     this.ultraGroupBox1.Controls.Add(this.label15);
     this.ultraGroupBox1.Controls.Add(this.tbBZ);
     this.ultraGroupBox1.Controls.Add(this.label14);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.label4);
     this.ultraGroupBox1.Controls.Add(this.label7);
     this.ultraGroupBox1.Controls.Add(this.label6);
     this.ultraGroupBox1.Controls.Add(this.cbSHDW);
     this.ultraGroupBox1.Controls.Add(this.label12);
     this.ultraGroupBox1.Controls.Add(this.cbFHDW);
     this.ultraGroupBox1.Controls.Add(this.label11);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.cbCYDW);
     this.ultraGroupBox1.Controls.Add(this.label10);
     this.ultraGroupBox1.Controls.Add(this.cbFlow);
     this.ultraGroupBox1.Controls.Add(this.label9);
     this.ultraGroupBox1.Controls.Add(this.cbWLMC);
     this.ultraGroupBox1.Controls.Add(this.label8);
     this.ultraGroupBox1.Controls.Add(this.tbReceiverPlace);
     this.ultraGroupBox1.Controls.Add(this.tbSenderPlace);
     this.ultraGroupBox1.Controls.Add(this.tbWeight);
     this.ultraGroupBox1.Controls.Add(this.dateTimePicker1);
     this.ultraGroupBox1.Controls.Add(this.tbCardNo);
     this.ultraGroupBox1.Controls.Add(this.tbCarNo);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.cbBF);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 172);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "数据修改";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button4, null);
     this.button4.Location = new System.Drawing.Point(476, 102);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(30, 21);
     this.button4.TabIndex = 757;
     this.button4.Tag = "Trans";
     this.button4.Text = "..";
     this.button4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button4, null);
     this.button4.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button3, null);
     this.button3.Location = new System.Drawing.Point(210, 101);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(30, 21);
     this.button3.TabIndex = 756;
     this.button3.Tag = "Receiver";
     this.button3.Text = "..";
     this.button3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button3, null);
     this.button3.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button2, null);
     this.button2.Location = new System.Drawing.Point(476, 65);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(30, 21);
     this.button2.TabIndex = 755;
     this.button2.Tag = "Sender";
     this.button2.Text = "..";
     this.button2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button2, null);
     this.button2.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button1, null);
     this.button1.Location = new System.Drawing.Point(210, 65);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(30, 21);
     this.button1.TabIndex = 753;
     this.button1.Tag = "Material";
     this.button1.Text = "..";
     this.button1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button1, null);
     this.button1.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // label16
     //
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label16.Location = new System.Drawing.Point(702, 102);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(19, 21);
     this.label16.TabIndex = 736;
     this.label16.Text = "T";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label16, null);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.Font = new System.Drawing.Font("宋体", 12F);
     this.label15.Location = new System.Drawing.Point(385, 132);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(0, 16);
     this.label15.TabIndex = 735;
     this.coreBind.SetVerification(this.label15, null);
     //
     // tbBZ
     //
     this.coreBind.SetDatabasecommand(this.tbBZ, null);
     this.tbBZ.Location = new System.Drawing.Point(832, 102);
     this.tbBZ.Name = "tbBZ";
     this.tbBZ.Size = new System.Drawing.Size(143, 21);
     this.tbBZ.TabIndex = 734;
     this.coreBind.SetVerification(this.tbBZ, null);
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location = new System.Drawing.Point(777, 102);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(29, 24);
     this.label14.TabIndex = 733;
     this.label14.Text = "备注";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Location = new System.Drawing.Point(532, 105);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(29, 12);
     this.label5.TabIndex = 730;
     this.label5.Text = "重量";
     this.coreBind.SetVerification(this.label5, null);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Enabled = false;
     this.label4.Location = new System.Drawing.Point(3, 134);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(53, 12);
     this.label4.TabIndex = 729;
     this.label4.Text = "计量时间";
     this.coreBind.SetVerification(this.label4, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(771, 41);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(53, 12);
     this.label7.TabIndex = 728;
     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.Location = new System.Drawing.Point(773, 73);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 12);
     this.label6.TabIndex = 727;
     this.label6.Text = "发货地点";
     this.coreBind.SetVerification(this.label6, null);
     //
     // cbSHDW
     //
     this.cbSHDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbSHDW, null);
     this.cbSHDW.FormattingEnabled = true;
     this.cbSHDW.Location = new System.Drawing.Point(70, 100);
     this.cbSHDW.Name = "cbSHDW";
     this.cbSHDW.Size = new System.Drawing.Size(134, 20);
     this.cbSHDW.TabIndex = 726;
     this.coreBind.SetVerification(this.cbSHDW, null);
     this.cbSHDW.Leave += new System.EventHandler(this.cbSHDW_Leave);
     this.cbSHDW.TextChanged += new System.EventHandler(this.cbSHDW_TextChanged);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.Location = new System.Drawing.Point(3, 105);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(53, 12);
     this.label12.TabIndex = 725;
     this.label12.Text = "收货单位";
     this.coreBind.SetVerification(this.label12, null);
     //
     // cbFHDW
     //
     this.cbFHDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbFHDW, null);
     this.cbFHDW.FormattingEnabled = true;
     this.cbFHDW.Location = new System.Drawing.Point(327, 65);
     this.cbFHDW.Name = "cbFHDW";
     this.cbFHDW.Size = new System.Drawing.Size(143, 20);
     this.cbFHDW.TabIndex = 724;
     this.coreBind.SetVerification(this.cbFHDW, null);
     this.cbFHDW.Leave += new System.EventHandler(this.cbFHDW_Leave);
     this.cbFHDW.TextChanged += new System.EventHandler(this.cbFHDW_TextChanged);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Location = new System.Drawing.Point(262, 70);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(53, 12);
     this.label11.TabIndex = 723;
     this.label11.Text = "发货单位";
     this.coreBind.SetVerification(this.label11, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(532, 36);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 722;
     this.label2.Text = "车号";
     this.coreBind.SetVerification(this.label2, null);
     //
     // cbCYDW
     //
     this.cbCYDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbCYDW, null);
     this.cbCYDW.FormattingEnabled = true;
     this.cbCYDW.Location = new System.Drawing.Point(327, 100);
     this.cbCYDW.Name = "cbCYDW";
     this.cbCYDW.Size = new System.Drawing.Size(143, 20);
     this.cbCYDW.TabIndex = 721;
     this.coreBind.SetVerification(this.cbCYDW, null);
     this.cbCYDW.Leave += new System.EventHandler(this.cbCYDW_Leave);
     this.cbCYDW.TextChanged += new System.EventHandler(this.cbCYDW_TextChanged);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Location = new System.Drawing.Point(260, 105);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(53, 12);
     this.label10.TabIndex = 720;
     this.label10.Text = "承运单位";
     this.coreBind.SetVerification(this.label10, null);
     //
     // cbFlow
     //
     this.cbFlow.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbFlow, null);
     this.cbFlow.FormattingEnabled = true;
     this.cbFlow.Location = new System.Drawing.Point(567, 65);
     this.cbFlow.Name = "cbFlow";
     this.cbFlow.Size = new System.Drawing.Size(143, 20);
     this.cbFlow.TabIndex = 719;
     this.coreBind.SetVerification(this.cbFlow, null);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Location = new System.Drawing.Point(532, 68);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(29, 12);
     this.label9.TabIndex = 718;
     this.label9.Text = "流向";
     this.coreBind.SetVerification(this.label9, null);
     //
     // cbWLMC
     //
     this.cbWLMC.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbWLMC, null);
     this.cbWLMC.FormattingEnabled = true;
     this.cbWLMC.Location = new System.Drawing.Point(70, 65);
     this.cbWLMC.Name = "cbWLMC";
     this.cbWLMC.Size = new System.Drawing.Size(134, 20);
     this.cbWLMC.TabIndex = 717;
     this.coreBind.SetVerification(this.cbWLMC, null);
     this.cbWLMC.Leave += new System.EventHandler(this.cbWLMC_Leave);
     this.cbWLMC.TextChanged += new System.EventHandler(this.cbWLMC_TextChanged);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Location = new System.Drawing.Point(3, 70);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(53, 12);
     this.label8.TabIndex = 716;
     this.label8.Text = "物料名称";
     this.coreBind.SetVerification(this.label8, null);
     //
     // tbReceiverPlace
     //
     this.coreBind.SetDatabasecommand(this.tbReceiverPlace, null);
     this.tbReceiverPlace.Location = new System.Drawing.Point(832, 38);
     this.tbReceiverPlace.Name = "tbReceiverPlace";
     this.tbReceiverPlace.Size = new System.Drawing.Size(143, 21);
     this.tbReceiverPlace.TabIndex = 715;
     this.coreBind.SetVerification(this.tbReceiverPlace, null);
     //
     // tbSenderPlace
     //
     this.coreBind.SetDatabasecommand(this.tbSenderPlace, null);
     this.tbSenderPlace.Location = new System.Drawing.Point(832, 68);
     this.tbSenderPlace.Name = "tbSenderPlace";
     this.tbSenderPlace.Size = new System.Drawing.Size(143, 21);
     this.tbSenderPlace.TabIndex = 713;
     this.coreBind.SetVerification(this.tbSenderPlace, null);
     //
     // tbWeight
     //
     this.coreBind.SetDatabasecommand(this.tbWeight, null);
     this.tbWeight.Location = new System.Drawing.Point(567, 102);
     this.tbWeight.Name = "tbWeight";
     this.tbWeight.ReadOnly = true;
     this.tbWeight.Size = new System.Drawing.Size(134, 21);
     this.tbWeight.TabIndex = 711;
     this.coreBind.SetVerification(this.tbWeight, null);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Enabled = false;
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(70, 130);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(134, 21);
     this.dateTimePicker1.TabIndex = 709;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // tbCardNo
     //
     this.coreBind.SetDatabasecommand(this.tbCardNo, null);
     this.tbCardNo.Location = new System.Drawing.Point(327, 33);
     this.tbCardNo.Name = "tbCardNo";
     this.tbCardNo.Size = new System.Drawing.Size(143, 21);
     this.tbCardNo.TabIndex = 706;
     this.coreBind.SetVerification(this.tbCardNo, null);
     //
     // tbCarNo
     //
     this.coreBind.SetDatabasecommand(this.tbCarNo, null);
     this.tbCarNo.Location = new System.Drawing.Point(567, 31);
     this.tbCarNo.Name = "tbCarNo";
     this.tbCarNo.Size = new System.Drawing.Size(143, 21);
     this.tbCarNo.TabIndex = 705;
     this.coreBind.SetVerification(this.tbCarNo, null);
     //
     // label1
     //
     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(3, 32);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 24);
     this.label1.TabIndex = 704;
     this.label1.Text = "计量磅房";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     //
     // cbBF
     //
     this.cbBF.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cbBF.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.cbBF, null);
     this.cbBF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBF.Enabled = false;
     this.cbBF.FormattingEnabled = true;
     this.cbBF.Location = new System.Drawing.Point(70, 33);
     this.cbBF.Name = "cbBF";
     this.cbBF.Size = new System.Drawing.Size(134, 20);
     this.cbBF.TabIndex = 703;
     this.coreBind.SetVerification(this.cbBF, null);
     this.cbBF.SelectedIndexChanged += new System.EventHandler(this.cbBF_SelectedIndexChanged);
     //
     // label3
     //
     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(254, 32);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(58, 24);
     this.label3.TabIndex = 696;
     this.label3.Text = "卡号";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     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.Bottom;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 494);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 172);
     this.ultraPanel2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // EndTime
     //
     this.EndTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndTime.Location = new System.Drawing.Point(262, 2);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(143, 21);
     this.EndTime.TabIndex = 717;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.BeginTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.BeginTime.Location = new System.Drawing.Point(97, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(143, 21);
     this.BeginTime.TabIndex = 716;
     this.coreBind.SetVerification(this.BeginTime, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.ultraPanel1.ClientArea;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool3.ControlName = "BeginTime";
     controlContainerTool5.ControlName = "EndTime";
     controlContainerTool2.ControlName = "txtCarNo";
     controlContainerTool2.InstanceProps.IsFirstInGroup = true;
     buttonTool14.InstanceProps.IsFirstInGroup = true;
     buttonTool15.InstanceProps.IsFirstInGroup = true;
     buttonTool16.InstanceProps.IsFirstInGroup = true;
     controlContainerTool8.ControlName = "ultraComboEditor1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool3,
     controlContainerTool5,
     controlContainerTool2,
     buttonTool13,
     buttonTool14,
     buttonTool15,
     buttonTool16,
     controlContainerTool8,
     buttonTool1});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool1.ControlName = "BeginTime";
     controlContainerTool1.SharedPropsInternal.Caption = "查询时间  开始";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.ControlName = "EndTime";
     controlContainerTool6.SharedPropsInternal.Caption = "至";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool7.ControlName = "cbDateField";
     controlContainerTool7.SharedPropsInternal.Caption = "查询时间";
     controlContainerTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool9.SharedPropsInternal.Caption = "查询";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Caption = "增加";
     buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Visible = false;
     buttonTool11.SharedPropsInternal.Caption = "修改";
     buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Caption = "删除";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Visible = false;
     controlContainerTool4.ControlName = "txtCarNo";
     controlContainerTool4.SharedPropsInternal.Caption = "车号";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool9.ControlName = "ultraComboEditor1";
     controlContainerTool9.SharedPropsInternal.Caption = "计量点";
     controlContainerTool9.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[] {
     controlContainerTool1,
     controlContainerTool6,
     controlContainerTool7,
     buttonTool9,
     buttonTool10,
     buttonTool11,
     buttonTool12,
     controlContainerTool4,
     controlContainerTool9,
     buttonTool2});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 0);
     this._ClientArea_Toolbars_Dock_Area_Top.Name = "_ClientArea_Toolbars_Dock_Area_Top";
     this._ClientArea_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._ClientArea_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 666);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_Bottom";
     this._ClientArea_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._ClientArea_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Bottom, 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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 26);
     this._ClientArea_Toolbars_Dock_Area_Left.Name = "_ClientArea_Toolbars_Dock_Area_Left";
     this._ClientArea_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 640);
     this._ClientArea_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Left, null);
     //
     // _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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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(992, 26);
     this._ClientArea_Toolbars_Dock_Area_Right.Name = "_ClientArea_Toolbars_Dock_Area_Right";
     this._ClientArea_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 640);
     this._ClientArea_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Right, null);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(446, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarNo.TabIndex = 736;
     this.coreBind.SetVerification(this.txtCarNo, 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(706, 3);
     this.ultraComboEditor1.Name = "ultraComboEditor1";
     this.ultraComboEditor1.Size = new System.Drawing.Size(100, 20);
     this.ultraComboEditor1.TabIndex = 704;
     this.coreBind.SetVerification(this.ultraComboEditor1, null);
     //
     // UpdateFirstWeight
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 666);
     this.Controls.Add(this.ultraComboEditor1);
     this.Controls.Add(this.ultraPanel1);
     this.Controls.Add(this.txtCarNo);
     this.Controls.Add(this.EndTime);
     this.Controls.Add(this.ultraPanel2);
     this.Controls.Add(this.BeginTime);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Left);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Right);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Top);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "UpdateFirstWeight";
     this.Tag = "UpdateFirstWeight";
     this.Text = "一次计量数据修改";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.UpdateFirstWeight_Load);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 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();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量时间 从");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RePrint");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量时间 从");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("计量点");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = 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_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTITEM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LX");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FHDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CYDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERFACTORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUNDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUND");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TERM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YCSFYC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFSAMPLING");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFACCEPT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERIDCARD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DFJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BILLNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATASTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADINSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_LOADINSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADOUTSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_LOADOUTSTORETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LOADSTOREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FIRSTLABELID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADSTOREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 1776399);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 1776400);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 1776401);
     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_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PLANCODE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTITEM", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIAL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -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, "FS_LX", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_FHDW", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHDW", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CYDW", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERFACTORY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUNDTYPE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUND", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_WEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_WEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHIFT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TERM", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YCSFYC", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_COUNT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_SAMPLETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_CHECKTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFSAMPLING", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFACCEPT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERNAME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERIDCARD", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DFJZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BILLNUMBER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DATASTATE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKBL", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADINSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_LOADINSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADOUTSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_LOADOUTSTORETIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo65 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LOADSTOREPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo66 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_FIRSTLABELID", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo67 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo68 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADSTOREPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo69 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup0", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo70 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup1", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo71 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup2", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance29 = 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.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 appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = 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.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ultraComboEditor1 = new System.Windows.Forms.ComboBox();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     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.dataSet1 = new System.Data.DataSet();
     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.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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn71 = 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.dataColumn102 = new System.Data.DataColumn();
     this.dataColumn101 = 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.dataColumn113 = new System.Data.DataColumn();
     this.dataColumn114 = new System.Data.DataColumn();
     this.dataColumn115 = new System.Data.DataColumn();
     this.dataColumn176 = new System.Data.DataColumn();
     this.dataColumn177 = new System.Data.DataColumn();
     this.dataColumn178 = new System.Data.DataColumn();
     this.dataColumn179 = new System.Data.DataColumn();
     this.dataColumn180 = new System.Data.DataColumn();
     this.dataColumn181 = new System.Data.DataColumn();
     this.dataColumn182 = new System.Data.DataColumn();
     this.dataColumn183 = new System.Data.DataColumn();
     this.dataColumn184 = new System.Data.DataColumn();
     this.dataColumn185 = new System.Data.DataColumn();
     this.dataColumn186 = new System.Data.DataColumn();
     this.dataColumn187 = new System.Data.DataColumn();
     this.dataColumn188 = new System.Data.DataColumn();
     this.dataColumn189 = new System.Data.DataColumn();
     this.dataColumn204 = new System.Data.DataColumn();
     this.dataColumn205 = new System.Data.DataColumn();
     this.dataColumn206 = new System.Data.DataColumn();
     this.dataColumn207 = new System.Data.DataColumn();
     this.dataColumn208 = new System.Data.DataColumn();
     this.dataTable11 = new System.Data.DataTable();
     this.dataColumn129 = new System.Data.DataColumn();
     this.dataColumn130 = new System.Data.DataColumn();
     this.dataColumn131 = new System.Data.DataColumn();
     this.dataColumn132 = new System.Data.DataColumn();
     this.dataColumn133 = new System.Data.DataColumn();
     this.dataColumn134 = new System.Data.DataColumn();
     this.dataColumn135 = new System.Data.DataColumn();
     this.dataColumn136 = new System.Data.DataColumn();
     this.dataColumn137 = new System.Data.DataColumn();
     this.dataColumn138 = new System.Data.DataColumn();
     this.dataColumn139 = new System.Data.DataColumn();
     this.dataColumn140 = new System.Data.DataColumn();
     this.dataColumn141 = new System.Data.DataColumn();
     this.dataColumn142 = new System.Data.DataColumn();
     this.dataColumn143 = new System.Data.DataColumn();
     this.dataColumn144 = new System.Data.DataColumn();
     this.dataColumn145 = new System.Data.DataColumn();
     this.dataColumn146 = new System.Data.DataColumn();
     this.dataColumn147 = new System.Data.DataColumn();
     this.dataColumn148 = new System.Data.DataColumn();
     this.dataColumn149 = new System.Data.DataColumn();
     this.dataColumn150 = new System.Data.DataColumn();
     this.dataColumn151 = new System.Data.DataColumn();
     this.dataColumn152 = new System.Data.DataColumn();
     this.dataColumn153 = new System.Data.DataColumn();
     this.dataColumn154 = new System.Data.DataColumn();
     this.dataColumn155 = new System.Data.DataColumn();
     this.dataColumn156 = new System.Data.DataColumn();
     this.dataColumn159 = new System.Data.DataColumn();
     this.dataColumn161 = new System.Data.DataColumn();
     this.dataColumn163 = new System.Data.DataColumn();
     this.dataColumn167 = new System.Data.DataColumn();
     this.dataColumn168 = new System.Data.DataColumn();
     this.dataColumn169 = new System.Data.DataColumn();
     this.dataColumn170 = new System.Data.DataColumn();
     this.dataColumn190 = new System.Data.DataColumn();
     this.dataColumn191 = new System.Data.DataColumn();
     this.dataColumn192 = new System.Data.DataColumn();
     this.dataColumn195 = new System.Data.DataColumn();
     this.dataColumn196 = new System.Data.DataColumn();
     this.dataColumn197 = new System.Data.DataColumn();
     this.dataColumn198 = new System.Data.DataColumn();
     this.dataColumn199 = new System.Data.DataColumn();
     this.dataColumn200 = new System.Data.DataColumn();
     this.dataColumn201 = new System.Data.DataColumn();
     this.dataColumn202 = new System.Data.DataColumn();
     this.dataColumn203 = new System.Data.DataColumn();
     this.dataColumn209 = new System.Data.DataColumn();
     this.dataColumn210 = new System.Data.DataColumn();
     this.dataColumn211 = new System.Data.DataColumn();
     this.dataColumn212 = new System.Data.DataColumn();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataTable1 = new System.Data.DataTable();
     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.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     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.ultraTile9 = 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.ultraTile6 = new Infragistics.Win.Misc.UltraTile();
     this.ulpic6 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).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.ultraTile9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).BeginInit();
     this.ultraTile7.SuspendLayout();
     this.ultraTile8.SuspendLayout();
     this.ultraTile6.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ultraComboEditor1);
     this.panel1.Controls.Add(this.txtCarNo);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.EndTime);
     this.panel1.Controls.Add(this.BeginTime);
     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);
     //
     // 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(608, 4);
     this.ultraComboEditor1.Name = "ultraComboEditor1";
     this.ultraComboEditor1.Size = new System.Drawing.Size(91, 20);
     this.ultraComboEditor1.TabIndex = 704;
     this.coreBind.SetVerification(this.ultraComboEditor1, null);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(403, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarNo.TabIndex = 11;
     this.coreBind.SetVerification(this.txtCarNo, 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, 28);
     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);
     //
     // EndTime
     //
     this.EndTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndTime.Location = new System.Drawing.Point(235, 2);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(128, 21);
     this.EndTime.TabIndex = 15;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.BeginTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.BeginTime.Location = new System.Drawing.Point(79, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(136, 21);
     this.BeginTime.TabIndex = 14;
     this.coreBind.SetVerification(this.BeginTime, 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, 28);
     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.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool3.ControlName = "BeginTime";
     controlContainerTool3.InstanceProps.Width = 211;
     controlContainerTool4.ControlName = "EndTime";
     controlContainerTool4.InstanceProps.Width = 150;
     controlContainerTool5.ControlName = "txtCarNo";
     controlContainerTool5.InstanceProps.IsFirstInGroup = true;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool7.ControlName = "ultraComboEditor1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool3,
     controlContainerTool4,
     controlContainerTool5,
     buttonTool2,
     buttonTool4,
     controlContainerTool7,
     buttonTool5});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool1.ControlName = "BeginTime";
     controlContainerTool1.SharedPropsInternal.Caption = "计量时间 从";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 211;
     controlContainerTool2.ControlName = "EndTime";
     controlContainerTool2.SharedPropsInternal.Caption = "至";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Width = 150;
     buttonTool1.SharedPropsInternal.Caption = "查询";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool3.SharedPropsInternal.Caption = "修改";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool3.SharedPropsInternal.Visible = false;
     controlContainerTool6.ControlName = "txtCarNo";
     controlContainerTool6.SharedPropsInternal.Caption = "车号";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool8.ControlName = "ultraComboEditor1";
     controlContainerTool8.SharedPropsInternal.Caption = "计量点";
     controlContainerTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool6.SharedPropsInternal.Caption = "票据补打";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool2,
     buttonTool1,
     buttonTool3,
     controlContainerTool6,
     controlContainerTool8,
     buttonTool6});
     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)(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, 28);
     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)(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, 28);
     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)(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.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable2,
     this.dataTable11,
     this.dataTable1});
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     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.dataColumn19,
     this.dataColumn20,
     this.dataColumn51,
     this.dataColumn71,
     this.dataColumn94,
     this.dataColumn95,
     this.dataColumn96,
     this.dataColumn97,
     this.dataColumn98,
     this.dataColumn99,
     this.dataColumn100,
     this.dataColumn102,
     this.dataColumn101,
     this.dataColumn103,
     this.dataColumn104,
     this.dataColumn105,
     this.dataColumn106,
     this.dataColumn107,
     this.dataColumn108,
     this.dataColumn109,
     this.dataColumn110,
     this.dataColumn111,
     this.dataColumn112,
     this.dataColumn113,
     this.dataColumn114,
     this.dataColumn115,
     this.dataColumn176,
     this.dataColumn177,
     this.dataColumn178,
     this.dataColumn179,
     this.dataColumn180,
     this.dataColumn181,
     this.dataColumn182,
     this.dataColumn183,
     this.dataColumn184,
     this.dataColumn185,
     this.dataColumn186,
     this.dataColumn187,
     this.dataColumn188,
     this.dataColumn189,
     this.dataColumn204,
     this.dataColumn205,
     this.dataColumn206,
     this.dataColumn207,
     this.dataColumn208});
     this.dataTable2.TableName = "一次计量表";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "作业编号";
     this.dataColumn4.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "预报号";
     this.dataColumn5.ColumnName = "FS_PLANCODE";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "合同号";
     this.dataColumn6.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "合同项目编号";
     this.dataColumn7.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "炉号";
     this.dataColumn8.ColumnName = "FS_STOVENO";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "支数";
     this.dataColumn9.ColumnName = "FN_COUNT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "卡号";
     this.dataColumn10.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "车号";
     this.dataColumn11.ColumnName = "FS_CARNO";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "重量";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量点";
     this.dataColumn13.ColumnName = "FS_POUND";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "计量员";
     this.dataColumn14.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "计量时间";
     this.dataColumn15.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "班次";
     this.dataColumn16.ColumnName = "FS_SHIFT";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "流向";
     this.dataColumn17.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "发货单位";
     this.dataColumn18.ColumnName = "FS_SENDER";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "收货单位";
     this.dataColumn19.ColumnName = "FS_RECEIVER";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "承运单位";
     this.dataColumn20.ColumnName = "FS_TRANSNO";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "物料名称";
     this.dataColumn51.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "是否异常";
     this.dataColumn71.ColumnName = "FS_YCSFYC";
     //
     // dataColumn94
     //
     this.dataColumn94.Caption = "发货库存点代码";
     this.dataColumn94.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn95
     //
     this.dataColumn95.Caption = "收货库存点代码";
     this.dataColumn95.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn96
     //
     this.dataColumn96.Caption = "磅房编号";
     this.dataColumn96.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn97
     //
     this.dataColumn97.Caption = "预报总重";
     this.dataColumn97.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn98
     //
     this.dataColumn98.Caption = "预报皮重";
     this.dataColumn98.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn99
     //
     this.dataColumn99.Caption = "预报净量";
     this.dataColumn99.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn100
     //
     this.dataColumn100.Caption = "班别";
     this.dataColumn100.ColumnName = "FS_TERM";
     //
     // dataColumn102
     //
     this.dataColumn102.Caption = "发货单位";
     this.dataColumn102.ColumnName = "FS_FHDW";
     //
     // dataColumn101
     //
     this.dataColumn101.Caption = "收货单位";
     this.dataColumn101.ColumnName = "FS_SHDW";
     //
     // dataColumn103
     //
     this.dataColumn103.Caption = "承运单位";
     this.dataColumn103.ColumnName = "FS_CYDW";
     //
     // dataColumn104
     //
     this.dataColumn104.Caption = "流向";
     this.dataColumn104.ColumnName = "FS_LX";
     //
     // dataColumn105
     //
     this.dataColumn105.Caption = "装车入库时间";
     this.dataColumn105.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn106
     //
     this.dataColumn106.Caption = "装车出库时间";
     this.dataColumn106.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn107
     //
     this.dataColumn107.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn108
     //
     this.dataColumn108.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataColumn109
     //
     this.dataColumn109.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn110
     //
     this.dataColumn110.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn111
     //
     this.dataColumn111.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn112
     //
     this.dataColumn112.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn113
     //
     this.dataColumn113.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn114
     //
     this.dataColumn114.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn115
     //
     this.dataColumn115.ColumnName = "FS_MATERIAL";
     //
     // dataColumn176
     //
     this.dataColumn176.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn177
     //
     this.dataColumn177.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn178
     //
     this.dataColumn178.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn179
     //
     this.dataColumn179.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn180
     //
     this.dataColumn180.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn181
     //
     this.dataColumn181.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn182
     //
     this.dataColumn182.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn183
     //
     this.dataColumn183.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn184
     //
     this.dataColumn184.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn185
     //
     this.dataColumn185.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn186
     //
     this.dataColumn186.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn187
     //
     this.dataColumn187.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn188
     //
     this.dataColumn188.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn189
     //
     this.dataColumn189.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn204
     //
     this.dataColumn204.Caption = "应扣量";
     this.dataColumn204.ColumnName = "FS_YKL";
     //
     // dataColumn205
     //
     this.dataColumn205.Caption = "复磅标志";
     this.dataColumn205.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn206
     //
     this.dataColumn206.Caption = "复磅确认时间";
     this.dataColumn206.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn207
     //
     this.dataColumn207.Caption = "复磅确认地点";
     this.dataColumn207.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn208
     //
     this.dataColumn208.Caption = "复磅确认员";
     this.dataColumn208.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataTable11
     //
     this.dataTable11.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn129,
     this.dataColumn130,
     this.dataColumn131,
     this.dataColumn132,
     this.dataColumn133,
     this.dataColumn134,
     this.dataColumn135,
     this.dataColumn136,
     this.dataColumn137,
     this.dataColumn138,
     this.dataColumn139,
     this.dataColumn140,
     this.dataColumn141,
     this.dataColumn142,
     this.dataColumn143,
     this.dataColumn144,
     this.dataColumn145,
     this.dataColumn146,
     this.dataColumn147,
     this.dataColumn148,
     this.dataColumn149,
     this.dataColumn150,
     this.dataColumn151,
     this.dataColumn152,
     this.dataColumn153,
     this.dataColumn154,
     this.dataColumn155,
     this.dataColumn156,
     this.dataColumn159,
     this.dataColumn161,
     this.dataColumn163,
     this.dataColumn167,
     this.dataColumn168,
     this.dataColumn169,
     this.dataColumn170,
     this.dataColumn190,
     this.dataColumn191,
     this.dataColumn192,
     this.dataColumn195,
     this.dataColumn196,
     this.dataColumn197,
     this.dataColumn198,
     this.dataColumn199,
     this.dataColumn200,
     this.dataColumn201,
     this.dataColumn202,
     this.dataColumn203,
     this.dataColumn209,
     this.dataColumn210,
     this.dataColumn211,
     this.dataColumn212,
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43});
     this.dataTable11.TableName = "绑定一次计量表";
     //
     // dataColumn129
     //
     this.dataColumn129.Caption = "作业编号";
     this.dataColumn129.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn130
     //
     this.dataColumn130.Caption = "预报号";
     this.dataColumn130.ColumnName = "FS_PLANCODE";
     //
     // dataColumn131
     //
     this.dataColumn131.Caption = "车证卡号";
     this.dataColumn131.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn132
     //
     this.dataColumn132.Caption = "车号";
     this.dataColumn132.ColumnName = "FS_CARNO";
     //
     // dataColumn133
     //
     this.dataColumn133.Caption = "合同号";
     this.dataColumn133.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn134
     //
     this.dataColumn134.Caption = "合同项目编号";
     this.dataColumn134.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn135
     //
     this.dataColumn135.Caption = "物资代码";
     this.dataColumn135.ColumnName = "FS_MATERIAL";
     //
     // dataColumn136
     //
     this.dataColumn136.Caption = "物料名称";
     this.dataColumn136.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn137
     //
     this.dataColumn137.Caption = "流向代码";
     this.dataColumn137.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn138
     //
     this.dataColumn138.Caption = "流向";
     this.dataColumn138.ColumnName = "FS_LX";
     //
     // dataColumn139
     //
     this.dataColumn139.Caption = "发货单位代码";
     this.dataColumn139.ColumnName = "FS_SENDER";
     //
     // dataColumn140
     //
     this.dataColumn140.Caption = "发货单位";
     this.dataColumn140.ColumnName = "FS_FHDW";
     //
     // dataColumn141
     //
     this.dataColumn141.Caption = "发货地点";
     this.dataColumn141.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn142
     //
     this.dataColumn142.Caption = "收货工厂代码";
     this.dataColumn142.ColumnName = "FS_RECEIVER";
     //
     // dataColumn143
     //
     this.dataColumn143.Caption = "收货单位";
     this.dataColumn143.ColumnName = "FS_SHDW";
     //
     // dataColumn144
     //
     this.dataColumn144.Caption = "承运方代码";
     this.dataColumn144.ColumnName = "FS_TRANSNO";
     //
     // dataColumn145
     //
     this.dataColumn145.Caption = "承运单位";
     this.dataColumn145.ColumnName = "FS_CYDW";
     //
     // dataColumn146
     //
     this.dataColumn146.Caption = "卸货地点";
     this.dataColumn146.ColumnName = "FS_RECEIVERFACTORY";
     //
     // dataColumn147
     //
     this.dataColumn147.Caption = "磅房编号";
     this.dataColumn147.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn148
     //
     this.dataColumn148.Caption = "计量点";
     this.dataColumn148.ColumnName = "FS_POUND";
     //
     // dataColumn149
     //
     this.dataColumn149.Caption = "预报总重";
     this.dataColumn149.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn150
     //
     this.dataColumn150.Caption = "预报皮重";
     this.dataColumn150.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn151
     //
     this.dataColumn151.Caption = "预报净量";
     this.dataColumn151.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn152
     //
     this.dataColumn152.Caption = "重量";
     this.dataColumn152.ColumnName = "FN_WEIGHT";
     //
     // dataColumn153
     //
     this.dataColumn153.Caption = "计量员";
     this.dataColumn153.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn154
     //
     this.dataColumn154.Caption = "计量时间";
     this.dataColumn154.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn155
     //
     this.dataColumn155.Caption = "班次";
     this.dataColumn155.ColumnName = "FS_SHIFT";
     //
     // dataColumn156
     //
     this.dataColumn156.Caption = "班别";
     this.dataColumn156.ColumnName = "FS_TERM";
     //
     // dataColumn159
     //
     this.dataColumn159.Caption = "卸货确认";
     this.dataColumn159.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn161
     //
     this.dataColumn161.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn163
     //
     this.dataColumn163.Caption = "取样员";
     this.dataColumn163.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn167
     //
     this.dataColumn167.Caption = "是否异常";
     this.dataColumn167.ColumnName = "FS_YCSFYC";
     //
     // dataColumn168
     //
     this.dataColumn168.Caption = "应扣量";
     this.dataColumn168.ColumnName = "FS_YKL";
     //
     // dataColumn169
     //
     this.dataColumn169.Caption = "炉号";
     this.dataColumn169.ColumnName = "FS_STOVENO";
     //
     // dataColumn170
     //
     this.dataColumn170.Caption = "支数";
     this.dataColumn170.ColumnName = "FN_COUNT";
     //
     // dataColumn190
     //
     this.dataColumn190.Caption = "取样时间";
     this.dataColumn190.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn191
     //
     this.dataColumn191.Caption = "取样点";
     this.dataColumn191.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn192
     //
     this.dataColumn192.Caption = "取样确认";
     this.dataColumn192.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn195
     //
     this.dataColumn195.Caption = "卸车点";
     this.dataColumn195.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn196
     //
     this.dataColumn196.Caption = "验收员";
     this.dataColumn196.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn197
     //
     this.dataColumn197.Caption = "验收时间";
     this.dataColumn197.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn198
     //
     this.dataColumn198.Caption = "验收点";
     this.dataColumn198.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn199
     //
     this.dataColumn199.Caption = "验收确认";
     this.dataColumn199.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn200
     //
     this.dataColumn200.Caption = "是否取样需要";
     this.dataColumn200.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn201
     //
     this.dataColumn201.Caption = "是否需要验收 ";
     this.dataColumn201.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn202
     //
     this.dataColumn202.Caption = "驾驶员姓名";
     this.dataColumn202.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn203
     //
     this.dataColumn203.Caption = "驾驶员身份证";
     this.dataColumn203.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn209
     //
     this.dataColumn209.Caption = "复磅确认";
     this.dataColumn209.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn210
     //
     this.dataColumn210.Caption = "复磅确认时间";
     this.dataColumn210.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn211
     //
     this.dataColumn211.Caption = "复磅确认地点";
     this.dataColumn211.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn212
     //
     this.dataColumn212.Caption = "复磅确认员";
     this.dataColumn212.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "对方净重";
     this.dataColumn1.ColumnName = "FS_DFJZ";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "单据编号";
     this.dataColumn2.ColumnName = "FS_BILLNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "磅房启用状态";
     this.dataColumn3.ColumnName = "FS_DATASTATE";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "录入状态";
     this.dataColumn33.ColumnName = "FS_MEMO";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "收货备注";
     this.dataColumn34.ColumnName = "FS_BZ";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "应扣比例";
     this.dataColumn35.ColumnName = "FS_YKBL";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "供应单位代码";
     this.dataColumn36.ColumnName = "FS_PROVIDER";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "卸车入库时间";
     this.dataColumn30.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "卸货员";
     this.dataColumn31.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "收货地点";
     this.dataColumn32.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "装车入库时间";
     this.dataColumn37.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "卸车出库时间";
     this.dataColumn38.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "装车出库时间";
     this.dataColumn39.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "装车库管员";
     this.dataColumn40.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "一次磅单条码";
     this.dataColumn41.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "卸车时间";
     this.dataColumn42.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn26});
     this.dataTable1.TableName = "计量图片";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "FB_IMAGE1";
     this.dataColumn21.DataType = typeof(byte[]);
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FB_IMAGE2";
     this.dataColumn22.DataType = typeof(byte[]);
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FB_IMAGE3";
     this.dataColumn23.DataType = typeof(byte[]);
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FB_IMAGE4";
     this.dataColumn24.DataType = typeof(byte[]);
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FB_IMAGE5";
     this.dataColumn25.DataType = typeof(byte[]);
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FB_IMAGE7";
     this.dataColumn27.DataType = typeof(byte[]);
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FB_IMAGE8";
     this.dataColumn28.DataType = typeof(byte[]);
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FB_IMAGE6";
     this.dataColumn29.DataType = typeof(byte[]);
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_CURVEIMAGEONE";
     //
     // splitContainer1
     //
     this.coreBind.SetDatabasecommand(this.splitContainer1, null);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 26);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
     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(992, 640);
     this.splitContainer1.SplitterDistance = 330;
     this.splitContainer1.TabIndex = 1;
     this.coreBind.SetVerification(this.splitContainer1, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 330);
     this.ultraGroupBox1.TabIndex = 1;
     this.ultraGroupBox1.Text = "数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "绑定一次计量表";
     this.ultraGrid3.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.Hidden = true;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.Hidden = true;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.Hidden = true;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.Hidden = true;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 48;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 50;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 56;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 52;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 54;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 56;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 68;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.Hidden = true;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.Hidden = true;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 82;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 84;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 86;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 43;
     ultraGridColumn44.Hidden = true;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 88;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.Header.VisiblePosition = 44;
     ultraGridColumn45.Hidden = true;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 90;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.Header.VisiblePosition = 45;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 60;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn47.Header.VisiblePosition = 46;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 62;
     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 = 0;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn48.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn49.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn49.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn50.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn50.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn51.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn52.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 64;
     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.RowLayoutColumnInfo.OriginX = 66;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 68;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn58.Header.VisiblePosition = 57;
     ultraGridColumn58.Hidden = true;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 116;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn59.Header.VisiblePosition = 58;
     ultraGridColumn59.Hidden = true;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.Header.VisiblePosition = 59;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn60.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.Header.VisiblePosition = 60;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn62.Header.VisiblePosition = 61;
     ultraGridColumn62.Hidden = true;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn63.Header.VisiblePosition = 62;
     ultraGridColumn63.Hidden = true;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn64.Header.VisiblePosition = 63;
     ultraGridColumn64.Hidden = true;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 78;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn65.Header.VisiblePosition = 64;
     ultraGridColumn65.Hidden = true;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 80;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn66.Header.VisiblePosition = 65;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 76;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn67.Header.VisiblePosition = 66;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn67.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn68.Header.VisiblePosition = 67;
     ultraGridColumn68.Hidden = true;
     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});
     ultraGridGroup1.Header.Caption = "重量";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 14;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 10;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup2.Header.Caption = "卸货";
     ultraGridGroup2.Key = "NewGroup1";
     ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 24;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup3.Header.Caption = "复磅";
     ultraGridGroup3.Key = "NewGroup2";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 32;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2,
     ultraGridGroup3});
     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});
     rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
     rowLayout1});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.GroupByBox.Prompt = "请拖动列到此,按该列进行分组";
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 8;
     appearance1.FontData.BoldAsString = "True";
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance1;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance2;
     appearance3.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance3;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance4.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance4.TextHAlignAsString = "Center";
     appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance4;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid3.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid3.DisplayLayout.Override.MinRowHeight = 21;
     appearance5.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance5;
     appearance6.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance6;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance29.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance29.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance29;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid3.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(986, 309);
     this.ultraGrid3.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid3_DoubleClick);
     //
     // 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(992, 306);
     this.ultraGroupBox3.TabIndex = 3;
     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(3, 3);
     this.ultTPPic.Size = new System.Drawing.Size(986, 285);
     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.ultraTile9);
     this.ultTPPic.Tiles.Add(this.ultraTile7);
     this.ultTPPic.Tiles.Add(this.ultraTile8);
     this.ultTPPic.Tiles.Add(this.ultraTile6);
     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(309, 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);
     appearance17.BackColor = System.Drawing.Color.White;
     appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile2.Settings.Appearance = appearance17;
     appearance18.BackColor = System.Drawing.Color.White;
     appearance18.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile2.Settings.HeaderAppearance = appearance18;
     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(309, 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);
     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.ultraTile3.Settings.Appearance = appearance19;
     appearance20.BackColor = System.Drawing.Color.White;
     appearance20.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance20.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile3.Settings.HeaderAppearance = appearance20;
     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(309, 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(0, 1);
     appearance21.BackColor = System.Drawing.Color.White;
     appearance21.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile4.Settings.Appearance = appearance21;
     appearance22.BackColor = System.Drawing.Color.White;
     appearance22.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance22.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile4.Settings.HeaderAppearance = appearance22;
     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(309, 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(1, 1);
     appearance23.BackColor = System.Drawing.Color.White;
     appearance23.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile5.Settings.Appearance = appearance23;
     appearance24.BackColor = System.Drawing.Color.White;
     appearance24.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile5.Settings.HeaderAppearance = appearance24;
     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(309, 82);
     this.ulpic5.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic5, null);
     //
     // ultraTile9
     //
     this.ultraTile9.Caption = "一次计量动态曲线图数据";
     this.ultraTile9.Control = this.ultraChart11;
     this.ultraTile9.Controls.Add(this.ultraChart11);
     this.coreBind.SetDatabasecommand(this.ultraTile9, null);
     this.ultraTile9.Name = "ultraTile9";
     this.ultraTile9.PositionInNormalMode = new System.Drawing.Point(2, 2);
     appearance11.BackColor = System.Drawing.Color.White;
     appearance11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile9.Settings.Appearance = appearance11;
     appearance14.BackColor = System.Drawing.Color.White;
     appearance14.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile9.Settings.HeaderAppearance = appearance14;
     this.ultraTile9.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraTile9, 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(309, 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(0, 2);
     appearance25.BackColor = System.Drawing.Color.White;
     appearance25.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile7.Settings.Appearance = appearance25;
     appearance26.BackColor = System.Drawing.Color.White;
     appearance26.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile7.Settings.HeaderAppearance = appearance26;
     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(309, 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(1, 2);
     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.ultraTile8.Settings.Appearance = appearance27;
     appearance28.BackColor = System.Drawing.Color.White;
     appearance28.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile8.Settings.HeaderAppearance = appearance28;
     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(309, 82);
     this.ulpic8.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic8, null);
     //
     // ultraTile6
     //
     this.ultraTile6.Caption = "图像6";
     this.ultraTile6.Control = this.ulpic6;
     this.ultraTile6.Controls.Add(this.ulpic6);
     this.coreBind.SetDatabasecommand(this.ultraTile6, null);
     this.ultraTile6.Name = "ultraTile6";
     this.ultraTile6.PositionInNormalMode = new System.Drawing.Point(2, 1);
     appearance15.BackColor = System.Drawing.Color.White;
     appearance15.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile6.Settings.Appearance = appearance15;
     appearance16.BackColor = System.Drawing.Color.White;
     appearance16.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraTile6.Settings.HeaderAppearance = appearance16;
     this.ultraTile6.TabIndex = 8;
     this.coreBind.SetVerification(this.ultraTile6, null);
     //
     // ulpic6
     //
     this.ulpic6.BorderShadowColor = System.Drawing.Color.Empty;
     this.coreBind.SetDatabasecommand(this.ulpic6, null);
     this.ulpic6.Location = new System.Drawing.Point(0, 18);
     this.ulpic6.Name = "ulpic6";
     this.ulpic6.Size = new System.Drawing.Size(309, 82);
     this.ulpic6.TabIndex = 1;
     this.coreBind.SetVerification(this.ulpic6, null);
     //
     // MeasureDataOneQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 666);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "MeasureDataOneQuery";
     this.Text = "一次计量数据查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.MeasureDataOneQuery_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).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.ultraTile9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart11)).EndInit();
     this.ultraTile7.ResumeLayout(false);
     this.ultraTile8.ResumeLayout(false);
     this.ultraTile6.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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_PLANCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERFACTORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTFLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTID");
     Infragistics.Win.Appearance appearance20 = 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();
     this.panel2 = new System.Windows.Forms.Panel();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = 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.dataColumn2 = new System.Data.DataColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.btnQX = new System.Windows.Forms.Button();
     this.btnQD = new System.Windows.Forms.Button();
     this.dataColumn3 = new System.Data.DataColumn();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel2
     //
     this.panel2.Controls.Add(this.ultraGrid3);
     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, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(592, 466);
     this.panel2.TabIndex = 1;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "运输计划表";
     this.ultraGrid3.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.ultraGrid3.DisplayLayout.Appearance = appearance19;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn1.Width = 70;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     appearance20.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance20;
     appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance21.BackColor2 = System.Drawing.Color.White;
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance21.FontData.SizeInPoints = 11F;
     appearance21.FontData.UnderlineAsString = "False";
     appearance21.ForeColor = System.Drawing.Color.Black;
     appearance21.TextHAlignAsString = "Center";
     appearance21.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance21;
     appearance22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance22;
     appearance23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance23.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance23;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance24.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance24.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance24;
     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.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(592, 376);
     this.ultraGrid3.TabIndex = 4;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.Click += new System.EventHandler(this.ultraGrid3_Click);
     //
     // 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.dataColumn1,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn2,
     this.dataColumn3});
     this.dataTable1.TableName = "运输计划表";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "预报编号";
     this.dataColumn1.ColumnName = "FS_PLANCODE";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "物料名称";
     this.dataColumn4.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "发货地点";
     this.dataColumn5.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "发货单位";
     this.dataColumn6.ColumnName = "FS_SENDER";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "收货单位";
     this.dataColumn7.ColumnName = "FS_RECEIVERFACTORY";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "卸货地点";
     this.dataColumn8.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "流向";
     this.dataColumn9.ColumnName = "FS_POINTFLOW";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "承运单位";
     this.dataColumn2.ColumnName = "FS_TRANSNO";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel3.Controls.Add(this.btnQX);
     this.panel3.Controls.Add(this.btnQD);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 376);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(592, 90);
     this.panel3.TabIndex = 0;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // btnQX
     //
     this.btnQX.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnQX, null);
     this.btnQX.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnQX.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnQX.Location = new System.Drawing.Point(355, 29);
     this.btnQX.Name = "btnQX";
     this.btnQX.Size = new System.Drawing.Size(90, 33);
     this.btnQX.TabIndex = 6;
     this.btnQX.Text = "取 消";
     this.btnQX.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnQX, null);
     this.btnQX.Click += new System.EventHandler(this.btnQX_Click);
     //
     // btnQD
     //
     this.btnQD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnQD, null);
     this.btnQD.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnQD.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnQD.Location = new System.Drawing.Point(158, 29);
     this.btnQD.Name = "btnQD";
     this.btnQD.Size = new System.Drawing.Size(90, 33);
     this.btnQD.TabIndex = 5;
     this.btnQD.Text = "确  定";
     this.btnQD.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnQD, null);
     this.btnQD.Click += new System.EventHandler(this.btnQD_Click);
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "预报编号";
     this.dataColumn3.ColumnName = "FS_POINTID";
     //
     // QuickPlanInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(592, 466);
     this.Controls.Add(this.panel2);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "QuickPlanInfo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "长期预报";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.GuideCardNoInfo_Load);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 18
0
/*		go generado por el Diseñador de Windows Forms
 *              >
 *              sario para admitir el Diseñador. No se puede modificar nido del método con el editor de código.*/
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
            Infragistics.Win.UltraWinDataSource.UltraDataBand   ultraDataBand1   = new Infragistics.Win.UltraWinDataSource.UltraDataBand("Band 1");
            Infragistics.Win.UltraWinDataSource.UltraDataBand   ultraDataBand2   = new Infragistics.Win.UltraWinDataSource.UltraDataBand("Band 2");
            Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Sucursal");
            Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Cantidad");
            Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Descripcion");
            Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Cantidad");
            Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Descripcion");
            Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Cantidad");
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmConsultaArticulos));
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
            this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.label9              = new System.Windows.Forms.Label();
            this.label8              = new System.Windows.Forms.Label();
            this.txtDescripcion      = new System.Windows.Forms.TextBox();
            this.gridEXAgrupamientos = new Janus.Windows.GridEX.GridEX();
            this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.uneMaxDesctoConImp   = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label11              = new System.Windows.Forms.Label();
            this.unePrecioListaConImp = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label10              = new System.Windows.Forms.Label();
            this.unePrecioNeto        = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label7              = new System.Windows.Forms.Label();
            this.uneMaxDescto        = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label6              = new System.Windows.Forms.Label();
            this.unePrecioBruto      = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label5              = new System.Windows.Forms.Label();
            this.unePrecioNetoConImp = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.label2              = new System.Windows.Forms.Label();
            this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
            this.ultraGridStock    = new Infragistics.Win.UltraWinGrid.UltraGrid();
            this.ultraDataSource1  = new Infragistics.Win.UltraWinDataSource.UltraDataSource();
            this.groupBox1         = new System.Windows.Forms.GroupBox();
            this.uneStock          = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
            this.txtEstado         = new System.Windows.Forms.TextBox();
            this.txtVisualizacion  = new System.Windows.Forms.TextBox();
            this.label4            = new System.Windows.Forms.Label();
            this.label3            = new System.Windows.Forms.Label();
            this.label1            = new System.Windows.Forms.Label();
            this.imglStandar       = new System.Windows.Forms.ImageList(this.components);
            this.toolBarStandar    = new System.Windows.Forms.ToolBar();
            this.toolBarButton12   = new System.Windows.Forms.ToolBarButton();
            this.panel1            = new System.Windows.Forms.Panel();
            this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
            this.ultraExplorerBarContainerControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridEXAgrupamientos)).BeginInit();
            this.ultraExplorerBarContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uneMaxDesctoConImp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioListaConImp)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioNeto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uneMaxDescto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioBruto)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioNetoConImp)).BeginInit();
            this.ultraExplorerBarContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ultraGridStock)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uneStock)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
            this.ultraExplorerBar1.SuspendLayout();
            this.SuspendLayout();
            //
            // ultraExplorerBarContainerControl3
            //
            this.ultraExplorerBarContainerControl3.Controls.Add(this.label9);
            this.ultraExplorerBarContainerControl3.Controls.Add(this.label8);
            this.ultraExplorerBarContainerControl3.Controls.Add(this.txtDescripcion);
            this.ultraExplorerBarContainerControl3.Controls.Add(this.gridEXAgrupamientos);
            this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, -83);
            this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
            this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(846, 82);
            this.ultraExplorerBarContainerControl3.TabIndex = 2;
            //
            // label9
            //
            this.label9.BackColor = System.Drawing.Color.Transparent;
            this.label9.Location  = new System.Drawing.Point(1, 24);
            this.label9.Name      = "label9";
            this.label9.Size      = new System.Drawing.Size(87, 16);
            this.label9.TabIndex  = 28;
            this.label9.Text      = "Agrupamientos";
            //
            // label8
            //
            this.label8.BackColor = System.Drawing.Color.Transparent;
            this.label8.Location  = new System.Drawing.Point(0, 3);
            this.label8.Name      = "label8";
            this.label8.Size      = new System.Drawing.Size(69, 16);
            this.label8.TabIndex  = 27;
            this.label8.Text      = "Descripción";
            //
            // txtDescripcion
            //
            this.txtDescripcion.BackColor = System.Drawing.Color.White;
            this.txtDescripcion.Location  = new System.Drawing.Point(101, 0);
            this.txtDescripcion.Name      = "txtDescripcion";
            this.txtDescripcion.ReadOnly  = true;
            this.txtDescripcion.Size      = new System.Drawing.Size(376, 20);
            this.txtDescripcion.TabIndex  = 0;
            this.txtDescripcion.Text      = "txtDescripcion";
            //
            // gridEXAgrupamientos
            //
            this.gridEXAgrupamientos.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
            this.gridEXAgrupamientos.Anchor    = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.gridEXAgrupamientos.Cursor             = System.Windows.Forms.Cursors.Default;
            this.gridEXAgrupamientos.GroupByBoxInfoText = "";
            this.gridEXAgrupamientos.GroupByBoxVisible  = false;
            this.gridEXAgrupamientos.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
            this.gridEXAgrupamientos.LayoutData         = "<GridEXLayoutData><RootTable><Columns Collection=\"true\"><Column0 ID=\"IdProducto\">" +
                                                          "<Caption>IdProducto</Caption><DataMember>IdProducto</DataMember><Key>IdProducto<" +
                                                          "/Key><Position>0</Position><Visible>False</Visible></Column0><Column1 ID=\"Jerarq" +
                                                          "uia\"><Caption>Jerarquia</Caption><DataMember>Jerarquia</DataMember><Key>Jerarqui" +
                                                          "a</Key><Position>1</Position><Visible>False</Visible></Column1><Column2 ID=\"Fech" +
                                                          "aCreacion\"><Caption>FechaCreacion</Caption><DataMember>FechaCreacion</DataMember" +
                                                          "><Key>FechaCreacion</Key><Position>2</Position><Visible>False</Visible></Column2" +
                                                          "><Column3 ID=\"IdConexionCreacion\"><Caption>IdConexionCreacion</Caption><DataMemb" +
                                                          "er>IdConexionCreacion</DataMember><Key>IdConexionCreacion</Key><Position>3</Posi" +
                                                          "tion><Visible>False</Visible></Column3><Column4 ID=\"UltimaModificacion\"><Caption" +
                                                          ">UltimaModificacion</Caption><DataMember>UltimaModificacion</DataMember><Key>Ult" +
                                                          "imaModificacion</Key><Position>4</Position><Visible>False</Visible></Column4><Co" +
                                                          "lumn5 ID=\"IdConexionUltimaModificacion\"><Caption>IdConexionUltimaModificacion</C" +
                                                          "aption><DataMember>IdConexionUltimaModificacion</DataMember><Key>IdConexionUltim" +
                                                          "aModificacion</Key><Position>5</Position><Visible>False</Visible></Column5><Colu" +
                                                          "mn6 ID=\"IdReservado\"><Caption>IdReservado</Caption><DataMember>IdReservado</Data" +
                                                          "Member><Key>IdReservado</Key><Position>6</Position><Visible>False</Visible></Col" +
                                                          "umn6><Column7 ID=\"RowId\"><Caption>RowId</Caption><DataMember>RowId</DataMember><" +
                                                          "Key>RowId</Key><Position>7</Position><Visible>False</Visible></Column7><Column8 " +
                                                          "ID=\"IdEmpresa\"><Caption>IdEmpresa</Caption><DataMember>IdEmpresa</DataMember><Ke" +
                                                          "y>IdEmpresa</Key><Position>8</Position><Visible>False</Visible></Column8><Column" +
                                                          "9 ID=\"Descripcion\"><Caption>Descripcion</Caption><DataMember>Descripcion</DataMe" +
                                                          "mber><Key>Descripcion</Key><Position>9</Position><Width>98</Width></Column9></Co" +
                                                          "lumns><GroupCondition ID=\"\" /><SortKeys Collection=\"true\"><SortKey0 ID=\"SortKey0" +
                                                          "\"><ColIndex>9</ColIndex></SortKey0></SortKeys></RootTable></GridEXLayoutData>";
            this.gridEXAgrupamientos.Location = new System.Drawing.Point(101, 22);
            this.gridEXAgrupamientos.Name     = "gridEXAgrupamientos";
            this.gridEXAgrupamientos.Size     = new System.Drawing.Size(370, 58);
            this.gridEXAgrupamientos.TabIndex = 1;
            //
            // ultraExplorerBarContainerControl1
            //
            this.ultraExplorerBarContainerControl1.Controls.Add(this.uneMaxDesctoConImp);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label11);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.unePrecioListaConImp);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label10);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.unePrecioNeto);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label7);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.uneMaxDescto);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label6);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.unePrecioBruto);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label5);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.unePrecioNetoConImp);
            this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
            this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 58);
            this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
            this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(846, 82);
            this.ultraExplorerBarContainerControl1.TabIndex = 0;
            //
            // uneMaxDesctoConImp
            //
            this.uneMaxDesctoConImp.FormatString = "0.00";
            this.uneMaxDesctoConImp.Location     = new System.Drawing.Point(526, 27);
            this.uneMaxDesctoConImp.MaxValue     = 2147483647.99;
            this.uneMaxDesctoConImp.MinValue     = -21474836.99;
            this.uneMaxDesctoConImp.Name         = "uneMaxDesctoConImp";
            this.uneMaxDesctoConImp.NumericType  = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.uneMaxDesctoConImp.PromptChar   = ' ';
            this.uneMaxDesctoConImp.ReadOnly     = true;
            this.uneMaxDesctoConImp.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
            this.uneMaxDesctoConImp.Size         = new System.Drawing.Size(100, 21);
            this.uneMaxDesctoConImp.TabIndex     = 4;
            //
            // label11
            //
            this.label11.BackColor = System.Drawing.Color.Transparent;
            this.label11.Location  = new System.Drawing.Point(325, 29);
            this.label11.Name      = "label11";
            this.label11.Size      = new System.Drawing.Size(200, 16);
            this.label11.TabIndex  = 31;
            this.label11.Text      = "Máximo descuento aplicable";
            //
            // unePrecioListaConImp
            //
            this.unePrecioListaConImp.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.unePrecioListaConImp.FormatString = "0.00";
            this.unePrecioListaConImp.Location     = new System.Drawing.Point(526, 3);
            this.unePrecioListaConImp.MaxValue     = 2147483647.99;
            this.unePrecioListaConImp.MinValue     = -21474836.99;
            this.unePrecioListaConImp.Name         = "unePrecioListaConImp";
            this.unePrecioListaConImp.NumericType  = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.unePrecioListaConImp.PromptChar   = ' ';
            this.unePrecioListaConImp.ReadOnly     = true;
            this.unePrecioListaConImp.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
            this.unePrecioListaConImp.Size         = new System.Drawing.Size(100, 21);
            this.unePrecioListaConImp.TabIndex     = 3;
            //
            // label10
            //
            this.label10.BackColor = System.Drawing.Color.Transparent;
            this.label10.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label10.Location  = new System.Drawing.Point(325, 6);
            this.label10.Name      = "label10";
            this.label10.Size      = new System.Drawing.Size(192, 16);
            this.label10.TabIndex  = 29;
            this.label10.Text      = "Precio de Lista Impuestos Incluidos";
            this.label10.Click    += new System.EventHandler(this.label10_Click);
            //
            // unePrecioNeto
            //
            this.unePrecioNeto.FormatString  = "0.00";
            this.unePrecioNeto.Location      = new System.Drawing.Point(173, 52);
            this.unePrecioNeto.MaxValue      = 2147483647.99;
            this.unePrecioNeto.MinValue      = -21474836.99;
            this.unePrecioNeto.Name          = "unePrecioNeto";
            this.unePrecioNeto.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.unePrecioNeto.PromptChar    = ' ';
            this.unePrecioNeto.ReadOnly      = true;
            this.unePrecioNeto.RightToLeft   = System.Windows.Forms.RightToLeft.Yes;
            this.unePrecioNeto.Size          = new System.Drawing.Size(100, 21);
            this.unePrecioNeto.TabIndex      = 2;
            this.unePrecioNeto.ValueChanged += new System.EventHandler(this.unePrecioNeto_ValueChanged);
            //
            // label7
            //
            this.label7.BackColor = System.Drawing.Color.Transparent;
            this.label7.Location  = new System.Drawing.Point(16, 59);
            this.label7.Name      = "label7";
            this.label7.Size      = new System.Drawing.Size(152, 16);
            this.label7.TabIndex  = 27;
            this.label7.Text      = "Precio Mínimo sin Impuestos";
            this.label7.Click    += new System.EventHandler(this.label7_Click);
            //
            // uneMaxDescto
            //
            this.uneMaxDescto.FormatString = "0.00";
            this.uneMaxDescto.Location     = new System.Drawing.Point(173, 27);
            this.uneMaxDescto.MaxValue     = 2147483647.99;
            this.uneMaxDescto.MinValue     = -21474836.99;
            this.uneMaxDescto.Name         = "uneMaxDescto";
            this.uneMaxDescto.NumericType  = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.uneMaxDescto.PromptChar   = ' ';
            this.uneMaxDescto.ReadOnly     = true;
            this.uneMaxDescto.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
            this.uneMaxDescto.Size         = new System.Drawing.Size(100, 21);
            this.uneMaxDescto.TabIndex     = 1;
            //
            // label6
            //
            this.label6.BackColor = System.Drawing.Color.Transparent;
            this.label6.Location  = new System.Drawing.Point(16, 32);
            this.label6.Name      = "label6";
            this.label6.Size      = new System.Drawing.Size(152, 16);
            this.label6.TabIndex  = 25;
            this.label6.Text      = "Máximo descuento aplicable";
            //
            // unePrecioBruto
            //
            this.unePrecioBruto.FormatString = "0.00";
            this.unePrecioBruto.Location     = new System.Drawing.Point(173, 3);
            this.unePrecioBruto.MaxValue     = 2147483647.99;
            this.unePrecioBruto.MinValue     = -21474836.99;
            this.unePrecioBruto.Name         = "unePrecioBruto";
            this.unePrecioBruto.NumericType  = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.unePrecioBruto.PromptChar   = ' ';
            this.unePrecioBruto.ReadOnly     = true;
            this.unePrecioBruto.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
            this.unePrecioBruto.Size         = new System.Drawing.Size(100, 21);
            this.unePrecioBruto.TabIndex     = 0;
            //
            // label5
            //
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Location  = new System.Drawing.Point(16, 6);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(160, 16);
            this.label5.TabIndex  = 23;
            this.label5.Text      = "Precio de Lista sin Impuestos";
            //
            // unePrecioNetoConImp
            //
            this.unePrecioNetoConImp.FormatString = "0.00";
            this.unePrecioNetoConImp.Location     = new System.Drawing.Point(526, 52);
            this.unePrecioNetoConImp.MaxValue     = 2147483647.99;
            this.unePrecioNetoConImp.MinValue     = -21474836.99;
            this.unePrecioNetoConImp.Name         = "unePrecioNetoConImp";
            this.unePrecioNetoConImp.NumericType  = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.unePrecioNetoConImp.PromptChar   = ' ';
            this.unePrecioNetoConImp.ReadOnly     = true;
            this.unePrecioNetoConImp.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
            this.unePrecioNetoConImp.Size         = new System.Drawing.Size(100, 21);
            this.unePrecioNetoConImp.TabIndex     = 5;
            //
            // label2
            //
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Location  = new System.Drawing.Point(326, 57);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(192, 16);
            this.label2.TabIndex  = 17;
            this.label2.Text      = "Precio Mínimo Impuestos Incluidos";
            //
            // ultraExplorerBarContainerControl2
            //
            this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraGridStock);
            this.ultraExplorerBarContainerControl2.Controls.Add(this.groupBox1);
            this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 199);
            this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
            this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(846, 273);
            this.ultraExplorerBarContainerControl2.TabIndex = 1;
            //
            // ultraGridStock
            //
            this.ultraGridStock.Cursor     = System.Windows.Forms.Cursors.Default;
            this.ultraGridStock.DataSource = this.ultraDataSource1;
            appearance1.BackColor          = System.Drawing.Color.White;
            this.ultraGridStock.DisplayLayout.Appearance = appearance1;
            this.ultraGridStock.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.ultraGridStock.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.ultraGridStock.Location = new System.Drawing.Point(0, 0);
            this.ultraGridStock.Name     = "ultraGridStock";
            this.ultraGridStock.Size     = new System.Drawing.Size(846, 273);
            this.ultraGridStock.TabIndex = 0;
            //
            // ultraDataSource1
            //
            ultraDataBand2.Columns.AddRange(new object[] {
                ultraDataColumn1,
                ultraDataColumn2
            });
            ultraDataBand1.ChildBands.AddRange(new object[] {
                ultraDataBand2
            });
            ultraDataBand1.Columns.AddRange(new object[] {
                ultraDataColumn3,
                ultraDataColumn4
            });
            this.ultraDataSource1.Band.ChildBands.AddRange(new object[] {
                ultraDataBand1
            });
            this.ultraDataSource1.Band.Columns.AddRange(new object[] {
                ultraDataColumn5,
                ultraDataColumn6
            });
            //
            // groupBox1
            //
            this.groupBox1.BackColor = System.Drawing.Color.Transparent;
            this.groupBox1.Controls.Add(this.uneStock);
            this.groupBox1.Controls.Add(this.txtEstado);
            this.groupBox1.Controls.Add(this.txtVisualizacion);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(846, 273);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop  = false;
            //
            // uneStock
            //
            this.uneStock.Location    = new System.Drawing.Point(128, 62);
            this.uneStock.Name        = "uneStock";
            this.uneStock.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
            this.uneStock.PromptChar  = ' ';
            this.uneStock.ReadOnly    = true;
            this.uneStock.Size        = new System.Drawing.Size(100, 21);
            this.uneStock.TabIndex    = 30;
            //
            // txtEstado
            //
            this.txtEstado.BackColor = System.Drawing.Color.White;
            this.txtEstado.Location  = new System.Drawing.Point(128, 40);
            this.txtEstado.Name      = "txtEstado";
            this.txtEstado.ReadOnly  = true;
            this.txtEstado.Size      = new System.Drawing.Size(144, 20);
            this.txtEstado.TabIndex  = 4;
            this.txtEstado.Text      = "txtEstado";
            //
            // txtVisualizacion
            //
            this.txtVisualizacion.BackColor = System.Drawing.Color.White;
            this.txtVisualizacion.Location  = new System.Drawing.Point(128, 17);
            this.txtVisualizacion.Name      = "txtVisualizacion";
            this.txtVisualizacion.ReadOnly  = true;
            this.txtVisualizacion.Size      = new System.Drawing.Size(144, 20);
            this.txtVisualizacion.TabIndex  = 3;
            this.txtVisualizacion.Text      = "txtVisualizacion";
            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(8, 41);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(96, 20);
            this.label4.TabIndex = 2;
            this.label4.Text     = "Estado de stock";
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(8, 18);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(120, 20);
            this.label3.TabIndex = 1;
            this.label3.Text     = "Visualizacion de stock";
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(8, 65);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(40, 20);
            this.label1.TabIndex = 0;
            this.label1.Text     = "Stock";
            //
            // imglStandar
            //
            this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
            this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
            this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
            //
            // toolBarStandar
            //
            this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
            this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
                this.toolBarButton12
            });
            this.toolBarStandar.DropDownArrows = true;
            this.toolBarStandar.ImageList      = this.imglStandar;
            this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
            this.toolBarStandar.Name           = "toolBarStandar";
            this.toolBarStandar.ShowToolTips   = true;
            this.toolBarStandar.Size           = new System.Drawing.Size(912, 28);
            this.toolBarStandar.TabIndex       = 20;
            this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
            this.toolBarStandar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBarStandar_ButtonClick);
            //
            // toolBarButton12
            //
            this.toolBarButton12.ImageIndex = 5;
            this.toolBarButton12.Text       = "Actualizar";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.ultraExplorerBar1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 28);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(912, 497);
            this.panel1.TabIndex = 21;
            //
            // ultraExplorerBar1
            //
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
            this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
            this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
            ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl3;
            ultraExplorerBarGroup1.Settings.ContainerHeight = 82;
            ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup1.Text      = "Información principal";
            ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl1;
            ultraExplorerBarGroup2.Settings.ContainerHeight = 82;
            ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup2.Text      = "Precios";
            ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl2;
            ultraExplorerBarGroup3.Settings.ContainerHeight = 273;
            ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
            ultraExplorerBarGroup3.Text = "Stock";
            this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
                ultraExplorerBarGroup1,
                ultraExplorerBarGroup2,
                ultraExplorerBarGroup3
            });
            this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 0);
            this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;                                                                                                                                 //German 20101207 - Tarea Infragistics 2008 – Tarea 983
            this.ultraExplorerBar1.Size     = new System.Drawing.Size(912, 497);
            this.ultraExplorerBar1.TabIndex = 2;
            //
            // FrmConsultaArticulos
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.BackColor         = System.Drawing.SystemColors.Control;
            this.ClientSize        = new System.Drawing.Size(912, 525);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.toolBarStandar);
            this.Name = "FrmConsultaArticulos";
            this.Text = "Consulta de artículos";
            this.ultraExplorerBarContainerControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridEXAgrupamientos)).EndInit();
            this.ultraExplorerBarContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uneMaxDesctoConImp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioListaConImp)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioNeto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uneMaxDescto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioBruto)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.unePrecioNetoConImp)).EndInit();
            this.ultraExplorerBarContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ultraGridStock)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uneStock)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
            this.ultraExplorerBar1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Ejemplo n.º 19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components          = new System.ComponentModel.Container();
     this.ultraGroupBox1      = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbSales            = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel20        = new Infragistics.Win.Misc.UltraLabel();
     this.txtPrepay           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3         = new Infragistics.Win.Misc.UltraLabel();
     this.btnCancel           = new Infragistics.Win.Misc.UltraButton();
     this.btnOK               = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6         = new Infragistics.Win.Misc.UltraLabel();
     this.txtMemberName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2      = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnQuery            = new Infragistics.Win.Misc.UltraButton();
     this.txtQPaperNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2         = new Infragistics.Win.Misc.UltraLabel();
     this.txtQMemberName      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid1          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.errorProvider1      = new System.Windows.Forms.ErrorProvider(this.components);
     this.ultraPrintDocument1 = new Infragistics.Win.Printing.UltraPrintDocument(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPrepay)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel20);
     this.ultraGroupBox1.Controls.Add(this.txtPrepay);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Controls.Add(this.btnOK);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Location = new System.Drawing.Point(656, 208);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(368, 272);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text     = "充值";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(192, 147);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(100, 21);
     this.cmbSales.TabIndex     = 66;
     //
     // ultraLabel20
     //
     this.ultraLabel20.Location = new System.Drawing.Point(91, 147);
     this.ultraLabel20.Name     = "ultraLabel20";
     this.ultraLabel20.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel20.TabIndex = 65;
     this.ultraLabel20.Text     = "销售人员:";
     //
     // txtPrepay
     //
     this.txtPrepay.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPrepay.Location     = new System.Drawing.Point(192, 120);
     this.txtPrepay.Name         = "txtPrepay";
     this.txtPrepay.Size         = new System.Drawing.Size(100, 21);
     this.txtPrepay.TabIndex     = 17;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(91, 120);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 16;
     this.ultraLabel3.Text     = "金额:";
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(215, 192);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex    = 13;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(95, 192);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex    = 12;
     this.btnOK.Text        = "确定";
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Enabled      = false;
     this.txtPaperNo.Location     = new System.Drawing.Point(192, 88);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 11;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(91, 88);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 10;
     this.ultraLabel6.Text     = "工商注册号:";
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Enabled      = false;
     this.txtMemberName.Location     = new System.Drawing.Point(192, 56);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 9;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(91, 56);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 8;
     this.ultraLabel5.Text     = "单位名称:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtQPaperNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.txtQMemberName);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Location = new System.Drawing.Point(208, 24);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(536, 120);
     this.ultraGroupBox2.TabIndex = 1;
     this.ultraGroupBox2.Text     = "非会员充值查询";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(392, 48);
     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);
     //
     // txtQPaperNo
     //
     this.txtQPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQPaperNo.Location     = new System.Drawing.Point(232, 64);
     this.txtQPaperNo.Name         = "txtQPaperNo";
     this.txtQPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQPaperNo.TabIndex     = 17;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(128, 64);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 16;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // txtQMemberName
     //
     this.txtQMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberName.Location     = new System.Drawing.Point(232, 32);
     this.txtQMemberName.Name         = "txtQMemberName";
     this.txtQMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberName.TabIndex     = 15;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(128, 32);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 14;
     this.ultraLabel7.Text     = "单位名称:";
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(24, 184);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(616, 312);
     this.ultraGrid1.TabIndex           = 2;
     this.ultraGrid1.Text               = "查询结果";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // AddPrepay
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1028, 525);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "AddPrepay";
     this.Text  = Login.constApp.strCardTypeL6Name + "非会员充值";
     this.Load += new System.EventHandler(this.AddPrepay_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPrepay)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 20
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用班组编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("冶炼");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_SMELTDATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_STOVENO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("化学成分(%)");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn7 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_C");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn8 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Si");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn9 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Mn");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn10 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_S");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn11 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_P");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn12 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Ni");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn13 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Cr");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn14 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Cu");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn15 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_V");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn16 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Mo");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn17 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Ceq");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn18 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("合格品");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn19 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn20 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_JJ_WEIGHT");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn21 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_MEMO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn22 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_JUDGER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn23 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn24 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("轧材");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn25 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("钢坯验收");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn26 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn27 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn28 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("钢坯加热");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn29 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn30 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn31 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZC_BATCHNO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn32 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZC_OPERATOR");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn33 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZC_MEMO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn34 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("热轧");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn35 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZZ_SPEC");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn36 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_ZZ_DATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn37 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZZ_NUM");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn38 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn39 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn40 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZZ_MEMO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn41 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_LENGTH");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn42 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_GPYS_NUMBER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn43 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_DJH");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("冶炼");
     Infragistics.Win.Appearance appearance302 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SMELTDATE");
     Infragistics.Win.Appearance appearance303 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance304 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance305 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance306 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance307 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("化学成分(%)");
     Infragistics.Win.Appearance appearance308 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_C");
     Infragistics.Win.Appearance appearance309 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance310 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Si");
     Infragistics.Win.Appearance appearance311 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance312 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Mn");
     Infragistics.Win.Appearance appearance313 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance314 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_S");
     Infragistics.Win.Appearance appearance315 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance316 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_P");
     Infragistics.Win.Appearance appearance317 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance318 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Ni");
     Infragistics.Win.Appearance appearance319 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance320 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Cr");
     Infragistics.Win.Appearance appearance321 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance322 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Cu");
     Infragistics.Win.Appearance appearance323 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance324 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_V");
     Infragistics.Win.Appearance appearance325 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance326 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Mo");
     Infragistics.Win.Appearance appearance327 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance328 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Ceq");
     Infragistics.Win.Appearance appearance329 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance330 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("合格品");
     Infragistics.Win.Appearance appearance331 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.Appearance appearance332 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance333 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance334 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance335 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance336 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance337 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance338 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance339 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("轧材");
     Infragistics.Win.Appearance appearance340 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢坯验收");
     Infragistics.Win.Appearance appearance341 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.Appearance appearance342 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.Appearance appearance343 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢坯加热");
     Infragistics.Win.Appearance appearance344 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.Appearance appearance345 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance346 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.Appearance appearance347 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance348 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance349 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_OPERATOR");
     Infragistics.Win.Appearance appearance350 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_MEMO");
     Infragistics.Win.Appearance appearance351 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("热轧");
     Infragistics.Win.Appearance appearance352 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance353 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance354 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZZ_DATE");
     Infragistics.Win.Appearance appearance355 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.Appearance appearance356 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance357 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.Appearance appearance358 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance359 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.Appearance appearance360 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_MEMO");
     Infragistics.Win.Appearance appearance361 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance362 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance363 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance364 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance365 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DJH");
     Infragistics.Win.Appearance appearance366 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_AS", 0);
     Infragistics.Win.Appearance appearance367 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance368 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_TI", 1);
     Infragistics.Win.Appearance appearance369 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance370 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_SB", 2);
     Infragistics.Win.Appearance appearance371 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance372 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_ALS", 3);
     Infragistics.Win.Appearance appearance373 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance374 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance297 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance299 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance300 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinScrollBar.ScrollBarLook scrollBarLook1 = new Infragistics.Win.UltraWinScrollBar.ScrollBarLook();
     Infragistics.Win.Appearance appearance301 = new Infragistics.Win.Appearance();
     this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraDataSource1
     //
     ultraDataColumn30.DataType = typeof(System.DateTime);
     ultraDataColumn36.DataType = typeof(System.DateTime);
     this.ultraDataSource1.Band.Columns.AddRange(new object[] {
     ultraDataColumn1,
     ultraDataColumn2,
     ultraDataColumn3,
     ultraDataColumn4,
     ultraDataColumn5,
     ultraDataColumn6,
     ultraDataColumn7,
     ultraDataColumn8,
     ultraDataColumn9,
     ultraDataColumn10,
     ultraDataColumn11,
     ultraDataColumn12,
     ultraDataColumn13,
     ultraDataColumn14,
     ultraDataColumn15,
     ultraDataColumn16,
     ultraDataColumn17,
     ultraDataColumn18,
     ultraDataColumn19,
     ultraDataColumn20,
     ultraDataColumn21,
     ultraDataColumn22,
     ultraDataColumn23,
     ultraDataColumn24,
     ultraDataColumn25,
     ultraDataColumn26,
     ultraDataColumn27,
     ultraDataColumn28,
     ultraDataColumn29,
     ultraDataColumn30,
     ultraDataColumn31,
     ultraDataColumn32,
     ultraDataColumn33,
     ultraDataColumn34,
     ultraDataColumn35,
     ultraDataColumn36,
     ultraDataColumn37,
     ultraDataColumn38,
     ultraDataColumn39,
     ultraDataColumn40,
     ultraDataColumn41,
     ultraDataColumn42,
     ultraDataColumn43});
     //
     // ultraGrid1
     //
     this.ultraGrid1.DataMember = "Band 0";
     this.ultraGrid1.DataSource = this.ultraDataSource1;
     ultraGridBand1.CardSettings.CardScrollbars = Infragistics.Win.UltraWinGrid.CardScrollbars.None;
     ultraGridBand1.CardSettings.ShowCaption = false;
     ultraGridBand1.CardSettings.Style = Infragistics.Win.UltraWinGrid.CardStyle.StandardLabels;
     ultraGridBand1.CardView = true;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance302.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn1.Header.Appearance = appearance302;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(28, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 5;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance303.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn2.Header.Appearance = appearance303;
     ultraGridColumn2.Header.Caption = "冶炼日期";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn2.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(73, 0);
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(73, 56);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance304.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn3.Header.Appearance = appearance304;
     ultraGridColumn3.Header.Caption = "炉号";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn3.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 56);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance305.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn4.Header.Appearance = appearance305;
     ultraGridColumn4.Header.Caption = "牌号";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn4.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 56);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance306.TextHAlignAsString = "Right";
     ultraGridColumn5.CellAppearance = appearance306;
     appearance307.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn5.Header.Appearance = appearance307;
     ultraGridColumn5.Header.Caption = "规格(mm)";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn5.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 56);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance308.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn6.Header.Appearance = appearance308;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(760, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(553, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 18;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance309.TextHAlignAsString = "Right";
     ultraGridColumn7.CellAppearance = appearance309;
     appearance310.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn7.Header.Appearance = appearance310;
     ultraGridColumn7.Header.Caption = "C";
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(36, 0);
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(36, 29);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance311.TextHAlignAsString = "Right";
     ultraGridColumn8.CellAppearance = appearance311;
     appearance312.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn8.Header.Appearance = appearance312;
     ultraGridColumn8.Header.Caption = "Si";
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance313.TextHAlignAsString = "Right";
     ultraGridColumn9.CellAppearance = appearance313;
     appearance314.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn9.Header.Appearance = appearance314;
     ultraGridColumn9.Header.Caption = "Mn";
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance315.TextHAlignAsString = "Right";
     ultraGridColumn10.CellAppearance = appearance315;
     appearance316.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn10.Header.Appearance = appearance316;
     ultraGridColumn10.Header.Caption = "S";
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance317.TextHAlignAsString = "Right";
     ultraGridColumn11.CellAppearance = appearance317;
     appearance318.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn11.Header.Appearance = appearance318;
     ultraGridColumn11.Header.Caption = "P";
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance319.TextHAlignAsString = "Right";
     ultraGridColumn12.CellAppearance = appearance319;
     appearance320.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn12.Header.Appearance = appearance320;
     ultraGridColumn12.Header.Caption = "Ni";
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance321.TextHAlignAsString = "Right";
     ultraGridColumn13.CellAppearance = appearance321;
     appearance322.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn13.Header.Appearance = appearance322;
     ultraGridColumn13.Header.Caption = "Cr";
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance323.TextHAlignAsString = "Right";
     ultraGridColumn14.CellAppearance = appearance323;
     appearance324.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn14.Header.Appearance = appearance324;
     ultraGridColumn14.Header.Caption = "Cu";
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance325.TextHAlignAsString = "Right";
     ultraGridColumn15.CellAppearance = appearance325;
     appearance326.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn15.Header.Appearance = appearance326;
     ultraGridColumn15.Header.Caption = "V";
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance327.TextHAlignAsString = "Right";
     ultraGridColumn16.CellAppearance = appearance327;
     appearance328.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn16.Header.Appearance = appearance328;
     ultraGridColumn16.Header.Caption = "Mo";
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance329.TextHAlignAsString = "Right";
     ultraGridColumn17.CellAppearance = appearance329;
     appearance330.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn17.Header.Appearance = appearance330;
     ultraGridColumn17.Header.Caption = "Ceq";
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(53, 29);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance331.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn18.Header.Appearance = appearance331;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(150, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance332.FontData.BoldAsString = "True";
     appearance332.TextHAlignAsString = "Right";
     ultraGridColumn19.CellAppearance = appearance332;
     appearance333.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn19.Header.Appearance = appearance333;
     ultraGridColumn19.Header.Caption = "条";
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 29);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance334.TextHAlignAsString = "Right";
     ultraGridColumn20.CellAppearance = appearance334;
     appearance335.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn20.Header.Appearance = appearance335;
     ultraGridColumn20.Header.Caption = "t";
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 25;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 29);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance336.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn21.Header.Appearance = appearance336;
     ultraGridColumn21.Header.Caption = "备注";
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 3;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(721, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(73, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 14;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance337.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn22.Header.Appearance = appearance337;
     ultraGridColumn22.Header.Caption = "判定员";
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 3;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(97, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(48, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance338.TextHAlignAsString = "Left";
     ultraGridColumn23.CellAppearance = appearance338;
     appearance339.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance339.TextHAlignAsString = "Left";
     ultraGridColumn23.Header.Appearance = appearance339;
     ultraGridColumn23.Header.Caption = "判定日期";
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 3;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(248, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(99, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 8;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance340.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn24.Header.Appearance = appearance340;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(28, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 5;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance341.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn25.Header.Appearance = appearance341;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(73, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance342.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn26.Header.Appearance = appearance342;
     ultraGridColumn26.Header.Caption = "验收日期";
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(141, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance343.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn27.Header.Appearance = appearance343;
     ultraGridColumn27.Header.Caption = "验收人";
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 8;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(141, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance344.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn28.Header.Appearance = appearance344;
     ultraGridColumn28.Header.Caption = "钢坯 加热";
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance345.FontData.BoldAsString = "True";
     appearance345.TextHAlignAsString = "Right";
     ultraGridColumn29.CellAppearance = appearance345;
     appearance346.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn29.Header.Appearance = appearance346;
     ultraGridColumn29.Header.Caption = "入炉条数";
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 6;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn30.Format = "yyyy-MM-dd HH:mm";
     appearance347.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn30.Header.Appearance = appearance347;
     ultraGridColumn30.Header.Caption = "入炉时间";
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.MaskInput = "yyyy-mm-dd hh:mm";
     ultraGridColumn30.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance348.FontData.BoldAsString = "True";
     appearance348.ForeColor = System.Drawing.Color.Red;
     ultraGridColumn31.CellAppearance = appearance348;
     appearance349.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn31.Header.Appearance = appearance349;
     ultraGridColumn31.Header.Caption = "轧制编号";
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance350.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn32.Header.Appearance = appearance350;
     ultraGridColumn32.Header.Caption = "负责人";
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 8;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance351.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn33.Header.Appearance = appearance351;
     ultraGridColumn33.Header.Caption = "备注";
     ultraGridColumn33.Header.VisiblePosition = 38;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 9;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(221, 0);
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(73, 0);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance352.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn34.Header.Appearance = appearance352;
     ultraGridColumn34.Header.VisiblePosition = 32;
     ultraGridColumn34.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance353.FontData.BoldAsString = "True";
     ultraGridColumn35.CellAppearance = appearance353;
     appearance354.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn35.Header.Appearance = appearance354;
     ultraGridColumn35.Header.Caption = "轧制规格";
     ultraGridColumn35.Header.VisiblePosition = 33;
     ultraGridColumn35.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn36.Format = "yyyy-MM-dd HH:mm";
     appearance355.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn36.Header.Appearance = appearance355;
     ultraGridColumn36.Header.Caption = "轧制日期";
     ultraGridColumn36.Header.VisiblePosition = 34;
     ultraGridColumn36.MaskInput = "yyyy-mm-dd hh:mm";
     ultraGridColumn36.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance356.FontData.BoldAsString = "True";
     appearance356.TextHAlignAsString = "Left";
     ultraGridColumn37.CellAppearance = appearance356;
     appearance357.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance357.TextHAlignAsString = "Left";
     ultraGridColumn37.Header.Appearance = appearance357;
     ultraGridColumn37.Header.Caption = "轧制成材(条)";
     ultraGridColumn37.Header.VisiblePosition = 35;
     ultraGridColumn37.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(351, 0);
     ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(202, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 11;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance358.FontData.BoldAsString = "True";
     appearance358.TextHAlignAsString = "Left";
     ultraGridColumn38.CellAppearance = appearance358;
     appearance359.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance359.TextHAlignAsString = "Left";
     ultraGridColumn38.Header.Appearance = appearance359;
     ultraGridColumn38.Header.Caption = "热轧废品(条)";
     ultraGridColumn38.Header.VisiblePosition = 36;
     ultraGridColumn38.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(351, 0);
     ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(202, 0);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 11;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance360.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn39.Header.Appearance = appearance360;
     ultraGridColumn39.Header.Caption = "负责人";
     ultraGridColumn39.Header.VisiblePosition = 37;
     ultraGridColumn39.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 8;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance361.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn40.Header.Appearance = appearance361;
     ultraGridColumn40.Header.Caption = "备注";
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 9;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(200, 0);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 5;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance362.FontData.BoldAsString = "True";
     appearance362.TextHAlignAsString = "Right";
     ultraGridColumn41.CellAppearance = appearance362;
     appearance363.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn41.Header.Appearance = appearance363;
     ultraGridColumn41.Header.Caption = "定尺(m)";
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 6;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDown;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance364.FontData.BoldAsString = "True";
     appearance364.TextHAlignAsString = "Right";
     ultraGridColumn42.CellAppearance = appearance364;
     appearance365.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn42.Header.Appearance = appearance365;
     ultraGridColumn42.Header.Caption = "条数";
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(141, 0);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance366.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn43.Header.Appearance = appearance366;
     ultraGridColumn43.Header.Caption = "货架号";
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 6;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(141, 0);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance367.TextHAlignAsString = "Right";
     ultraGridColumn44.CellAppearance = appearance367;
     appearance368.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn44.Header.Appearance = appearance368;
     ultraGridColumn44.Header.Caption = "As";
     ultraGridColumn44.Header.VisiblePosition = 43;
     ultraGridColumn44.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(31, 0);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance369.TextHAlignAsString = "Right";
     ultraGridColumn45.CellAppearance = appearance369;
     appearance370.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn45.Header.Appearance = appearance370;
     ultraGridColumn45.Header.Caption = "Ti";
     ultraGridColumn45.Header.VisiblePosition = 44;
     ultraGridColumn45.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 0);
     ultraGridColumn45.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(31, 0);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance371.TextHAlignAsString = "Right";
     ultraGridColumn46.CellAppearance = appearance371;
     appearance372.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn46.Header.Appearance = appearance372;
     ultraGridColumn46.Header.Caption = "Sb";
     ultraGridColumn46.Header.VisiblePosition = 45;
     ultraGridColumn46.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(31, 0);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance373.TextHAlignAsString = "Right";
     ultraGridColumn47.CellAppearance = appearance373;
     appearance374.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn47.Header.Appearance = appearance374;
     ultraGridColumn47.Header.Caption = "Als";
     ultraGridColumn47.Header.VisiblePosition = 46;
     ultraGridColumn47.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(49, 0);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.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,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47});
     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.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.None;
     ultraGridBand1.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.Override.AllowColSizing = Infragistics.Win.UltraWinGrid.AllowColSizing.None;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleCardArea = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Etched;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleHeader = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.None;
     appearance297.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance297;
     appearance299.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance299;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     appearance300.TextHAlignAsString = "Center";
     appearance300.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance300;
     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.None;
     this.ultraGrid1.DisplayLayout.Override.TipStyleScroll = Infragistics.Win.UltraWinGrid.TipStyle.Show;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     appearance301.TextHAlignAsString = "Left";
     scrollBarLook1.ButtonAppearance = appearance301;
     this.ultraGrid1.DisplayLayout.ScrollBarLook = scrollBarLook1;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     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(1177, 283);
     this.ultraGrid1.TabIndex = 0;
     //
     // ucBilletFlowCard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.ultraGrid1);
     this.Name = "ucBilletFlowCard";
     this.Size = new System.Drawing.Size(1177, 283);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED1");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED2");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADVISESPEC");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 782692756);
     Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("�ϸ�");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���ϸ�");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("GetElements");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modify");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReExamine));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("�ϸ�");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���ϸ�");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("GetElements");
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modify");
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.tbAdviseSpec = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtLength = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.txtSpec = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtSteelType = new System.Windows.Forms.TextBox();
     this.LabSteelType = new System.Windows.Forms.Label();
     this.tbAs = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.cbEditQuanified = new System.Windows.Forms.CheckBox();
     this.label28 = 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.label2 = new System.Windows.Forms.Label();
     this.tbC = new System.Windows.Forms.TextBox();
     this.txtStoveNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtCardNo = new System.Windows.Forms.TextBox();
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbUnquanified = new System.Windows.Forms.CheckBox();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.cbQuanified = new System.Windows.Forms.CheckBox();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = 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.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.llb_CloseAll = new System.Windows.Forms.LinkLabel();
     this.llb_ExpandAll = new System.Windows.Forms.LinkLabel();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.ultraToolbarsDockArea1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea2 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea3 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea4 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox3);
     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(990, 137);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.tbAdviseSpec);
     this.ultraGroupBox3.Controls.Add(this.label4);
     this.ultraGroupBox3.Controls.Add(this.txtLength);
     this.ultraGroupBox3.Controls.Add(this.label7);
     this.ultraGroupBox3.Controls.Add(this.txtSpec);
     this.ultraGroupBox3.Controls.Add(this.label6);
     this.ultraGroupBox3.Controls.Add(this.txtSteelType);
     this.ultraGroupBox3.Controls.Add(this.LabSteelType);
     this.ultraGroupBox3.Controls.Add(this.tbAs);
     this.ultraGroupBox3.Controls.Add(this.label3);
     this.ultraGroupBox3.Controls.Add(this.cbEditQuanified);
     this.ultraGroupBox3.Controls.Add(this.label28);
     this.ultraGroupBox3.Controls.Add(this.label18);
     this.ultraGroupBox3.Controls.Add(this.tbCeq);
     this.ultraGroupBox3.Controls.Add(this.label17);
     this.ultraGroupBox3.Controls.Add(this.tbNb);
     this.ultraGroupBox3.Controls.Add(this.label16);
     this.ultraGroupBox3.Controls.Add(this.tbMo);
     this.ultraGroupBox3.Controls.Add(this.label15);
     this.ultraGroupBox3.Controls.Add(this.tbV);
     this.ultraGroupBox3.Controls.Add(this.label14);
     this.ultraGroupBox3.Controls.Add(this.tbCu);
     this.ultraGroupBox3.Controls.Add(this.label13);
     this.ultraGroupBox3.Controls.Add(this.tbCr);
     this.ultraGroupBox3.Controls.Add(this.label12);
     this.ultraGroupBox3.Controls.Add(this.tbNi);
     this.ultraGroupBox3.Controls.Add(this.label11);
     this.ultraGroupBox3.Controls.Add(this.tbP);
     this.ultraGroupBox3.Controls.Add(this.label10);
     this.ultraGroupBox3.Controls.Add(this.tbS);
     this.ultraGroupBox3.Controls.Add(this.label9);
     this.ultraGroupBox3.Controls.Add(this.tbMn);
     this.ultraGroupBox3.Controls.Add(this.label8);
     this.ultraGroupBox3.Controls.Add(this.tbSi);
     this.ultraGroupBox3.Controls.Add(this.label2);
     this.ultraGroupBox3.Controls.Add(this.tbC);
     this.ultraGroupBox3.Controls.Add(this.txtStoveNo);
     this.ultraGroupBox3.Controls.Add(this.label1);
     this.ultraGroupBox3.Controls.Add(this.label5);
     this.ultraGroupBox3.Controls.Add(this.txtCardNo);
     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(990, 137);
     this.ultraGroupBox3.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // tbAdviseSpec
     //
     this.coreBind.SetDatabasecommand(this.tbAdviseSpec, null);
     this.tbAdviseSpec.Location = new System.Drawing.Point(766, 92);
     this.tbAdviseSpec.Name = "tbAdviseSpec";
     this.tbAdviseSpec.Size = new System.Drawing.Size(100, 21);
     this.tbAdviseSpec.TabIndex = 814;
     this.coreBind.SetVerification(this.tbAdviseSpec, null);
     //
     // 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(677, 100);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(83, 12);
     this.label4.TabIndex = 813;
     this.label4.Text = "�������ƹ��:";
     this.coreBind.SetVerification(this.label4, null);
     //
     // txtLength
     //
     this.txtLength.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.txtLength, null);
     this.txtLength.Location = new System.Drawing.Point(766, 27);
     this.txtLength.Name = "txtLength";
     this.txtLength.Size = new System.Drawing.Size(100, 21);
     this.txtLength.TabIndex = 812;
     this.coreBind.SetVerification(this.txtLength, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(725, 36);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(35, 12);
     this.label7.TabIndex = 811;
     this.label7.Text = "����:";
     this.coreBind.SetVerification(this.label7, null);
     //
     // txtSpec
     //
     this.txtSpec.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.txtSpec, null);
     this.txtSpec.Location = new System.Drawing.Point(591, 27);
     this.txtSpec.Name = "txtSpec";
     this.txtSpec.Size = new System.Drawing.Size(100, 21);
     this.txtSpec.TabIndex = 810;
     this.coreBind.SetVerification(this.txtSpec, null);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Location = new System.Drawing.Point(550, 36);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(35, 12);
     this.label6.TabIndex = 809;
     this.label6.Text = "���:";
     this.coreBind.SetVerification(this.label6, null);
     //
     // txtSteelType
     //
     this.coreBind.SetDatabasecommand(this.txtSteelType, null);
     this.txtSteelType.Location = new System.Drawing.Point(419, 27);
     this.txtSteelType.Name = "txtSteelType";
     this.txtSteelType.Size = new System.Drawing.Size(100, 21);
     this.txtSteelType.TabIndex = 808;
     this.coreBind.SetVerification(this.txtSteelType, null);
     //
     // LabSteelType
     //
     this.LabSteelType.AutoSize = true;
     this.LabSteelType.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.LabSteelType, null);
     this.LabSteelType.Location = new System.Drawing.Point(378, 36);
     this.LabSteelType.Name = "LabSteelType";
     this.LabSteelType.Size = new System.Drawing.Size(35, 12);
     this.LabSteelType.TabIndex = 807;
     this.LabSteelType.Text = "����:";
     this.coreBind.SetVerification(this.LabSteelType, null);
     //
     // tbAs
     //
     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(585, 91);
     this.tbAs.Name = "tbAs";
     this.tbAs.Size = new System.Drawing.Size(44, 21);
     this.tbAs.TabIndex = 806;
     this.tbAs.Text = "0";
     this.tbAs.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbAs, null);
     //
     // 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(46, 91);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(59, 12);
     this.label3.TabIndex = 805;
     this.label3.Text = "��ѧ�ɷ�:";
     this.coreBind.SetVerification(this.label3, null);
     //
     // cbEditQuanified
     //
     this.cbEditQuanified.AutoSize = true;
     this.cbEditQuanified.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.cbEditQuanified, null);
     this.cbEditQuanified.Location = new System.Drawing.Point(892, 99);
     this.cbEditQuanified.Name = "cbEditQuanified";
     this.cbEditQuanified.Size = new System.Drawing.Size(48, 16);
     this.cbEditQuanified.TabIndex = 804;
     this.cbEditQuanified.Text = "�ϸ�";
     this.cbEditQuanified.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbEditQuanified, 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(585, 69);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(44, 22);
     this.label28.TabIndex = 803;
     this.label28.Text = "As";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label28, 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(627, 69);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(44, 22);
     this.label18.TabIndex = 801;
     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(627, 91);
     this.tbCeq.Name = "tbCeq";
     this.tbCeq.Size = new System.Drawing.Size(44, 21);
     this.tbCeq.TabIndex = 800;
     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(541, 69);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(44, 22);
     this.label17.TabIndex = 799;
     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(541, 91);
     this.tbNb.Name = "tbNb";
     this.tbNb.Size = new System.Drawing.Size(44, 21);
     this.tbNb.TabIndex = 798;
     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(498, 69);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(44, 22);
     this.label16.TabIndex = 797;
     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(498, 91);
     this.tbMo.Name = "tbMo";
     this.tbMo.Size = new System.Drawing.Size(44, 21);
     this.tbMo.TabIndex = 796;
     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(455, 69);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(44, 22);
     this.label15.TabIndex = 795;
     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(455, 91);
     this.tbV.Name = "tbV";
     this.tbV.Size = new System.Drawing.Size(44, 21);
     this.tbV.TabIndex = 794;
     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(412, 69);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(44, 22);
     this.label14.TabIndex = 793;
     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(412, 91);
     this.tbCu.Name = "tbCu";
     this.tbCu.Size = new System.Drawing.Size(44, 21);
     this.tbCu.TabIndex = 792;
     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(369, 69);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(44, 22);
     this.label13.TabIndex = 791;
     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(369, 91);
     this.tbCr.Name = "tbCr";
     this.tbCr.Size = new System.Drawing.Size(44, 21);
     this.tbCr.TabIndex = 790;
     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(326, 69);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 22);
     this.label12.TabIndex = 789;
     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(326, 91);
     this.tbNi.Name = "tbNi";
     this.tbNi.Size = new System.Drawing.Size(44, 21);
     this.tbNi.TabIndex = 788;
     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(283, 69);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(44, 22);
     this.label11.TabIndex = 787;
     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(283, 91);
     this.tbP.Name = "tbP";
     this.tbP.Size = new System.Drawing.Size(44, 21);
     this.tbP.TabIndex = 786;
     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(240, 69);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(44, 22);
     this.label10.TabIndex = 785;
     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(240, 91);
     this.tbS.Name = "tbS";
     this.tbS.Size = new System.Drawing.Size(44, 21);
     this.tbS.TabIndex = 784;
     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(197, 69);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(44, 22);
     this.label9.TabIndex = 783;
     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(197, 91);
     this.tbMn.Name = "tbMn";
     this.tbMn.Size = new System.Drawing.Size(44, 21);
     this.tbMn.TabIndex = 782;
     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(154, 69);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(44, 22);
     this.label8.TabIndex = 781;
     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(154, 91);
     this.tbSi.Name = "tbSi";
     this.tbSi.Size = new System.Drawing.Size(44, 21);
     this.tbSi.TabIndex = 780;
     this.tbSi.Text = "0";
     this.tbSi.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbSi, null);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(111, 69);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(44, 22);
     this.label2.TabIndex = 779;
     this.label2.Text = "C";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label2, 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(111, 91);
     this.tbC.Name = "tbC";
     this.tbC.Size = new System.Drawing.Size(44, 21);
     this.tbC.TabIndex = 778;
     this.tbC.Text = "0";
     this.tbC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.coreBind.SetVerification(this.tbC, null);
     //
     // txtStoveNo
     //
     this.txtStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.txtStoveNo, null);
     this.txtStoveNo.Location = new System.Drawing.Point(262, 27);
     this.txtStoveNo.Name = "txtStoveNo";
     this.txtStoveNo.ReadOnly = true;
     this.txtStoveNo.Size = new System.Drawing.Size(100, 21);
     this.txtStoveNo.TabIndex = 31;
     this.coreBind.SetVerification(this.txtStoveNo, 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(221, 36);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 12);
     this.label1.TabIndex = 30;
     this.label1.Text = "¯��:";
     this.coreBind.SetVerification(this.label1, null);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Location = new System.Drawing.Point(22, 36);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(83, 12);
     this.label5.TabIndex = 28;
     this.label5.Text = "������������:";
     this.coreBind.SetVerification(this.label5, null);
     //
     // txtCardNo
     //
     this.txtCardNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.txtCardNo, null);
     this.txtCardNo.Location = new System.Drawing.Point(111, 27);
     this.txtCardNo.Name = "txtCardNo";
     this.txtCardNo.ReadOnly = true;
     this.txtCardNo.Size = new System.Drawing.Size(100, 21);
     this.txtCardNo.TabIndex = 29;
     this.coreBind.SetVerification(this.txtCardNo, null);
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.cbUnquanified);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbQuanified);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(992, 494);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // cbUnquanified
     //
     this.cbUnquanified.AutoSize = true;
     this.cbUnquanified.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.cbUnquanified, null);
     this.cbUnquanified.Location = new System.Drawing.Point(533, 6);
     this.cbUnquanified.Name = "cbUnquanified";
     this.cbUnquanified.Size = new System.Drawing.Size(60, 16);
     this.cbUnquanified.TabIndex = 2;
     this.cbUnquanified.Text = "���ϸ�";
     this.cbUnquanified.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbUnquanified, null);
     //
     // 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(375, 4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(101, 21);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // cbQuanified
     //
     this.cbQuanified.AutoSize = true;
     this.cbQuanified.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.cbQuanified, null);
     this.cbQuanified.Location = new System.Drawing.Point(482, 6);
     this.cbQuanified.Name = "cbQuanified";
     this.cbQuanified.Size = new System.Drawing.Size(48, 16);
     this.cbQuanified.TabIndex = 1;
     this.cbQuanified.Text = "�ϸ�";
     this.cbQuanified.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbQuanified, 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";
     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(224, 3);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(117, 21);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // 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";
     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(81, 4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(121, 21);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(11, 7);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(15, 14);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     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, 28);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 466);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Controls.Add(this.llb_CloseAll);
     this.ultraGroupBox1.Controls.Add(this.llb_ExpandAll);
     this.ultraGroupBox1.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 466);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "��ѯ����";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(73, 0);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
     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(41, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     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(40, 0);
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     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(41, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     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(38, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     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(42, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     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(36, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     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(31, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     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(38, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     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(37, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(37, 0);
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(39, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(39, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(42, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 4;
     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});
     ultraGridGroup1.Header.Caption = "��ѧ�ɷ�";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 12;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 26;
     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;
     appearance116.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance116;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance117.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance117;
     appearance25.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance25;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance118.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance118.TextHAlignAsString = "Center";
     appearance118.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance118;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance119.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance119;
     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;
     appearance120.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance120.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance120.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance120.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance120;
     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("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 24);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(986, 439);
     this.ultraGrid1.TabIndex = 0;
     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});
     //
     // 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.dataColumn55,
     this.dataColumn61,
     this.dataColumn19,
     this.dataColumn20});
     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";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "AS";
     this.dataColumn55.ColumnName = "FN_GP_AS";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "�ϸ�";
     this.dataColumn61.ColumnName = "FS_UNQUALIFIED1";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "�Ƿ�ϸ�";
     this.dataColumn19.ColumnName = "FS_UNQUALIFIED2";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "�������ƹ��";
     this.dataColumn20.ColumnName = "FS_ADVISESPEC";
     //
     // llb_CloseAll
     //
     this.llb_CloseAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_CloseAll, null);
     this.llb_CloseAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_CloseAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.Location = new System.Drawing.Point(700, 4);
     this.llb_CloseAll.Name = "llb_CloseAll";
     this.llb_CloseAll.Size = new System.Drawing.Size(56, 14);
     this.llb_CloseAll.TabIndex = 0;
     this.llb_CloseAll.TabStop = true;
     this.llb_CloseAll.Text = "ȫ������";
     this.llb_CloseAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_CloseAll, null);
     this.llb_CloseAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     //
     // llb_ExpandAll
     //
     this.llb_ExpandAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_ExpandAll, null);
     this.llb_ExpandAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_ExpandAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.Location = new System.Drawing.Point(626, 4);
     this.llb_ExpandAll.Name = "llb_ExpandAll";
     this.llb_ExpandAll.Size = new System.Drawing.Size(56, 14);
     this.llb_ExpandAll.TabIndex = 0;
     this.llb_ExpandAll.TabStop = true;
     this.llb_ExpandAll.Text = "ȫ��չ��";
     this.llb_ExpandAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_ExpandAll, null);
     this.llb_ExpandAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     //
     // 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(794, 2);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 0;
     this.cbx_Filter.Text = "����";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 466);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(379, 392);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(887, 24);
     controlContainerTool21.ControlName = "cbxDateTime";
     controlContainerTool21.InstanceProps.IsFirstInGroup = true;
     controlContainerTool21.InstanceProps.Width = 33;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.InstanceProps.Width = 168;
     controlContainerTool1.ControlName = "dateTimePicker2";
     controlContainerTool1.InstanceProps.Width = 139;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool2.ControlName = "cbQuanified";
     controlContainerTool2.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.ControlName = "cbUnquanified";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool21,
     controlContainerTool22,
     controlContainerTool1,
     controlContainerTool24,
     controlContainerTool2,
     controlContainerTool3,
     buttonTool1,
     buttonTool2,
     buttonTool3});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     appearance76.Image = ((object)(resources.GetObject("appearance76.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance76;
     buttonTool6.SharedPropsInternal.Caption = "��ѯ";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.ControlName = "cbxDateTime";
     controlContainerTool16.SharedPropsInternal.Caption = " ";
     controlContainerTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool16.SharedPropsInternal.Width = 33;
     controlContainerTool18.ControlName = "dateTimePicker1";
     controlContainerTool18.SharedPropsInternal.Caption = "ʱ���";
     controlContainerTool18.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool18.SharedPropsInternal.Width = 168;
     controlContainerTool19.ControlName = "dateTimePicker2";
     controlContainerTool19.SharedPropsInternal.Caption = "��";
     controlContainerTool19.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool19.SharedPropsInternal.Width = 139;
     controlContainerTool20.ControlName = "tbQueryStoveNo";
     controlContainerTool20.SharedPropsInternal.Caption = "¯��";
     controlContainerTool20.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.ControlName = "cbQuanified";
     controlContainerTool4.SharedPropsInternal.Caption = "�ϸ�";
     controlContainerTool5.ControlName = "cbUnquanified";
     controlContainerTool5.SharedPropsInternal.Caption = "���ϸ�";
     appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance11;
     buttonTool4.SharedPropsInternal.Caption = "��ȡ";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance12.Image = ((object)(resources.GetObject("appearance12.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
     buttonTool5.SharedPropsInternal.Caption = "�޸�";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool6,
     controlContainerTool16,
     controlContainerTool18,
     controlContainerTool19,
     controlContainerTool20,
     controlContainerTool4,
     controlContainerTool5,
     buttonTool4,
     buttonTool5});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 466);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 494);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraTabControl1);
     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, 494);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(992, 160);
     this.ultraPanel1.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraTabControl1
     //
     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(992, 160);
     this.ultraTabControl1.TabIndex = 1;
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text = "���ݱ༭";
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab1});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     //
     // 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(990, 137);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // ultraToolbarsDockArea1
     //
     this.ultraToolbarsDockArea1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea1, null);
     this.ultraToolbarsDockArea1.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this.ultraToolbarsDockArea1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea1.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea1.Name = "ultraToolbarsDockArea1";
     this.ultraToolbarsDockArea1.Size = new System.Drawing.Size(992, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea1, null);
     //
     // ultraToolbarsDockArea2
     //
     this.ultraToolbarsDockArea2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea2, null);
     this.ultraToolbarsDockArea2.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this.ultraToolbarsDockArea2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea2.Location = new System.Drawing.Point(0, 654);
     this.ultraToolbarsDockArea2.Name = "ultraToolbarsDockArea2";
     this.ultraToolbarsDockArea2.Size = new System.Drawing.Size(992, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea2, null);
     //
     // ultraToolbarsDockArea3
     //
     this.ultraToolbarsDockArea3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea3, null);
     this.ultraToolbarsDockArea3.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this.ultraToolbarsDockArea3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea3.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea3.Name = "ultraToolbarsDockArea3";
     this.ultraToolbarsDockArea3.Size = new System.Drawing.Size(0, 654);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea3, null);
     //
     // ultraToolbarsDockArea4
     //
     this.ultraToolbarsDockArea4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea4, null);
     this.ultraToolbarsDockArea4.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this.ultraToolbarsDockArea4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea4.Location = new System.Drawing.Point(992, 0);
     this.ultraToolbarsDockArea4.Name = "ultraToolbarsDockArea4";
     this.ultraToolbarsDockArea4.Size = new System.Drawing.Size(0, 654);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea4, null);
     //
     // ReExamine
     //
     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.FrmBase_Fill_Panel);
     this.Controls.Add(this.ultraPanel1);
     this.Controls.Add(this.ultraToolbarsDockArea3);
     this.Controls.Add(this.ultraToolbarsDockArea4);
     this.Controls.Add(this.ultraToolbarsDockArea1);
     this.Controls.Add(this.ultraToolbarsDockArea2);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "ReExamine";
     this.Text = "���������ж�";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.ReExamine_Load);
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     this.ultraGroupBox3.PerformLayout();
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 22
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FMultiGoMO));
     this.txtMoCode       = new UserControl.UCLabelEdit();
     this.dsMo            = new BenQGuru.eMES.Client.Data.dsMo();
     this.panel1          = new System.Windows.Forms.Panel();
     this.bRCardLetterULE = new UserControl.UCLabelEdit();
     this.bRCardLenULE    = new UserControl.UCLabelEdit();
     this.chkNeedMemo     = new System.Windows.Forms.CheckBox();
     this.bntLock         = new UserControl.UCButton();
     this.panel2          = new System.Windows.Forms.Panel();
     this.ucBtnExit       = new UserControl.UCButton();
     this.txtSumNum       = new UserControl.UCLabelEdit();
     this.txtRCard        = new UserControl.UCLabelEdit();
     this.panel3          = new System.Windows.Forms.Panel();
     this.grdMoList       = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ucMessage       = new UserControl.UCMessage();
     this.panel4          = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.dsMo)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdMoList)).BeginInit();
     this.panel4.SuspendLayout();
     this.SuspendLayout();
     //
     // txtMoCode
     //
     this.txtMoCode.AllowEditOnlyChecked = true;
     this.txtMoCode.Caption         = "工单";
     this.txtMoCode.Checked         = false;
     this.txtMoCode.EditType        = UserControl.EditTypes.String;
     this.txtMoCode.Location        = new System.Drawing.Point(25, 16);
     this.txtMoCode.MaxLength       = 80;
     this.txtMoCode.Multiline       = false;
     this.txtMoCode.Name            = "txtMoCode";
     this.txtMoCode.PasswordChar    = '\0';
     this.txtMoCode.ReadOnly        = false;
     this.txtMoCode.ShowCheckBox    = false;
     this.txtMoCode.Size            = new System.Drawing.Size(525, 24);
     this.txtMoCode.TabIndex        = 1;
     this.txtMoCode.TabNext         = false;
     this.txtMoCode.Value           = "";
     this.txtMoCode.WidthType       = UserControl.WidthTypes.TooLong;
     this.txtMoCode.XAlign          = 69;
     this.txtMoCode.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMoCode_TxtboxKeyPress);
     //
     // dsMo
     //
     this.dsMo.DataSetName = "dsMo";
     this.dsMo.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // panel1
     //
     this.panel1.Controls.Add(this.bRCardLetterULE);
     this.panel1.Controls.Add(this.bRCardLenULE);
     this.panel1.Controls.Add(this.chkNeedMemo);
     this.panel1.Controls.Add(this.bntLock);
     this.panel1.Controls.Add(this.txtMoCode);
     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(752, 80);
     this.panel1.TabIndex = 9;
     //
     // bRCardLetterULE
     //
     this.bRCardLetterULE.AllowEditOnlyChecked = true;
     this.bRCardLetterULE.Caption      = "产品序列号首字符检查";
     this.bRCardLetterULE.Checked      = false;
     this.bRCardLetterULE.EditType     = UserControl.EditTypes.String;
     this.bRCardLetterULE.Location     = new System.Drawing.Point(346, 46);
     this.bRCardLetterULE.MaxLength    = 40;
     this.bRCardLetterULE.Multiline    = false;
     this.bRCardLetterULE.Name         = "bRCardLetterULE";
     this.bRCardLetterULE.PasswordChar = '\0';
     this.bRCardLetterULE.ReadOnly     = false;
     this.bRCardLetterULE.ShowCheckBox = true;
     this.bRCardLetterULE.Size         = new System.Drawing.Size(339, 24);
     this.bRCardLetterULE.TabIndex     = 24;
     this.bRCardLetterULE.TabNext      = false;
     this.bRCardLetterULE.Value        = "";
     this.bRCardLetterULE.WidthType    = UserControl.WidthTypes.Normal;
     this.bRCardLetterULE.XAlign       = 525;
     //
     // bRCardLenULE
     //
     this.bRCardLenULE.AllowEditOnlyChecked = true;
     this.bRCardLenULE.Caption      = "产品序列号长度检查";
     this.bRCardLenULE.Checked      = false;
     this.bRCardLenULE.EditType     = UserControl.EditTypes.Integer;
     this.bRCardLenULE.Location     = new System.Drawing.Point(16, 48);
     this.bRCardLenULE.MaxLength    = 40;
     this.bRCardLenULE.Multiline    = false;
     this.bRCardLenULE.Name         = "bRCardLenULE";
     this.bRCardLenULE.PasswordChar = '\0';
     this.bRCardLenULE.ReadOnly     = false;
     this.bRCardLenULE.ShowCheckBox = true;
     this.bRCardLenULE.Size         = new System.Drawing.Size(324, 24);
     this.bRCardLenULE.TabIndex     = 23;
     this.bRCardLenULE.TabNext      = false;
     this.bRCardLenULE.Value        = "";
     this.bRCardLenULE.WidthType    = UserControl.WidthTypes.Normal;
     this.bRCardLenULE.XAlign       = 180;
     //
     // chkNeedMemo
     //
     this.chkNeedMemo.Location = new System.Drawing.Point(648, 16);
     this.chkNeedMemo.Name     = "chkNeedMemo";
     this.chkNeedMemo.Size     = new System.Drawing.Size(104, 24);
     this.chkNeedMemo.TabIndex = 13;
     this.chkNeedMemo.Text     = "备注";
     //
     // bntLock
     //
     this.bntLock.BackColor       = System.Drawing.SystemColors.Control;
     this.bntLock.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bntLock.BackgroundImage")));
     this.bntLock.ButtonType      = UserControl.ButtonTypes.None;
     this.bntLock.Caption         = "锁定";
     this.bntLock.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.bntLock.Location        = new System.Drawing.Point(552, 16);
     this.bntLock.Name            = "bntLock";
     this.bntLock.Size            = new System.Drawing.Size(88, 22);
     this.bntLock.TabIndex        = 12;
     this.bntLock.TabStop         = false;
     this.bntLock.Click          += new System.EventHandler(this.bntLock_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.ucBtnExit);
     this.panel2.Controls.Add(this.txtSumNum);
     this.panel2.Controls.Add(this.txtRCard);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 444);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(752, 49);
     this.panel2.TabIndex = 10;
     //
     // ucBtnExit
     //
     this.ucBtnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.ucBtnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucBtnExit.BackgroundImage")));
     this.ucBtnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.ucBtnExit.Caption         = "退出";
     this.ucBtnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucBtnExit.Location        = new System.Drawing.Point(597, 16);
     this.ucBtnExit.Name            = "ucBtnExit";
     this.ucBtnExit.Size            = new System.Drawing.Size(88, 22);
     this.ucBtnExit.TabIndex        = 5;
     //
     // txtSumNum
     //
     this.txtSumNum.AllowEditOnlyChecked = true;
     this.txtSumNum.Caption      = "已采集数量";
     this.txtSumNum.Checked      = false;
     this.txtSumNum.EditType     = UserControl.EditTypes.String;
     this.txtSumNum.Location     = new System.Drawing.Point(335, 16);
     this.txtSumNum.MaxLength    = 40;
     this.txtSumNum.Multiline    = false;
     this.txtSumNum.Name         = "txtSumNum";
     this.txtSumNum.PasswordChar = '\0';
     this.txtSumNum.ReadOnly     = true;
     this.txtSumNum.ShowCheckBox = false;
     this.txtSumNum.Size         = new System.Drawing.Size(247, 24);
     this.txtSumNum.TabIndex     = 3;
     this.txtSumNum.TabNext      = false;
     this.txtSumNum.Value        = "0";
     this.txtSumNum.WidthType    = UserControl.WidthTypes.Normal;
     this.txtSumNum.XAlign       = 423;
     //
     // txtRCard
     //
     this.txtRCard.AllowEditOnlyChecked = true;
     this.txtRCard.Caption         = "输入框";
     this.txtRCard.Checked         = false;
     this.txtRCard.EditType        = UserControl.EditTypes.String;
     this.txtRCard.Location        = new System.Drawing.Point(31, 16);
     this.txtRCard.MaxLength       = 40;
     this.txtRCard.Multiline       = false;
     this.txtRCard.Name            = "txtRCard";
     this.txtRCard.PasswordChar    = '\0';
     this.txtRCard.ReadOnly        = false;
     this.txtRCard.ShowCheckBox    = false;
     this.txtRCard.Size            = new System.Drawing.Size(299, 24);
     this.txtRCard.TabIndex        = 2;
     this.txtRCard.TabNext         = false;
     this.txtRCard.Value           = "";
     this.txtRCard.WidthType       = UserControl.WidthTypes.Long;
     this.txtRCard.XAlign          = 90;
     this.txtRCard.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRCard_TxtboxKeyPress);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.grdMoList);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 80);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(752, 208);
     this.panel3.TabIndex = 11;
     //
     // grdMoList
     //
     this.grdMoList.Cursor     = System.Windows.Forms.Cursors.Default;
     this.grdMoList.DataSource = this.dsMo.MultiMo;
     this.grdMoList.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.grdMoList.Font       = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.grdMoList.Location   = new System.Drawing.Point(0, 0);
     this.grdMoList.Name       = "grdMoList";
     this.grdMoList.Size       = new System.Drawing.Size(752, 208);
     this.grdMoList.TabIndex   = 12;
     //
     // ucMessage
     //
     this.ucMessage.BackColor     = System.Drawing.Color.Gainsboro;
     this.ucMessage.ButtonVisible = false;
     this.ucMessage.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.ucMessage.Location      = new System.Drawing.Point(0, 0);
     this.ucMessage.Name          = "ucMessage";
     this.ucMessage.Size          = new System.Drawing.Size(752, 156);
     this.ucMessage.TabIndex      = 3;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ucMessage);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 288);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(752, 156);
     this.panel4.TabIndex = 12;
     //
     // FMultiGoMO
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(752, 493);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.ImeMode = System.Windows.Forms.ImeMode.On;
     this.Name    = "FMultiGoMO";
     this.Text    = "多工单归属";
     this.Closed += new System.EventHandler(this.FMultiGoMO_Closed);
     ((System.ComponentModel.ISupportInitialize)(this.dsMo)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdMoList)).EndInit();
     this.panel4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 23
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 appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ұ��");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SMELTDATE");
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��ѧ�ɷ֣�%��");
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�ϸ�Ʒ");
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DJH");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_OPERATOR");
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_MEMO");
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZZ_DATE");
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_MEMO");
     Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FREEZED");
     Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKED");
     Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKED");
     Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LL_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_FLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_BEGINED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_END");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_QUALIFIED_WEIGHT");
     Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_UNQUALIFIED_WEIGHT");
     Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_QUALIFIED_RATE");
     Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_QUALIFIED_TRATE");
     Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_GP_STOVENO", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_GP_STOVENO", 3, true);
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GP_TOTALCOUNT", 18, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GP_TOTALCOUNT", 18, true);
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_JJ_WEIGHT", 21, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_JJ_WEIGHT", 21, true);
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GPYS_NUMBER", 27, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GPYS_NUMBER", 27, true);
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings5 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_ZC_ENTERNUMBER", 33, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_ZC_ENTERNUMBER", 33, true);
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_ZZ_NUM", 42, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_ZZ_NUM", 42, true);
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings7 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_ZZ_WASTNUM", 43, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_ZZ_WASTNUM", 43, true);
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance163 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance164 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance165 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance166 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance167 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     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(frmCardInfo));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.Appearance appearance177 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ����");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.pnl_Type = new System.Windows.Forms.Panel();
     this.rbtn_StoveNo = new System.Windows.Forms.RadioButton();
     this.rbtn_BatchNo = new System.Windows.Forms.RadioButton();
     this.tbBatchNoTo = new System.Windows.Forms.TextBox();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.lbl_InFurnance = new System.Windows.Forms.Label();
     this.lbl_Mark = new System.Windows.Forms.Label();
     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.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.dataColumn18 = 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.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = 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.cbx_Filter = new System.Windows.Forms.CheckBox();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.pnl_Type.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.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.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.pnl_Type);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbBatchNoTo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(992, 354);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // pnl_Type
     //
     this.pnl_Type.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.pnl_Type.Controls.Add(this.rbtn_StoveNo);
     this.pnl_Type.Controls.Add(this.rbtn_BatchNo);
     this.coreBind.SetDatabasecommand(this.pnl_Type, null);
     this.pnl_Type.Location = new System.Drawing.Point(383, 2);
     this.pnl_Type.Name = "pnl_Type";
     this.pnl_Type.Size = new System.Drawing.Size(130, 23);
     this.pnl_Type.TabIndex = 0;
     this.coreBind.SetVerification(this.pnl_Type, null);
     //
     // rbtn_StoveNo
     //
     this.rbtn_StoveNo.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.rbtn_StoveNo, null);
     this.rbtn_StoveNo.Location = new System.Drawing.Point(79, 3);
     this.rbtn_StoveNo.Name = "rbtn_StoveNo";
     this.rbtn_StoveNo.Size = new System.Drawing.Size(47, 16);
     this.rbtn_StoveNo.TabIndex = 0;
     this.rbtn_StoveNo.Text = "¯��";
     this.rbtn_StoveNo.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.rbtn_StoveNo, null);
     //
     // rbtn_BatchNo
     //
     this.rbtn_BatchNo.AutoSize = true;
     this.rbtn_BatchNo.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtn_BatchNo, null);
     this.rbtn_BatchNo.Location = new System.Drawing.Point(5, 3);
     this.rbtn_BatchNo.Name = "rbtn_BatchNo";
     this.rbtn_BatchNo.Size = new System.Drawing.Size(71, 16);
     this.rbtn_BatchNo.TabIndex = 0;
     this.rbtn_BatchNo.TabStop = true;
     this.rbtn_BatchNo.Text = "���Ʊ��";
     this.rbtn_BatchNo.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.rbtn_BatchNo, null);
     //
     // tbBatchNoTo
     //
     this.tbBatchNoTo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbBatchNoTo, null);
     this.tbBatchNoTo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbBatchNoTo.Location = new System.Drawing.Point(621, 3);
     this.tbBatchNoTo.MaxLength = 12;
     this.tbBatchNoTo.Name = "tbBatchNoTo";
     this.tbBatchNoTo.Size = new System.Drawing.Size(80, 21);
     this.tbBatchNoTo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbBatchNoTo, null);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(519, 3);
     this.tbQueryBatchNo.MaxLength = 12;
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(80, 21);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // 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";
     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(85, 3);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(135, 21);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, 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";
     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(241, 3);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(135, 21);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(11, 7);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(15, 14);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     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, 28);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 326);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.lbl_InFurnance);
     this.ultraGroupBox2.Controls.Add(this.lbl_Mark);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(992, 326);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "��������������";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // lbl_InFurnance
     //
     this.lbl_InFurnance.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_InFurnance, null);
     this.lbl_InFurnance.ForeColor = System.Drawing.Color.Red;
     this.lbl_InFurnance.Location = new System.Drawing.Point(558, 4);
     this.lbl_InFurnance.Name = "lbl_InFurnance";
     this.lbl_InFurnance.Size = new System.Drawing.Size(128, 14);
     this.lbl_InFurnance.TabIndex = 0;
     this.lbl_InFurnance.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_InFurnance, null);
     this.lbl_InFurnance.Visible = false;
     //
     // lbl_Mark
     //
     this.lbl_Mark.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_Mark, null);
     this.lbl_Mark.ForeColor = System.Drawing.Color.Blue;
     this.lbl_Mark.Location = new System.Drawing.Point(698, 4);
     this.lbl_Mark.Name = "lbl_Mark";
     this.lbl_Mark.Size = new System.Drawing.Size(128, 14);
     this.lbl_Mark.TabIndex = 0;
     this.lbl_Mark.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_Mark, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance1.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance1;
     ultraGridColumn1.Header.Caption = "������������";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 60;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance2.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance2;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(1011, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 29;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance3.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance3;
     ultraGridColumn3.Header.Caption = "ұ������";
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance4.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance4;
     ultraGridColumn4.Header.Caption = "¯��";
     ultraGridColumn4.Header.VisiblePosition = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance5.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance5;
     ultraGridColumn5.Header.Caption = "�ƺ�";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance6.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance6;
     ultraGridColumn6.Header.Caption = "���";
     ultraGridColumn6.Header.VisiblePosition = 35;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance7.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance7;
     ultraGridColumn7.Header.VisiblePosition = 7;
     ultraGridColumn7.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(626, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 22;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance8.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance8;
     ultraGridColumn8.Header.Caption = "C";
     ultraGridColumn8.Header.VisiblePosition = 14;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(34, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance9.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance9;
     ultraGridColumn9.Header.Caption = "Si";
     ultraGridColumn9.Header.VisiblePosition = 15;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(34, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance10.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance10;
     ultraGridColumn10.Header.Caption = "Mn";
     ultraGridColumn10.Header.VisiblePosition = 16;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(35, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance11.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance11;
     ultraGridColumn11.Header.Caption = "S";
     ultraGridColumn11.Header.VisiblePosition = 17;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(33, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance12.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance12;
     ultraGridColumn12.Header.Caption = "P";
     ultraGridColumn12.Header.VisiblePosition = 18;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(34, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance13.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance13;
     ultraGridColumn13.Header.Caption = "Ni";
     ultraGridColumn13.Header.VisiblePosition = 19;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(37, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance14.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance14;
     ultraGridColumn14.Header.Caption = "Cr";
     ultraGridColumn14.Header.VisiblePosition = 21;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 25;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(34, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance15.TextVAlignAsString = "Middle";
     ultraGridColumn15.CellAppearance = appearance15;
     ultraGridColumn15.Header.Caption = "Cu";
     ultraGridColumn15.Header.VisiblePosition = 22;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(35, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance16.TextVAlignAsString = "Middle";
     ultraGridColumn16.CellAppearance = appearance16;
     ultraGridColumn16.Header.Caption = "V";
     ultraGridColumn16.Header.VisiblePosition = 23;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(32, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance17.TextVAlignAsString = "Middle";
     ultraGridColumn17.CellAppearance = appearance17;
     ultraGridColumn17.Header.Caption = "Mo";
     ultraGridColumn17.Header.VisiblePosition = 24;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance18.TextVAlignAsString = "Middle";
     ultraGridColumn18.CellAppearance = appearance18;
     ultraGridColumn18.Header.Caption = "Ceq";
     ultraGridColumn18.Header.VisiblePosition = 25;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(43, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance19.TextVAlignAsString = "Middle";
     ultraGridColumn19.CellAppearance = appearance19;
     ultraGridColumn19.Header.Caption = "������";
     ultraGridColumn19.Header.VisiblePosition = 6;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance20.TextVAlignAsString = "Middle";
     ultraGridColumn20.CellAppearance = appearance20;
     ultraGridColumn20.Header.VisiblePosition = 20;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance21.TextVAlignAsString = "Middle";
     ultraGridColumn21.CellAppearance = appearance21;
     ultraGridColumn21.Header.Caption = "��";
     ultraGridColumn21.Header.VisiblePosition = 32;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance22.TextVAlignAsString = "Middle";
     ultraGridColumn22.CellAppearance = appearance22;
     ultraGridColumn22.Header.Caption = "ʵ��";
     ultraGridColumn22.Header.VisiblePosition = 8;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance23.TextVAlignAsString = "Middle";
     ultraGridColumn23.CellAppearance = appearance23;
     ultraGridColumn23.Header.Caption = "��ע";
     ultraGridColumn23.Header.VisiblePosition = 27;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance24.TextVAlignAsString = "Middle";
     ultraGridColumn24.CellAppearance = appearance24;
     ultraGridColumn24.Header.Caption = "�ж�Ա";
     ultraGridColumn24.Header.VisiblePosition = 29;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 39;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance25.TextVAlignAsString = "Middle";
     ultraGridColumn25.CellAppearance = appearance25;
     ultraGridColumn25.Header.Caption = "�ж�ʱ��";
     ultraGridColumn25.Header.VisiblePosition = 30;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance26.TextVAlignAsString = "Middle";
     ultraGridColumn26.CellAppearance = appearance26;
     ultraGridColumn26.Header.VisiblePosition = 26;
     ultraGridColumn26.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 39;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(1413, 0);
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 20;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance27.TextVAlignAsString = "Middle";
     ultraGridColumn27.CellAppearance = appearance27;
     ultraGridColumn27.Header.VisiblePosition = 28;
     ultraGridColumn27.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 5;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance28.TextVAlignAsString = "Middle";
     ultraGridColumn28.CellAppearance = appearance28;
     ultraGridColumn28.Header.Caption = "����";
     ultraGridColumn28.Header.VisiblePosition = 9;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 43;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance29.TextVAlignAsString = "Middle";
     ultraGridColumn29.CellAppearance = appearance29;
     ultraGridColumn29.Header.Caption = "���ܺ�";
     ultraGridColumn29.Header.VisiblePosition = 10;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance30.TextVAlignAsString = "Middle";
     ultraGridColumn30.CellAppearance = appearance30;
     ultraGridColumn30.Header.Caption = "����ʱ��";
     ultraGridColumn30.Header.VisiblePosition = 12;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 45;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance31.TextVAlignAsString = "Middle";
     ultraGridColumn31.CellAppearance = appearance31;
     ultraGridColumn31.Header.Caption = "������";
     ultraGridColumn31.Header.VisiblePosition = 31;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance32.TextVAlignAsString = "Middle";
     ultraGridColumn32.CellAppearance = appearance32;
     ultraGridColumn32.Header.VisiblePosition = 33;
     ultraGridColumn32.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 47;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance33.TextVAlignAsString = "Middle";
     ultraGridColumn33.CellAppearance = appearance33;
     ultraGridColumn33.Header.Caption = "���Ʊ��";
     ultraGridColumn33.Header.VisiblePosition = 34;
     ultraGridColumn33.MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea.VisibleRect;
     ultraGridColumn33.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameText;
     ultraGridColumn33.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance34.TextVAlignAsString = "Middle";
     ultraGridColumn34.CellAppearance = appearance34;
     ultraGridColumn34.Header.Caption = "��¯";
     ultraGridColumn34.Header.VisiblePosition = 36;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance35.TextVAlignAsString = "Middle";
     ultraGridColumn35.CellAppearance = appearance35;
     ultraGridColumn35.Header.Caption = "��¯ʱ��";
     ultraGridColumn35.Header.VisiblePosition = 37;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 47;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance36.TextVAlignAsString = "Middle";
     ultraGridColumn36.CellAppearance = appearance36;
     ultraGridColumn36.Header.Caption = "������";
     ultraGridColumn36.Header.VisiblePosition = 38;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 48;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance37.TextVAlignAsString = "Middle";
     ultraGridColumn37.CellAppearance = appearance37;
     ultraGridColumn37.Header.Caption = "��ע";
     ultraGridColumn37.Header.VisiblePosition = 39;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 49;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance38.TextVAlignAsString = "Middle";
     ultraGridColumn38.CellAppearance = appearance38;
     ultraGridColumn38.Header.VisiblePosition = 40;
     ultraGridColumn38.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 50;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 7;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance39.TextVAlignAsString = "Middle";
     ultraGridColumn39.CellAppearance = appearance39;
     ultraGridColumn39.Header.Caption = "���ƹ��";
     ultraGridColumn39.Header.VisiblePosition = 41;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance40.TextVAlignAsString = "Middle";
     ultraGridColumn40.CellAppearance = appearance40;
     ultraGridColumn40.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Equals;
     ultraGridColumn40.FilterOperatorDropDownItems = Infragistics.Win.UltraWinGrid.FilterOperatorDropDownItems.Equals;
     ultraGridColumn40.Header.Caption = "���߳���";
     ultraGridColumn40.Header.VisiblePosition = 5;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 50;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance41.TextVAlignAsString = "Middle";
     ultraGridColumn41.CellAppearance = appearance41;
     ultraGridColumn41.Header.Caption = "����ʱ��";
     ultraGridColumn41.Header.VisiblePosition = 42;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 51;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance42.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance42;
     ultraGridColumn42.Header.Caption = "������";
     ultraGridColumn42.Header.VisiblePosition = 43;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 52;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance43.TextVAlignAsString = "Middle";
     ultraGridColumn43.CellAppearance = appearance43;
     ultraGridColumn43.Header.Caption = "�ɲ�";
     ultraGridColumn43.Header.VisiblePosition = 44;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn43.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance44.TextVAlignAsString = "Middle";
     ultraGridColumn44.CellAppearance = appearance44;
     ultraGridColumn44.Header.Caption = "����";
     ultraGridColumn44.Header.VisiblePosition = 45;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance45.TextVAlignAsString = "Middle";
     ultraGridColumn45.CellAppearance = appearance45;
     ultraGridColumn45.Header.Caption = "��ע";
     ultraGridColumn45.Header.VisiblePosition = 46;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 57;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn45.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance46.TextVAlignAsString = "Middle";
     ultraGridColumn46.CellAppearance = appearance46;
     ultraGridColumn46.Header.Caption = "����״̬";
     ultraGridColumn46.Header.VisiblePosition = 13;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 59;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(42, 0);
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 75);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance47.TextVAlignAsString = "Middle";
     ultraGridColumn47.CellAppearance = appearance47;
     ultraGridColumn47.Header.Caption = "״̬";
     ultraGridColumn47.Header.VisiblePosition = 11;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance48.TextVAlignAsString = "Middle";
     ultraGridColumn48.CellAppearance = appearance48;
     ultraGridColumn48.Header.Caption = "ѡ��";
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.Hidden = true;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn48.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn49.Header.Caption = "����";
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.Hidden = true;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance49.TextVAlignAsString = "Middle";
     ultraGridColumn53.CellAppearance = appearance49;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea.VisibleRect;
     ultraGridColumn53.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameText;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 75);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance50.TextVAlignAsString = "Middle";
     ultraGridColumn54.CellAppearance = appearance50;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea.VisibleRect;
     ultraGridColumn54.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameText;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn54.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 75);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance51.TextVAlignAsString = "Middle";
     ultraGridColumn55.CellAppearance = appearance51;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea.VisibleRect;
     ultraGridColumn55.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameText;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn55.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 75);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance52.TextVAlignAsString = "Middle";
     ultraGridColumn56.CellAppearance = appearance52;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea.VisibleRect;
     ultraGridColumn56.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameText;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
     ultraGridColumn56.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 75);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(41, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn58.Header.VisiblePosition = 57;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn59.Header.VisiblePosition = 58;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 33;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.Header.VisiblePosition = 59;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 35;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.Header.VisiblePosition = 60;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(51, 0);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn61.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,
     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});
     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.ColumnLayout;
     summarySettings1.DisplayFormat = "¯����{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance53;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance54;
     summarySettings3.DisplayFormat = "{0}";
     summarySettings3.GroupBySummaryValueAppearance = appearance55;
     summarySettings4.DisplayFormat = "{0}";
     summarySettings4.GroupBySummaryValueAppearance = appearance56;
     summarySettings5.DisplayFormat = "{0}";
     summarySettings5.GroupBySummaryValueAppearance = appearance57;
     summarySettings6.DisplayFormat = "{0}";
     summarySettings6.GroupBySummaryValueAppearance = appearance58;
     summarySettings7.DisplayFormat = "{0}";
     summarySettings7.GroupBySummaryValueAppearance = appearance59;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4,
     summarySettings5,
     summarySettings6,
     summarySettings7});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance163.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance163;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance164.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance164;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance165.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance165.TextHAlignAsString = "Center";
     appearance165.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance165;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance166.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance166;
     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;
     appearance167.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance167.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance167.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance167.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance167;
     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.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     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, 24);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(986, 299);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // 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.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.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn18,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "ұ��";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FD_SMELTDATE";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FS_GP_SPE";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "��ѧ�ɷ֣�%��";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FN_GP_C";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FN_GP_SI";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "FN_GP_MN";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FN_GP_S";
     //
     // dataColumn12
     //
     this.dataColumn12.ColumnName = "FN_GP_P";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FN_GP_NI";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FN_GP_CR";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "FN_GP_CU";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FN_GP_V";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FN_GP_MO";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "�ϸ�Ʒ";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FN_GP_CHECKCOUNT";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_JJ_WEIGHT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "����";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "��������";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_DJH";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FD_GPYS_RECEIVEDATE";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_GPYS_RECEIVER";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "��������";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FD_ZC_ENTERDATETIME";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_ZC_OPERATOR";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FS_ZC_MEMO";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "����";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FN_LENGTH";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FD_ZZ_DATE";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FS_ZZ_OPERATOR";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FN_ZZ_WASTNUM";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FS_ZZ_MEMO";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FS_FREEZED";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FS_CHECKED";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "CHECKED";
     this.dataColumn48.DataType = typeof(bool);
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FN_LL_WEIGHT";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "ȥ��";
     this.dataColumn50.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_DISCHARGE_BEGINED";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FS_DISCHARGE_END";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "���ƺϸ���";
     this.dataColumn53.ColumnName = "FN_ZZ_QUALIFIED_WEIGHT";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "���Ʒ�Ʒ��";
     this.dataColumn54.ColumnName = "FN_ZZ_UNQUALIFIED_WEIGHT";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "����ʵ�ʳɲ���%";
     this.dataColumn55.ColumnName = "FN_ZZ_QUALIFIED_RATE";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "�������۳ɲ���%";
     this.dataColumn56.ColumnName = "FN_ZZ_QUALIFIED_TRATE";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "Nb";
     this.dataColumn57.ColumnName = "FN_GP_NB";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "As";
     this.dataColumn58.ColumnName = "FN_GP_AS";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "Ti";
     this.dataColumn59.ColumnName = "FN_GP_TI";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "Sb";
     this.dataColumn60.ColumnName = "FN_GP_SB";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "Als";
     this.dataColumn61.ColumnName = "FN_GP_ALS";
     //
     // 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(868, 2);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 0;
     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.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 326);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool2.ControlName = "cbxDateTime";
     controlContainerTool2.InstanceProps.Width = 24;
     controlContainerTool6.ControlName = "dateTimePicker1";
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 157;
     controlContainerTool4.ControlName = "pnl_Type";
     controlContainerTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool4.InstanceProps.Width = 130;
     controlContainerTool12.ControlName = "tbQueryBatchNo";
     controlContainerTool12.InstanceProps.IsFirstInGroup = true;
     controlContainerTool12.InstanceProps.Width = 80;
     controlContainerTool7.ControlName = "tbBatchNoTo";
     buttonTool11.InstanceProps.IsFirstInGroup = true;
     buttonTool12.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool2,
     controlContainerTool6,
     controlContainerTool20,
     controlContainerTool4,
     controlContainerTool12,
     controlContainerTool7,
     buttonTool11,
     buttonTool12});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 194;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "��";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 157;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.SharedPropsInternal.Caption = "��";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 24;
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "���Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.DefaultForToolType;
     controlContainerTool10.SharedPropsInternal.Width = 80;
     appearance177.Image = ((object)(resources.GetObject("appearance177.Image")));
     buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance177;
     buttonTool9.SharedPropsInternal.Caption = "����";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool3.ControlName = "pnl_Type";
     controlContainerTool3.SharedPropsInternal.Caption = "���";
     controlContainerTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.DefaultForToolType;
     controlContainerTool3.SharedPropsInternal.Width = 130;
     controlContainerTool5.ControlName = "tbBatchNoTo";
     controlContainerTool5.SharedPropsInternal.Caption = "��";
     controlContainerTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool1,
     controlContainerTool10,
     buttonTool9,
     controlContainerTool3,
     controlContainerTool5});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 326);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 354);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // frmCardInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 354);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.Name = "frmCardInfo";
     this.Text = "������";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.frmCardInfo_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.pnl_Type.ResumeLayout(false);
     this.pnl_Type.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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 appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REEL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRODUCTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BILLETSTATUS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ORDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_COMPLETEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_PLANTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checked");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("fs_transtype");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADVISESPEC");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 606898422);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 606898423);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 606898424);
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_GP_STOVENO", 1, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_GP_STOVENO", 1, true);
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_JJ_WEIGHT", 4, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_JJ_WEIGHT", 4, true);
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool25 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool27 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool29 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     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(frmWeightPlanZKD));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool26 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool28 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool30 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cb_selectAll = new System.Windows.Forms.CheckBox();
     this.lbl_InFurnance = new System.Windows.Forms.Label();
     this.lbl_Mark = new System.Windows.Forms.Label();
     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.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = 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.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = 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.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.bt_AddProdict = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnModify = new System.Windows.Forms.Button();
     this.cbBilletStatus = new System.Windows.Forms.ComboBox();
     this.cbPointID = new System.Windows.Forms.ComboBox();
     this.txtProductNo = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtReel = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.txtSpec = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtSteelType = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtStoveNo = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtBatchNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataColumn19 = new System.Data.DataColumn();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.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.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1015, 654);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(439, 2);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(133, 21);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // 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(636, 4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(108, 21);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(3, 7);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(15, 14);
     this.cbxDateTime.TabIndex = 1;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     //
     // 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";
     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(78, 3);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(140, 21);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, 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";
     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(238, 2);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(140, 21);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     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, 26);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1015, 628);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cb_selectAll);
     this.ultraGroupBox2.Controls.Add(this.lbl_InFurnance);
     this.ultraGroupBox2.Controls.Add(this.lbl_Mark);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1015, 427);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "�п��Ԥ����Ϣ";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // cb_selectAll
     //
     this.cb_selectAll.AutoSize = true;
     this.cb_selectAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cb_selectAll, null);
     this.cb_selectAll.Location = new System.Drawing.Point(109, 6);
     this.cb_selectAll.Name = "cb_selectAll";
     this.cb_selectAll.Size = new System.Drawing.Size(48, 16);
     this.cb_selectAll.TabIndex = 1;
     this.cb_selectAll.Text = "ȫѡ";
     this.cb_selectAll.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cb_selectAll.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cb_selectAll, null);
     this.cb_selectAll.CheckedChanged += new System.EventHandler(this.cb_selectAll_CheckedChanged);
     //
     // lbl_InFurnance
     //
     this.lbl_InFurnance.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_InFurnance, null);
     this.lbl_InFurnance.ForeColor = System.Drawing.Color.Red;
     this.lbl_InFurnance.Location = new System.Drawing.Point(558, 4);
     this.lbl_InFurnance.Name = "lbl_InFurnance";
     this.lbl_InFurnance.Size = new System.Drawing.Size(128, 14);
     this.lbl_InFurnance.TabIndex = 0;
     this.lbl_InFurnance.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_InFurnance, null);
     this.lbl_InFurnance.Visible = false;
     //
     // lbl_Mark
     //
     this.lbl_Mark.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_Mark, null);
     this.lbl_Mark.ForeColor = System.Drawing.Color.Blue;
     this.lbl_Mark.Location = new System.Drawing.Point(698, 4);
     this.lbl_Mark.Name = "lbl_Mark";
     this.lbl_Mark.Size = new System.Drawing.Size(128, 14);
     this.lbl_Mark.TabIndex = 0;
     this.lbl_Mark.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_Mark, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance12.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance12;
     ultraGridColumn1.Header.Caption = "������������";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 18);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance13.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance13;
     ultraGridColumn2.Header.Caption = "¯��";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn2.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 18);
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance14.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance14;
     ultraGridColumn3.Header.Caption = "�ƺ�";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn3.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 18);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance15.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance15;
     ultraGridColumn4.Header.Caption = "���";
     ultraGridColumn4.Header.VisiblePosition = 8;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn4.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 18);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance16.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance16;
     ultraGridColumn5.Header.Caption = "ʵ��";
     ultraGridColumn5.Header.VisiblePosition = 3;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn5.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance17.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance17;
     ultraGridColumn6.Header.Caption = "��ע";
     ultraGridColumn6.Header.VisiblePosition = 4;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 18);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 42);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance18.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance18;
     ultraGridColumn7.Header.Caption = "�ж�Ա";
     ultraGridColumn7.Header.VisiblePosition = 5;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 40);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance19.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance19;
     ultraGridColumn8.Header.Caption = "�ж�ʱ��";
     ultraGridColumn8.Header.VisiblePosition = 6;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance20.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance20;
     ultraGridColumn9.Header.Caption = "���Ʊ��";
     ultraGridColumn9.Header.VisiblePosition = 7;
     ultraGridColumn9.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameValue;
     ultraGridColumn9.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn9.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 18);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(74, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn22.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(123, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.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});
     ultraGridGroup1.Header.Caption = "�������";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 2;
     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 = 7;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup3.Header.Caption = "Ԥ�����";
     ultraGridGroup3.Key = "NewGroup2";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 8;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 18;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2,
     ultraGridGroup3});
     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;
     summarySettings1.DisplayFormat = "¯����{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance21;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance23;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance52.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance52;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance53.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance53;
     appearance54.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance54;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance55.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance55.TextHAlignAsString = "Center";
     appearance55.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance55;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance56.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance56;
     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;
     appearance57.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance57.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance57.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance57;
     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.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 24);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1009, 400);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     this.ultraGrid1.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_CellChange);
     //
     // 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.dataColumn1,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn33,
     this.dataColumn2,
     this.dataColumn3,
     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.dataColumn19});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FS_GP_SPE";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_JJ_WEIGHT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "��¯���";
     this.dataColumn2.ColumnName = "FS_REEL";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "���";
     this.dataColumn3.ColumnName = "FS_SPEC";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "������";
     this.dataColumn7.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "�ɾ�״̬";
     this.dataColumn8.ColumnName = "FS_BILLETSTATUS";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "��������";
     this.dataColumn9.ColumnName = "FS_ORDER";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "���";
     this.dataColumn10.ColumnName = "FS_COMPLETEFLAG";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "����";
     this.dataColumn11.ColumnName = "FN_WEIGHT";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "������";
     this.dataColumn12.ColumnName = "FS_POINT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "Ԥ��ʱ��";
     this.dataColumn13.ColumnName = "FD_PLANTIME";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "Ԥ��Ա";
     this.dataColumn14.ColumnName = "FS_PERSON";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "��¯ʱ��";
     this.dataColumn15.ColumnName = "FD_ZC_ENTERDATETIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "�ƺ�";
     this.dataColumn16.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "ѡ��";
     this.dataColumn17.ColumnName = "checked";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "���ͷ�ʽ";
     this.dataColumn18.ColumnName = "fs_transtype";
     //
     // 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(868, 2);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 0;
     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.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1015, 201);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 427);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1015, 201);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "���ݱ༭����";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.bt_AddProdict);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.btnDelete);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.btnModify);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.cbBilletStatus);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.cbPointID);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txtProductNo);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label5);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label6);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txtReel);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label7);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label8);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txtSpec);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label3);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txtSteelType);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label4);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txtStoveNo);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label2);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txtBatchNo);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 20);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1009, 178);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // bt_AddProdict
     //
     this.coreBind.SetDatabasecommand(this.bt_AddProdict, null);
     this.bt_AddProdict.Location = new System.Drawing.Point(299, 135);
     this.bt_AddProdict.Name = "bt_AddProdict";
     this.bt_AddProdict.Size = new System.Drawing.Size(62, 23);
     this.bt_AddProdict.TabIndex = 21;
     this.bt_AddProdict.Text = "����Ԥ��";
     this.bt_AddProdict.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.bt_AddProdict, null);
     this.bt_AddProdict.Click += new System.EventHandler(this.bt_AddProdict_Click);
     //
     // btnDelete
     //
     this.coreBind.SetDatabasecommand(this.btnDelete, null);
     this.btnDelete.Location = new System.Drawing.Point(525, 135);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(62, 23);
     this.btnDelete.TabIndex = 20;
     this.btnDelete.Text = "ɾ��Ԥ��";
     this.btnDelete.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDelete, null);
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnModify
     //
     this.coreBind.SetDatabasecommand(this.btnModify, null);
     this.btnModify.Location = new System.Drawing.Point(414, 135);
     this.btnModify.Name = "btnModify";
     this.btnModify.Size = new System.Drawing.Size(62, 23);
     this.btnModify.TabIndex = 19;
     this.btnModify.Text = "�޸�Ԥ��";
     this.btnModify.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnModify, null);
     this.btnModify.Click += new System.EventHandler(this.btnModify_Click);
     //
     // cbBilletStatus
     //
     this.coreBind.SetDatabasecommand(this.cbBilletStatus, null);
     this.cbBilletStatus.FormattingEnabled = true;
     this.cbBilletStatus.Location = new System.Drawing.Point(567, 72);
     this.cbBilletStatus.Name = "cbBilletStatus";
     this.cbBilletStatus.Size = new System.Drawing.Size(102, 20);
     this.cbBilletStatus.TabIndex = 17;
     this.coreBind.SetVerification(this.cbBilletStatus, null);
     this.cbBilletStatus.SelectedIndexChanged += new System.EventHandler(this.cbBilletStatus_SelectedIndexChanged);
     //
     // cbPointID
     //
     this.coreBind.SetDatabasecommand(this.cbPointID, null);
     this.cbPointID.FormattingEnabled = true;
     this.cbPointID.Location = new System.Drawing.Point(95, 71);
     this.cbPointID.Name = "cbPointID";
     this.cbPointID.Size = new System.Drawing.Size(102, 20);
     this.cbPointID.TabIndex = 16;
     this.coreBind.SetVerification(this.cbPointID, null);
     //
     // txtProductNo
     //
     this.coreBind.SetDatabasecommand(this.txtProductNo, null);
     this.txtProductNo.Location = new System.Drawing.Point(801, 71);
     this.txtProductNo.Name = "txtProductNo";
     this.txtProductNo.Size = new System.Drawing.Size(100, 21);
     this.txtProductNo.TabIndex = 15;
     this.coreBind.SetVerification(this.txtProductNo, null);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Location = new System.Drawing.Point(743, 80);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(41, 12);
     this.label5.TabIndex = 14;
     this.label5.Text = "������";
     this.coreBind.SetVerification(this.label5, null);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Location = new System.Drawing.Point(499, 80);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 12);
     this.label6.TabIndex = 12;
     this.label6.Text = "�ɾ�״̬";
     this.coreBind.SetVerification(this.label6, null);
     //
     // txtReel
     //
     this.coreBind.SetDatabasecommand(this.txtReel, null);
     this.txtReel.Location = new System.Drawing.Point(327, 71);
     this.txtReel.Name = "txtReel";
     this.txtReel.Size = new System.Drawing.Size(100, 21);
     this.txtReel.TabIndex = 11;
     this.coreBind.SetVerification(this.txtReel, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(257, 80);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(53, 12);
     this.label7.TabIndex = 10;
     this.label7.Text = "��¯���";
     this.coreBind.SetVerification(this.label7, null);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Location = new System.Drawing.Point(37, 80);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(41, 12);
     this.label8.TabIndex = 8;
     this.label8.Text = "������";
     this.coreBind.SetVerification(this.label8, null);
     //
     // txtSpec
     //
     this.coreBind.SetDatabasecommand(this.txtSpec, null);
     this.txtSpec.Location = new System.Drawing.Point(801, 15);
     this.txtSpec.Name = "txtSpec";
     this.txtSpec.Size = new System.Drawing.Size(100, 21);
     this.txtSpec.TabIndex = 7;
     this.coreBind.SetVerification(this.txtSpec, null);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Location = new System.Drawing.Point(755, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(29, 12);
     this.label3.TabIndex = 6;
     this.label3.Text = "���";
     this.coreBind.SetVerification(this.label3, null);
     //
     // txtSteelType
     //
     this.coreBind.SetDatabasecommand(this.txtSteelType, null);
     this.txtSteelType.Location = new System.Drawing.Point(569, 15);
     this.txtSteelType.Name = "txtSteelType";
     this.txtSteelType.Size = new System.Drawing.Size(100, 21);
     this.txtSteelType.TabIndex = 5;
     this.coreBind.SetVerification(this.txtSteelType, null);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Location = new System.Drawing.Point(523, 24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(29, 12);
     this.label4.TabIndex = 4;
     this.label4.Text = "�ƺ�";
     this.coreBind.SetVerification(this.label4, null);
     //
     // txtStoveNo
     //
     this.coreBind.SetDatabasecommand(this.txtStoveNo, null);
     this.txtStoveNo.Location = new System.Drawing.Point(327, 15);
     this.txtStoveNo.Name = "txtStoveNo";
     this.txtStoveNo.ReadOnly = true;
     this.txtStoveNo.Size = new System.Drawing.Size(100, 21);
     this.txtStoveNo.TabIndex = 3;
     this.coreBind.SetVerification(this.txtStoveNo, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(281, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 2;
     this.label2.Text = "¯��";
     this.coreBind.SetVerification(this.label2, null);
     //
     // txtBatchNo
     //
     this.coreBind.SetDatabasecommand(this.txtBatchNo, null);
     this.txtBatchNo.Location = new System.Drawing.Point(95, 15);
     this.txtBatchNo.Name = "txtBatchNo";
     this.txtBatchNo.ReadOnly = true;
     this.txtBatchNo.Size = new System.Drawing.Size(100, 21);
     this.txtBatchNo.TabIndex = 1;
     this.coreBind.SetVerification(this.txtBatchNo, null);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Location = new System.Drawing.Point(25, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 0;
     this.label1.Text = "���Ʊ��";
     this.coreBind.SetVerification(this.label1, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool25.ControlName = "cbxDateTime";
     controlContainerTool27.ControlName = "dateTimePicker1";
     controlContainerTool29.ControlName = "dateTimePicker2";
     controlContainerTool19.ControlName = "tbQueryBatchNo";
     controlContainerTool19.InstanceProps.Width = 192;
     controlContainerTool18.ControlName = "tbQueryStoveNo";
     controlContainerTool18.InstanceProps.IsFirstInGroup = true;
     controlContainerTool18.InstanceProps.Width = 167;
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool25,
     controlContainerTool27,
     controlContainerTool29,
     controlContainerTool19,
     controlContainerTool18,
     buttonTool3,
     buttonTool1,
     buttonTool4});
     ultraToolbar1.Text = "UltraToolbar2";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool24.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "���Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 192;
     controlContainerTool26.ControlName = "cbxDateTime";
     controlContainerTool28.ControlName = "dateTimePicker1";
     controlContainerTool28.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool28.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool30.ControlName = "dateTimePicker2";
     controlContainerTool30.SharedPropsInternal.Caption = "��";
     controlContainerTool30.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance22.Image = ((object)(resources.GetObject("appearance22.Image")));
     buttonTool2.SharedPropsInternal.AppearancesSmall.Appearance = appearance22;
     buttonTool2.SharedPropsInternal.Caption = "��������";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool5.SharedPropsInternal.Caption = "����";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool44,
     controlContainerTool24,
     controlContainerTool10,
     controlContainerTool26,
     controlContainerTool28,
     controlContainerTool30,
     buttonTool2,
     buttonTool5});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1015, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1015, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 654);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1015, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "�������ƹ��";
     this.dataColumn19.ColumnName = "FS_ADVISESPEC";
     //
     // frmWeightPlanZKD
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1015, 654);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "frmWeightPlanZKD";
     this.Text = "�п������Ԥ��";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.frmWeightPlanZKD_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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);
 }
Ejemplo n.º 26
0
 /// <summary>
 ///     Método responsável por limpar a ordenação das colunas de todos os UltraGridsView
 /// </summary>
 /// <param name="UltraGrid">UltraDataGridView que terá suas colunas desordenadas.</param>
 public static void LimpaOrdenacaoColunasGrid(Infragistics.Win.UltraWinGrid.UltraGrid UltraGrid)
 {
     UltraGrid.DisplayLayout.Bands[0].SortedColumns.Clear();
     UltraGrid.Rows.Refresh(Infragistics.Win.UltraWinGrid.RefreshRow.ReloadData);
 }
Ejemplo n.º 27
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager              resources        = new System.Resources.ResourceManager(typeof(FCartonSplit));
     Infragistics.Win.Appearance                   appearance1      = new Infragistics.Win.Appearance();
     Infragistics.Win.ValueListItem                valueListItem1   = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem                valueListItem2   = new Infragistics.Win.ValueListItem();
     Infragistics.Win.Appearance                   appearance2      = new Infragistics.Win.Appearance();
     Infragistics.Win.ValueListItem                valueListItem3   = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem                valueListItem4   = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column1");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column2");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column3");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column4");
     this.panel1          = new System.Windows.Forms.Panel();
     this.ucLabEdit1      = new UserControl.UCLabelEdit();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.ucButton2       = new UserControl.UCButton();
     this.ucButton4       = new UserControl.UCButton();
     this.ucLabEdit5      = new UserControl.UCLabelEdit();
     this.ultraOptionSet1 = new Infragistics.Win.UltraWinEditors.UltraOptionSet();
     this.ultraOptionSet3 = new Infragistics.Win.UltraWinEditors.UltraOptionSet();
     this.listBox1        = new System.Windows.Forms.ListBox();
     this.columnHeader1   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4   = new System.Windows.Forms.ColumnHeader();
     this.ultraGrid1      = new Infragistics.Win.UltraWinGrid.UltraGrid();
     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.dataSet1        = new System.Data.DataSet();
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraOptionSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraOptionSet3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ucLabEdit1);
     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(480, 40);
     this.panel1.TabIndex = 3;
     //
     // ucLabEdit1
     //
     this.ucLabEdit1.AllowEditOnlyChecked = true;
     this.ucLabEdit1.Caption      = "包装号";
     this.ucLabEdit1.Checked      = false;
     this.ucLabEdit1.Location     = new System.Drawing.Point(8, 8);
     this.ucLabEdit1.Name         = "ucLabEdit1";
     this.ucLabEdit1.ReadOnly     = false;
     this.ucLabEdit1.ShowCheckBox = false;
     this.ucLabEdit1.Size         = new System.Drawing.Size(183, 24);
     this.ucLabEdit1.TabIndex     = 0;
     this.ucLabEdit1.Value        = "";
     this.ucLabEdit1.WidthType    = UserControl.WidthTypes.Normal;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ucButton2);
     this.groupBox1.Controls.Add(this.ucButton4);
     this.groupBox1.Controls.Add(this.ucLabEdit5);
     this.groupBox1.Controls.Add(this.ultraOptionSet1);
     this.groupBox1.Controls.Add(this.ultraOptionSet3);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox1.Location = new System.Drawing.Point(0, 279);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(480, 78);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     //
     // ucButton2
     //
     this.ucButton2.BackColor       = System.Drawing.SystemColors.Control;
     this.ucButton2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucButton2.BackgroundImage")));
     this.ucButton2.ButtonType      = UserControl.ButtonTypes.Confirm;
     this.ucButton2.Caption         = "确认";
     this.ucButton2.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucButton2.Location        = new System.Drawing.Point(248, 48);
     this.ucButton2.Name            = "ucButton2";
     this.ucButton2.Size            = new System.Drawing.Size(88, 22);
     this.ucButton2.TabIndex        = 0;
     //
     // ucButton4
     //
     this.ucButton4.BackColor       = System.Drawing.SystemColors.Control;
     this.ucButton4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucButton4.BackgroundImage")));
     this.ucButton4.ButtonType      = UserControl.ButtonTypes.Exit;
     this.ucButton4.Caption         = "退出";
     this.ucButton4.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucButton4.Location        = new System.Drawing.Point(352, 48);
     this.ucButton4.Name            = "ucButton4";
     this.ucButton4.Size            = new System.Drawing.Size(88, 22);
     this.ucButton4.TabIndex        = 0;
     //
     // ucLabEdit5
     //
     this.ucLabEdit5.AllowEditOnlyChecked = true;
     this.ucLabEdit5.Caption      = "输入框";
     this.ucLabEdit5.Checked      = false;
     this.ucLabEdit5.Location     = new System.Drawing.Point(24, 48);
     this.ucLabEdit5.Name         = "ucLabEdit5";
     this.ucLabEdit5.ReadOnly     = false;
     this.ucLabEdit5.ShowCheckBox = false;
     this.ucLabEdit5.Size         = new System.Drawing.Size(183, 24);
     this.ucLabEdit5.TabIndex     = 0;
     this.ucLabEdit5.Value        = "";
     this.ucLabEdit5.WidthType    = UserControl.WidthTypes.Normal;
     this.ucLabEdit5.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.ucLabEdit5_KeyPress);
     //
     // ultraOptionSet1
     //
     this.ultraOptionSet1.CheckedIndex   = 0;
     this.ultraOptionSet1.ItemAppearance = appearance1;
     valueListItem1.DataValue            = "ValueListItem0";
     valueListItem1.DisplayText          = "拆箱";
     valueListItem2.DataValue            = "ValueListItem1";
     valueListItem2.DisplayText          = "并箱";
     this.ultraOptionSet1.Items.Add(valueListItem1);
     this.ultraOptionSet1.Items.Add(valueListItem2);
     this.ultraOptionSet1.Location = new System.Drawing.Point(192, 19);
     this.ultraOptionSet1.Name     = "ultraOptionSet1";
     this.ultraOptionSet1.Size     = new System.Drawing.Size(144, 24);
     this.ultraOptionSet1.TabIndex = 0;
     this.ultraOptionSet1.Text     = "拆箱";
     //
     // ultraOptionSet3
     //
     this.ultraOptionSet3.CheckedIndex   = 0;
     this.ultraOptionSet3.ItemAppearance = appearance2;
     valueListItem3.DataValue            = "ValueListItem0";
     valueListItem3.DisplayText          = "Carton";
     valueListItem4.DataValue            = "ValueListItem1";
     valueListItem4.DisplayText          = "Pallet";
     this.ultraOptionSet3.Items.Add(valueListItem3);
     this.ultraOptionSet3.Items.Add(valueListItem4);
     this.ultraOptionSet3.Location = new System.Drawing.Point(32, 19);
     this.ultraOptionSet3.Name     = "ultraOptionSet3";
     this.ultraOptionSet3.Size     = new System.Drawing.Size(144, 24);
     this.ultraOptionSet3.TabIndex = 0;
     this.ultraOptionSet3.Text     = "Carton";
     //
     // listBox1
     //
     this.listBox1.Dock       = System.Windows.Forms.DockStyle.Bottom;
     this.listBox1.ItemHeight = 12;
     this.listBox1.Location   = new System.Drawing.Point(0, 191);
     this.listBox1.Name       = "listBox1";
     this.listBox1.Size       = new System.Drawing.Size(480, 88);
     this.listBox1.TabIndex   = 1;
     //
     // ultraGrid1
     //
     this.ultraGrid1.Cursor          = System.Windows.Forms.Cursors.Default;
     this.ultraGrid1.DataSource      = this.dataTable1;
     ultraGridColumn1.Header.Caption = "产品序列号";
     ultraGridColumn2.Header.Caption = "工单";
     ultraGridColumn3.Header.Caption = "料号";
     ultraGridColumn4.Header.Caption = "产线";
     ultraGridBand1.Columns.Add(ultraGridColumn1);
     ultraGridBand1.Columns.Add(ultraGridColumn2);
     ultraGridBand1.Columns.Add(ultraGridColumn3);
     ultraGridBand1.Columns.Add(ultraGridColumn4);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Location = new System.Drawing.Point(0, 40);
     this.ultraGrid1.Name     = "ultraGrid1";
     this.ultraGrid1.Size     = new System.Drawing.Size(480, 151);
     this.ultraGrid1.TabIndex = 4;
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.dataColumn2,
         this.dataColumn3,
         this.dataColumn4
     });
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Column1";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "Column2";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "Column3";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "Column4";
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("zh-CN");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // FCartonSplit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(480, 357);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.listBox1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Name = "FCartonSplit";
     this.Text = "包装拆并";
     this.panel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraOptionSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraOptionSet3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 28
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FInvReceive));
     this.cbxType          = new UserControl.UCLabelCombox();
     this.txtDesc          = new UserControl.UCLabelEdit();
     this.cbxModel         = new UserControl.UCLabelCombox();
     this.cbxItemCode      = new UserControl.UCLabelCombox();
     this.txtItemDesc      = new UserControl.UCLabelEdit();
     this.btnQuit          = new UserControl.UCButton();
     this.btnAdd           = new UserControl.UCButton();
     this.btnDelete        = new UserControl.UCButton();
     this.grxDetail        = new System.Windows.Forms.GroupBox();
     this.ultraGridContent = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panel1           = new System.Windows.Forms.Panel();
     this.grbDataInput     = new System.Windows.Forms.GroupBox();
     this.lblMo            = new System.Windows.Forms.Label();
     this.txtMoCode        = new System.Windows.Forms.TextBox();
     this.lblRecNo         = new System.Windows.Forms.Label();
     this.txtRecNo         = new System.Windows.Forms.TextBox();
     this.lblNum           = new System.Windows.Forms.Label();
     this.txtNum           = new System.Windows.Forms.TextBox();
     this.grxDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridContent)).BeginInit();
     this.panel1.SuspendLayout();
     this.grbDataInput.SuspendLayout();
     this.SuspendLayout();
     //
     // cbxType
     //
     this.cbxType.AllowEditOnlyChecked = true;
     this.cbxType.Caption       = "类型";
     this.cbxType.Checked       = false;
     this.cbxType.Location      = new System.Drawing.Point(262, 19);
     this.cbxType.Name          = "cbxType";
     this.cbxType.SelectedIndex = -1;
     this.cbxType.ShowCheckBox  = false;
     this.cbxType.Size          = new System.Drawing.Size(160, 24);
     this.cbxType.TabIndex      = 1;
     this.cbxType.WidthType     = UserControl.WidthTypes.Normal;
     this.cbxType.XAlign        = 310;
     //
     // txtDesc
     //
     this.txtDesc.AllowEditOnlyChecked = true;
     this.txtDesc.Caption          = "备注";
     this.txtDesc.CausesValidation = false;
     this.txtDesc.Checked          = false;
     this.txtDesc.EditType         = UserControl.EditTypes.String;
     this.txtDesc.Location         = new System.Drawing.Point(10, 134);
     this.txtDesc.MaxLength        = 40;
     this.txtDesc.Multiline        = false;
     this.txtDesc.Name             = "txtDesc";
     this.txtDesc.PasswordChar     = '\0';
     this.txtDesc.ReadOnly         = false;
     this.txtDesc.ShowCheckBox     = false;
     this.txtDesc.Size             = new System.Drawing.Size(364, 24);
     this.txtDesc.TabIndex         = 7;
     this.txtDesc.TabNext          = true;
     this.txtDesc.Value            = "";
     this.txtDesc.WidthType        = UserControl.WidthTypes.TooLong;
     this.txtDesc.XAlign           = 41;
     //
     // cbxModel
     //
     this.cbxModel.AllowEditOnlyChecked = true;
     this.cbxModel.Caption               = "产品别";
     this.cbxModel.Checked               = false;
     this.cbxModel.Location              = new System.Drawing.Point(35, 74);
     this.cbxModel.Name                  = "cbxModel";
     this.cbxModel.SelectedIndex         = -1;
     this.cbxModel.ShowCheckBox          = false;
     this.cbxModel.Size                  = new System.Drawing.Size(158, 20);
     this.cbxModel.TabIndex              = 3;
     this.cbxModel.WidthType             = UserControl.WidthTypes.Normal;
     this.cbxModel.XAlign                = 82;
     this.cbxModel.SelectedIndexChanged += new System.EventHandler(this.cbxModel_SelectedIndexChanged);
     //
     // cbxItemCode
     //
     this.cbxItemCode.AllowEditOnlyChecked = true;
     this.cbxItemCode.Caption               = "产品代码";
     this.cbxItemCode.Checked               = false;
     this.cbxItemCode.Location              = new System.Drawing.Point(249, 74);
     this.cbxItemCode.Name                  = "cbxItemCode";
     this.cbxItemCode.SelectedIndex         = -1;
     this.cbxItemCode.ShowCheckBox          = false;
     this.cbxItemCode.Size                  = new System.Drawing.Size(173, 24);
     this.cbxItemCode.TabIndex              = 4;
     this.cbxItemCode.WidthType             = UserControl.WidthTypes.Normal;
     this.cbxItemCode.XAlign                = 311;
     this.cbxItemCode.SelectedIndexChanged += new System.EventHandler(this.cbxItemCode_SelectedIndexChanged);
     //
     // txtItemDesc
     //
     this.txtItemDesc.AllowEditOnlyChecked = true;
     this.txtItemDesc.Caption      = "产品描述";
     this.txtItemDesc.Checked      = false;
     this.txtItemDesc.EditType     = UserControl.EditTypes.String;
     this.txtItemDesc.Location     = new System.Drawing.Point(23, 104);
     this.txtItemDesc.MaxLength    = 40;
     this.txtItemDesc.Multiline    = false;
     this.txtItemDesc.Name         = "txtItemDesc";
     this.txtItemDesc.PasswordChar = '\0';
     this.txtItemDesc.ReadOnly     = false;
     this.txtItemDesc.ShowCheckBox = false;
     this.txtItemDesc.Size         = new System.Drawing.Size(170, 24);
     this.txtItemDesc.TabIndex     = 5;
     this.txtItemDesc.TabNext      = true;
     this.txtItemDesc.TabStop      = false;
     this.txtItemDesc.Value        = "";
     this.txtItemDesc.WidthType    = UserControl.WidthTypes.Normal;
     this.txtItemDesc.XAlign       = 83;
     //
     // btnQuit
     //
     this.btnQuit.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnQuit.BackColor       = System.Drawing.SystemColors.Control;
     this.btnQuit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnQuit.BackgroundImage")));
     this.btnQuit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.btnQuit.Caption         = "退出";
     this.btnQuit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnQuit.Location        = new System.Drawing.Point(708, 7);
     this.btnQuit.Name            = "btnQuit";
     this.btnQuit.RightToLeft     = System.Windows.Forms.RightToLeft.Yes;
     this.btnQuit.Size            = new System.Drawing.Size(88, 22);
     this.btnQuit.TabIndex        = 0;
     this.btnQuit.TabStop         = false;
     //
     // btnAdd
     //
     this.btnAdd.BackColor       = System.Drawing.SystemColors.Control;
     this.btnAdd.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnAdd.BackgroundImage")));
     this.btnAdd.ButtonType      = UserControl.ButtonTypes.Add;
     this.btnAdd.Caption         = "新增";
     this.btnAdd.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnAdd.Location        = new System.Drawing.Point(442, 134);
     this.btnAdd.Name            = "btnAdd";
     this.btnAdd.Size            = new System.Drawing.Size(88, 22);
     this.btnAdd.TabIndex        = 8;
     this.btnAdd.TabStop         = false;
     this.btnAdd.Click          += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDelete
     //
     this.btnDelete.BackColor       = System.Drawing.SystemColors.Control;
     this.btnDelete.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnDelete.BackgroundImage")));
     this.btnDelete.ButtonType      = UserControl.ButtonTypes.Delete;
     this.btnDelete.Caption         = "删除";
     this.btnDelete.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnDelete.Location        = new System.Drawing.Point(23, 7);
     this.btnDelete.Name            = "btnDelete";
     this.btnDelete.Size            = new System.Drawing.Size(88, 22);
     this.btnDelete.TabIndex        = 10;
     this.btnDelete.TabStop         = false;
     this.btnDelete.Click          += new System.EventHandler(this.btnDelete_Click);
     //
     // grxDetail
     //
     this.grxDetail.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)));
     this.grxDetail.Controls.Add(this.ultraGridContent);
     this.grxDetail.Location = new System.Drawing.Point(0, 178);
     this.grxDetail.Name     = "grxDetail";
     this.grxDetail.Size     = new System.Drawing.Size(808, 326);
     this.grxDetail.TabIndex = 11;
     this.grxDetail.TabStop  = false;
     this.grxDetail.Text     = "入库单明细";
     //
     // ultraGridContent
     //
     this.ultraGridContent.Cursor            = System.Windows.Forms.Cursors.Default;
     this.ultraGridContent.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.ultraGridContent.Location          = new System.Drawing.Point(3, 16);
     this.ultraGridContent.Name              = "ultraGridContent";
     this.ultraGridContent.Size              = new System.Drawing.Size(802, 307);
     this.ultraGridContent.TabIndex          = 8;
     this.ultraGridContent.TabStop           = false;
     this.ultraGridContent.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGridContent_InitializeLayout);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnQuit);
     this.panel1.Controls.Add(this.btnDelete);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 508);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(808, 37);
     this.panel1.TabIndex = 12;
     //
     // grbDataInput
     //
     this.grbDataInput.Controls.Add(this.lblMo);
     this.grbDataInput.Controls.Add(this.txtMoCode);
     this.grbDataInput.Controls.Add(this.lblRecNo);
     this.grbDataInput.Controls.Add(this.txtRecNo);
     this.grbDataInput.Controls.Add(this.lblNum);
     this.grbDataInput.Controls.Add(this.txtNum);
     this.grbDataInput.Controls.Add(this.cbxType);
     this.grbDataInput.Controls.Add(this.txtDesc);
     this.grbDataInput.Controls.Add(this.cbxModel);
     this.grbDataInput.Controls.Add(this.cbxItemCode);
     this.grbDataInput.Controls.Add(this.txtItemDesc);
     this.grbDataInput.Controls.Add(this.btnAdd);
     this.grbDataInput.Dock     = System.Windows.Forms.DockStyle.Top;
     this.grbDataInput.Location = new System.Drawing.Point(0, 0);
     this.grbDataInput.Name     = "grbDataInput";
     this.grbDataInput.Size     = new System.Drawing.Size(808, 171);
     this.grbDataInput.TabIndex = 13;
     this.grbDataInput.TabStop  = false;
     this.grbDataInput.Text     = "数据输入";
     //
     // lblMo
     //
     this.lblMo.Location = new System.Drawing.Point(36, 50);
     this.lblMo.Name     = "lblMo";
     this.lblMo.Size     = new System.Drawing.Size(44, 21);
     this.lblMo.TabIndex = 106;
     this.lblMo.Text     = "工单";
     //
     // txtMoCode
     //
     this.txtMoCode.Location  = new System.Drawing.Point(83, 48);
     this.txtMoCode.Name      = "txtMoCode";
     this.txtMoCode.Size      = new System.Drawing.Size(111, 20);
     this.txtMoCode.TabIndex  = 2;
     this.txtMoCode.Leave    += new System.EventHandler(this.txtMoCode_Leave);
     this.txtMoCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMoCode_KeyPress);
     this.txtMoCode.Enter    += new System.EventHandler(this.txtMoCode_Enter);
     //
     // lblRecNo
     //
     this.lblRecNo.Location = new System.Drawing.Point(20, 22);
     this.lblRecNo.Name     = "lblRecNo";
     this.lblRecNo.Size     = new System.Drawing.Size(60, 22);
     this.lblRecNo.TabIndex = 104;
     this.lblRecNo.Text     = "入库单号";
     //
     // txtRecNo
     //
     this.txtRecNo.Location  = new System.Drawing.Point(83, 19);
     this.txtRecNo.Name      = "txtRecNo";
     this.txtRecNo.Size      = new System.Drawing.Size(111, 20);
     this.txtRecNo.TabIndex  = 0;
     this.txtRecNo.Leave    += new System.EventHandler(this.txtRecNo_Leave);
     this.txtRecNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRecNo_TxtboxKeyPress);
     this.txtRecNo.Enter    += new System.EventHandler(this.txtRecNo_Enter);
     //
     // lblNum
     //
     this.lblNum.Location = new System.Drawing.Point(245, 110);
     this.lblNum.Name     = "lblNum";
     this.lblNum.Size     = new System.Drawing.Size(64, 21);
     this.lblNum.TabIndex = 102;
     this.lblNum.Text     = "计划数量";
     //
     // txtNum
     //
     this.txtNum.Location  = new System.Drawing.Point(311, 108);
     this.txtNum.Name      = "txtNum";
     this.txtNum.Size      = new System.Drawing.Size(111, 20);
     this.txtNum.TabIndex  = 6;
     this.txtNum.Leave    += new System.EventHandler(this.txtNum_Leave);
     this.txtNum.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNum_TxtboxKeyPress);
     this.txtNum.Enter    += new System.EventHandler(this.txtNum_Enter);
     //
     // FInvReceive
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(808, 545);
     this.Controls.Add(this.grbDataInput);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.grxDetail);
     this.Name       = "FInvReceive";
     this.Text       = "入库单资料维护";
     this.Load      += new System.EventHandler(this.FInvReceive_Load);
     this.Closed    += new System.EventHandler(this.FInvReceive_Closed);
     this.Activated += new System.EventHandler(this.FInvReceive_Activated);
     this.grxDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridContent)).EndInit();
     this.panel1.ResumeLayout(false);
     this.grbDataInput.ResumeLayout(false);
     this.grbDataInput.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 29
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 appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ұ��", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SMELTDATE");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��ѧ�ɷ֣�%��");
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�ϸ�Ʒ");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DJH");
     Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_OPERATOR");
     Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_MEMO");
     Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZZ_DATE");
     Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_MEMO");
     Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FREEZED");
     Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKED");
     Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKED");
     Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LL_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_FLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_BEGINED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_END");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_GP_STOVENO", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_GP_STOVENO", 3, true);
     Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GP_TOTALCOUNT", 18, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GP_TOTALCOUNT", 18, true);
     Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_JJ_WEIGHT", 21, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_JJ_WEIGHT", 21, true);
     Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GPYS_NUMBER", 27, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GPYS_NUMBER", 27, true);
     Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance168 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance169 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance171 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance172 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance173 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��A");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��B");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��C");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool13 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��¯����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ȡ������");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     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(BoardBandFlowCard));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool45 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��A");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��B");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��C");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������2");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��¯����");
     Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ȡ������");
     Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.Appearance appearance177 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbx_Other3 = new System.Windows.Forms.CheckBox();
     this.cbx_Other2 = new System.Windows.Forms.CheckBox();
     this.cbx_Other1 = new System.Windows.Forms.CheckBox();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.rbtnC = new System.Windows.Forms.RadioButton();
     this.rbtnB = new System.Windows.Forms.RadioButton();
     this.rbtnA = new System.Windows.Forms.RadioButton();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.lbl_InFurnance = new System.Windows.Forms.Label();
     this.lbl_Mark = new System.Windows.Forms.Label();
     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.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.dataColumn18 = 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.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ucBilletFlowCard1 = new YGJZJL.BoardBand.ucBilletFlowCard();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.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.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other3);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other1);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnC);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnB);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnA);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1353, 745);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // cbx_Other3
     //
     this.cbx_Other3.AutoSize = true;
     this.cbx_Other3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other3, null);
     this.cbx_Other3.Location = new System.Drawing.Point(657, 39);
     this.cbx_Other3.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other3.Name = "cbx_Other3";
     this.cbx_Other3.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other3.TabIndex = 0;
     this.cbx_Other3.Text = "���ֿ�";
     this.cbx_Other3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other3, null);
     this.cbx_Other3.CheckedChanged += new System.EventHandler(this.cbx_Other3_CheckedChanged);
     //
     // cbx_Other2
     //
     this.cbx_Other2.AutoSize = true;
     this.cbx_Other2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other2, null);
     this.cbx_Other2.Location = new System.Drawing.Point(577, 39);
     this.cbx_Other2.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other2.Name = "cbx_Other2";
     this.cbx_Other2.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other2.TabIndex = 0;
     this.cbx_Other2.Text = "�Ͳ���";
     this.cbx_Other2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other2, null);
     this.cbx_Other2.CheckedChanged += new System.EventHandler(this.cbx_Other2_CheckedChanged);
     //
     // cbx_Other1
     //
     this.cbx_Other1.AutoSize = true;
     this.cbx_Other1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other1, null);
     this.cbx_Other1.Location = new System.Drawing.Point(497, 39);
     this.cbx_Other1.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other1.Name = "cbx_Other1";
     this.cbx_Other1.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other1.TabIndex = 0;
     this.cbx_Other1.Text = "�����";
     this.cbx_Other1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other1, null);
     this.cbx_Other1.CheckedChanged += new System.EventHandler(this.cbx_Other1_CheckedChanged);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(113, 35);
     this.tbQueryBatchNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(89, 25);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // rbtnC
     //
     this.rbtnC.AutoSize = true;
     this.rbtnC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtnC, null);
     this.rbtnC.Location = new System.Drawing.Point(680, 5);
     this.rbtnC.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnC.Name = "rbtnC";
     this.rbtnC.Size = new System.Drawing.Size(58, 19);
     this.rbtnC.TabIndex = 0;
     this.rbtnC.Text = "ȫ��";
     this.rbtnC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnC, null);
     //
     // rbtnB
     //
     this.rbtnB.AutoSize = true;
     this.rbtnB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtnB, null);
     this.rbtnB.Location = new System.Drawing.Point(601, 5);
     this.rbtnB.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnB.Name = "rbtnB";
     this.rbtnB.Size = new System.Drawing.Size(73, 19);
     this.rbtnB.TabIndex = 0;
     this.rbtnB.Text = "������";
     this.rbtnB.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnB, null);
     //
     // rbtnA
     //
     this.rbtnA.AutoSize = true;
     this.rbtnA.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.rbtnA.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtnA, null);
     this.rbtnA.Location = new System.Drawing.Point(523, 5);
     this.rbtnA.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnA.Name = "rbtnA";
     this.rbtnA.Size = new System.Drawing.Size(73, 19);
     this.rbtnA.TabIndex = 0;
     this.rbtnA.TabStop = true;
     this.rbtnA.Text = "���";
     this.rbtnA.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnA, null);
     //
     // 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";
     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(113, 2);
     this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(127, 25);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, 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";
     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(329, 2);
     this.dateTimePicker2.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(136, 25);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // 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(345, 35);
     this.tbQueryStoveNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(95, 25);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(15, 6);
     this.cbxDateTime.Margin = new System.Windows.Forms.Padding(4);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(18, 17);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     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, 61);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1353, 684);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.lbl_InFurnance);
     this.ultraGroupBox2.Controls.Add(this.lbl_Mark);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     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(1353, 356);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "��������������";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // lbl_InFurnance
     //
     this.lbl_InFurnance.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_InFurnance, null);
     this.lbl_InFurnance.ForeColor = System.Drawing.Color.Red;
     this.lbl_InFurnance.Location = new System.Drawing.Point(744, 5);
     this.lbl_InFurnance.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbl_InFurnance.Name = "lbl_InFurnance";
     this.lbl_InFurnance.Size = new System.Drawing.Size(171, 18);
     this.lbl_InFurnance.TabIndex = 0;
     this.lbl_InFurnance.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_InFurnance, null);
     this.lbl_InFurnance.Visible = false;
     //
     // lbl_Mark
     //
     this.lbl_Mark.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_Mark, null);
     this.lbl_Mark.ForeColor = System.Drawing.Color.Blue;
     this.lbl_Mark.Location = new System.Drawing.Point(931, 5);
     this.lbl_Mark.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbl_Mark.Name = "lbl_Mark";
     this.lbl_Mark.Size = new System.Drawing.Size(171, 18);
     this.lbl_Mark.TabIndex = 0;
     this.lbl_Mark.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_Mark, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance53;
     ultraGridColumn1.Header.Caption = "������������";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 43;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance54;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(1086, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 23;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance55;
     ultraGridColumn3.Header.Caption = "ұ������";
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance56.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance56;
     ultraGridColumn4.Header.Caption = "¯��";
     ultraGridColumn4.Header.VisiblePosition = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance57.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance57;
     ultraGridColumn5.Header.Caption = "�ƺ�";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance58.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance58;
     ultraGridColumn6.Header.Caption = "���";
     ultraGridColumn6.Header.VisiblePosition = 35;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance59.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance59;
     ultraGridColumn7.Header.VisiblePosition = 7;
     ultraGridColumn7.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(440, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance60.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance60;
     ultraGridColumn8.Header.Caption = "C";
     ultraGridColumn8.Header.VisiblePosition = 14;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance61.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance61;
     ultraGridColumn9.Header.Caption = "Si";
     ultraGridColumn9.Header.VisiblePosition = 15;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance62.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance62;
     ultraGridColumn10.Header.Caption = "Mn";
     ultraGridColumn10.Header.VisiblePosition = 16;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance63.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance63;
     ultraGridColumn11.Header.Caption = "S";
     ultraGridColumn11.Header.VisiblePosition = 17;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance64.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance64;
     ultraGridColumn12.Header.Caption = "P";
     ultraGridColumn12.Header.VisiblePosition = 18;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance67.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance67;
     ultraGridColumn13.Header.Caption = "Ni";
     ultraGridColumn13.Header.VisiblePosition = 19;
     ultraGridColumn13.Hidden = true;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance68.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance68;
     ultraGridColumn14.Header.Caption = "Cr";
     ultraGridColumn14.Header.VisiblePosition = 21;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance69.TextVAlignAsString = "Middle";
     ultraGridColumn15.CellAppearance = appearance69;
     ultraGridColumn15.Header.Caption = "Cu";
     ultraGridColumn15.Header.VisiblePosition = 22;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance72.TextVAlignAsString = "Middle";
     ultraGridColumn16.CellAppearance = appearance72;
     ultraGridColumn16.Header.Caption = "V";
     ultraGridColumn16.Header.VisiblePosition = 23;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance73.TextVAlignAsString = "Middle";
     ultraGridColumn17.CellAppearance = appearance73;
     ultraGridColumn17.Header.Caption = "Mo";
     ultraGridColumn17.Header.VisiblePosition = 24;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance74.TextVAlignAsString = "Middle";
     ultraGridColumn18.CellAppearance = appearance74;
     ultraGridColumn18.Header.Caption = "Ceq";
     ultraGridColumn18.Header.VisiblePosition = 25;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance75.TextVAlignAsString = "Middle";
     ultraGridColumn19.CellAppearance = appearance75;
     ultraGridColumn19.Header.Caption = "������";
     ultraGridColumn19.Header.VisiblePosition = 6;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance76.TextVAlignAsString = "Middle";
     ultraGridColumn20.CellAppearance = appearance76;
     ultraGridColumn20.Header.VisiblePosition = 20;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance77.TextVAlignAsString = "Middle";
     ultraGridColumn21.CellAppearance = appearance77;
     ultraGridColumn21.Header.Caption = "��";
     ultraGridColumn21.Header.VisiblePosition = 32;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance78.TextVAlignAsString = "Middle";
     ultraGridColumn22.CellAppearance = appearance78;
     ultraGridColumn22.Header.Caption = "ʵ��";
     ultraGridColumn22.Header.VisiblePosition = 8;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance79.TextVAlignAsString = "Middle";
     ultraGridColumn23.CellAppearance = appearance79;
     ultraGridColumn23.Header.Caption = "��ע";
     ultraGridColumn23.Header.VisiblePosition = 27;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance80.TextVAlignAsString = "Middle";
     ultraGridColumn24.CellAppearance = appearance80;
     ultraGridColumn24.Header.Caption = "�ж�Ա";
     ultraGridColumn24.Header.VisiblePosition = 29;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance81.TextVAlignAsString = "Middle";
     ultraGridColumn25.CellAppearance = appearance81;
     ultraGridColumn25.Header.Caption = "�ж�ʱ��";
     ultraGridColumn25.Header.VisiblePosition = 30;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance82.TextVAlignAsString = "Middle";
     ultraGridColumn26.CellAppearance = appearance82;
     ultraGridColumn26.Header.VisiblePosition = 26;
     ultraGridColumn26.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(957, 0);
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance83.TextVAlignAsString = "Middle";
     ultraGridColumn27.CellAppearance = appearance83;
     ultraGridColumn27.Header.VisiblePosition = 28;
     ultraGridColumn27.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 5;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance84.TextVAlignAsString = "Middle";
     ultraGridColumn28.CellAppearance = appearance84;
     ultraGridColumn28.Header.Caption = "����";
     ultraGridColumn28.Header.VisiblePosition = 9;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance85.TextVAlignAsString = "Middle";
     ultraGridColumn29.CellAppearance = appearance85;
     ultraGridColumn29.Header.Caption = "���ܺ�";
     ultraGridColumn29.Header.VisiblePosition = 10;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance86.TextVAlignAsString = "Middle";
     ultraGridColumn30.CellAppearance = appearance86;
     ultraGridColumn30.Header.Caption = "����ʱ��";
     ultraGridColumn30.Header.VisiblePosition = 12;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance87.TextVAlignAsString = "Middle";
     ultraGridColumn31.CellAppearance = appearance87;
     ultraGridColumn31.Header.Caption = "������";
     ultraGridColumn31.Header.VisiblePosition = 31;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 33;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance88.TextVAlignAsString = "Middle";
     ultraGridColumn32.CellAppearance = appearance88;
     ultraGridColumn32.Header.VisiblePosition = 33;
     ultraGridColumn32.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance89.TextVAlignAsString = "Middle";
     ultraGridColumn33.CellAppearance = appearance89;
     ultraGridColumn33.Header.Caption = "���Ʊ��";
     ultraGridColumn33.Header.VisiblePosition = 34;
     ultraGridColumn33.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameValue;
     ultraGridColumn33.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance90.TextVAlignAsString = "Middle";
     ultraGridColumn34.CellAppearance = appearance90;
     ultraGridColumn34.Header.Caption = "��¯";
     ultraGridColumn34.Header.VisiblePosition = 36;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance91.TextVAlignAsString = "Middle";
     ultraGridColumn35.CellAppearance = appearance91;
     ultraGridColumn35.Header.Caption = "��¯ʱ��";
     ultraGridColumn35.Header.VisiblePosition = 37;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance92.TextVAlignAsString = "Middle";
     ultraGridColumn36.CellAppearance = appearance92;
     ultraGridColumn36.Header.Caption = "������";
     ultraGridColumn36.Header.VisiblePosition = 38;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance93.TextVAlignAsString = "Middle";
     ultraGridColumn37.CellAppearance = appearance93;
     ultraGridColumn37.Header.Caption = "��ע";
     ultraGridColumn37.Header.VisiblePosition = 39;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance94.TextVAlignAsString = "Middle";
     ultraGridColumn38.CellAppearance = appearance94;
     ultraGridColumn38.Header.VisiblePosition = 40;
     ultraGridColumn38.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance95.TextVAlignAsString = "Middle";
     ultraGridColumn39.CellAppearance = appearance95;
     ultraGridColumn39.Header.Caption = "���ƹ��";
     ultraGridColumn39.Header.VisiblePosition = 41;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance96.TextVAlignAsString = "Middle";
     ultraGridColumn40.CellAppearance = appearance96;
     ultraGridColumn40.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Equals;
     ultraGridColumn40.FilterOperatorDropDownItems = Infragistics.Win.UltraWinGrid.FilterOperatorDropDownItems.Equals;
     ultraGridColumn40.Header.Caption = "���߳���";
     ultraGridColumn40.Header.VisiblePosition = 5;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance97.TextVAlignAsString = "Middle";
     ultraGridColumn41.CellAppearance = appearance97;
     ultraGridColumn41.Header.Caption = "����ʱ��";
     ultraGridColumn41.Header.VisiblePosition = 42;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance98.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance98;
     ultraGridColumn42.Header.Caption = "������";
     ultraGridColumn42.Header.VisiblePosition = 43;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 39;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance99.TextVAlignAsString = "Middle";
     ultraGridColumn43.CellAppearance = appearance99;
     ultraGridColumn43.Header.Caption = "�ɲ�";
     ultraGridColumn43.Header.VisiblePosition = 44;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn43.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance100.TextVAlignAsString = "Middle";
     ultraGridColumn44.CellAppearance = appearance100;
     ultraGridColumn44.Header.Caption = "����";
     ultraGridColumn44.Header.VisiblePosition = 45;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance101.TextVAlignAsString = "Middle";
     ultraGridColumn45.CellAppearance = appearance101;
     ultraGridColumn45.Header.Caption = "��ע";
     ultraGridColumn45.Header.VisiblePosition = 46;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn45.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance102.TextVAlignAsString = "Middle";
     ultraGridColumn46.CellAppearance = appearance102;
     ultraGridColumn46.Header.Caption = "����״̬";
     ultraGridColumn46.Header.VisiblePosition = 13;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 72);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance103.TextVAlignAsString = "Middle";
     ultraGridColumn47.CellAppearance = appearance103;
     ultraGridColumn47.Header.Caption = "״̬";
     ultraGridColumn47.Header.VisiblePosition = 11;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     appearance104.TextVAlignAsString = "Middle";
     ultraGridColumn48.CellAppearance = appearance104;
     ultraGridColumn48.Header.Caption = "ѡ��";
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.Hidden = true;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn48.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn49.Header.Caption = "����";
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn49.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.Hidden = true;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 72);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.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,
     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});
     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;
     summarySettings1.DisplayFormat = "¯����{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance105;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance106;
     summarySettings3.DisplayFormat = "{0}";
     summarySettings3.GroupBySummaryValueAppearance = appearance107;
     summarySettings4.DisplayFormat = "{0}";
     summarySettings4.GroupBySummaryValueAppearance = appearance108;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance168.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance168;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance169.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance169;
     appearance170.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance170;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance171.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance171.TextHAlignAsString = "Center";
     appearance171.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance171;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance172.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance172;
     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;
     appearance173.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance173.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance173.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance173.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance173;
     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.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     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, 27);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1347, 326);
     this.ultraGrid1.TabIndex = 0;
     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});
     //
     // 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.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn18,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "ұ��";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FD_SMELTDATE";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FS_GP_SPE";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "��ѧ�ɷ֣�%��";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FN_GP_C";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FN_GP_SI";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "FN_GP_MN";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FN_GP_S";
     //
     // dataColumn12
     //
     this.dataColumn12.ColumnName = "FN_GP_P";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FN_GP_NI";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FN_GP_CR";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "FN_GP_CU";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FN_GP_V";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FN_GP_MO";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "�ϸ�Ʒ";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FN_GP_CHECKCOUNT";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_JJ_WEIGHT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "����";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "��������";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_DJH";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FD_GPYS_RECEIVEDATE";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_GPYS_RECEIVER";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "��������";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FD_ZC_ENTERDATETIME";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_ZC_OPERATOR";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FS_ZC_MEMO";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "����";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FN_LENGTH";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FD_ZZ_DATE";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FS_ZZ_OPERATOR";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FN_ZZ_WASTNUM";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FS_ZZ_MEMO";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FS_FREEZED";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FS_CHECKED";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "CHECKED";
     this.dataColumn48.DataType = typeof(bool);
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FN_LL_WEIGHT";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "ȥ��";
     this.dataColumn50.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_DISCHARGE_BEGINED";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FS_DISCHARGE_END";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "�ϸ�";
     this.dataColumn53.ColumnName = "FS_UNQUALIFIED";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "As";
     this.dataColumn54.ColumnName = "FN_GP_AS";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "Ti";
     this.dataColumn55.ColumnName = "FN_GP_TI";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "Sb";
     this.dataColumn56.ColumnName = "FN_GP_SB";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "Als";
     this.dataColumn57.ColumnName = "FN_GP_ALS";
     //
     // 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(1157, 2);
     this.cbx_Filter.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(59, 19);
     this.cbx_Filter.TabIndex = 0;
     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.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1353, 328);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 356);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1353, 328);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "���ݱ༭����";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ucBilletFlowCard1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
     this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1347, 304);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // ucBilletFlowCard1
     //
     this.ucBilletFlowCard1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.ucBilletFlowCard1, null);
     this.ucBilletFlowCard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucBilletFlowCard1.Location = new System.Drawing.Point(0, 0);
     this.ucBilletFlowCard1.Margin = new System.Windows.Forms.Padding(5);
     this.ucBilletFlowCard1.Name = "ucBilletFlowCard1";
     this.ucBilletFlowCard1.Size = new System.Drawing.Size(1347, 304);
     this.ucBilletFlowCard1.TabIndex = 0;
     this.coreBind.SetVerification(this.ucBilletFlowCard1, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool2.ControlName = "cbxDateTime";
     controlContainerTool2.InstanceProps.Width = 24;
     controlContainerTool9.ControlName = "dateTimePicker1";
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 162;
     controlContainerTool15.ControlName = "rbtnA";
     controlContainerTool15.InstanceProps.IsFirstInGroup = true;
     controlContainerTool16.ControlName = "rbtnB";
     controlContainerTool17.ControlName = "rbtnC";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool2,
     controlContainerTool9,
     controlContainerTool20,
     controlContainerTool15,
     controlContainerTool16,
     controlContainerTool17});
     ultraToolbar1.Text = "UltraToolbar1";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     controlContainerTool19.ControlName = "tbQueryBatchNo";
     controlContainerTool19.InstanceProps.IsFirstInGroup = true;
     controlContainerTool19.InstanceProps.Width = 192;
     controlContainerTool18.ControlName = "tbQueryStoveNo";
     controlContainerTool18.InstanceProps.IsFirstInGroup = true;
     controlContainerTool18.InstanceProps.Width = 167;
     controlContainerTool8.ControlName = "cbx_Other1";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     controlContainerTool11.ControlName = "cbx_Other2";
     controlContainerTool13.ControlName = "cbx_Other3";
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     buttonTool10.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     buttonTool7.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool19,
     controlContainerTool18,
     controlContainerTool8,
     controlContainerTool11,
     controlContainerTool13,
     buttonTool3,
     buttonTool10,
     buttonTool2,
     buttonTool1,
     buttonTool7,
     buttonTool8,
     buttonTool11});
     ultraToolbar2.Text = "UltraToolbar2";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 199;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "��";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 162;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool24.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "����";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance124.Image = ((object)(resources.GetObject("appearance124.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance124;
     buttonTool4.SharedPropsInternal.Caption = "ȡ������";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.SharedPropsInternal.Caption = "��";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 24;
     controlContainerTool3.ControlName = "rbtnA";
     controlContainerTool3.SharedPropsInternal.Caption = "ѡ��A";
     controlContainerTool4.ControlName = "rbtnB";
     controlContainerTool4.SharedPropsInternal.Caption = "ѡ��B";
     controlContainerTool5.ControlName = "rbtnC";
     controlContainerTool5.SharedPropsInternal.Caption = "ѡ��C";
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "�������Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 192;
     controlContainerTool6.ControlName = "cbx_Other1";
     controlContainerTool6.SharedPropsInternal.Caption = "������1";
     controlContainerTool7.ControlName = "cbx_Other2";
     controlContainerTool7.SharedPropsInternal.Caption = "������2";
     appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
     buttonTool5.SharedPropsInternal.Caption = "��¯����";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance71.Image = ((object)(resources.GetObject("appearance71.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance71;
     buttonTool6.SharedPropsInternal.Caption = "ȡ������";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance177.Image = ((object)(resources.GetObject("appearance177.Image")));
     buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance177;
     buttonTool9.SharedPropsInternal.Caption = "����";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.ControlName = "cbx_Other3";
     controlContainerTool12.SharedPropsInternal.Caption = "������3";
     appearance119.Image = ((object)(resources.GetObject("appearance119.Image")));
     buttonTool12.SharedPropsInternal.AppearancesLarge.Appearance = appearance119;
     appearance120.Image = ((object)(resources.GetObject("appearance120.Image")));
     buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance120;
     buttonTool12.SharedPropsInternal.Caption = "��������";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool4,
     controlContainerTool1,
     controlContainerTool3,
     controlContainerTool4,
     controlContainerTool5,
     controlContainerTool10,
     controlContainerTool6,
     controlContainerTool7,
     buttonTool5,
     buttonTool6,
     buttonTool9,
     controlContainerTool12,
     buttonTool12});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1353, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1353, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 745);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1353, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // BoardBandFlowCard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1353, 745);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5);
     this.Name = "BoardBandFlowCard";
     this.Text = "������";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.BilletFlowCard_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 30
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FFeederMaintain));
     this.panel1 = new System.Windows.Forms.Panel();
     this.cboOperationMessage = new System.Windows.Forms.ComboBox();
     this.cboAnalyseReason    = new System.Windows.Forms.ComboBox();
     this.lblOperationMessage = new System.Windows.Forms.Label();
     this.lblAnalyseReason    = new System.Windows.Forms.Label();
     this.ucBtnExit           = new UserControl.UCButton();
     this.btnOK            = new UserControl.UCButton();
     this.chkScrapFlag     = new System.Windows.Forms.CheckBox();
     this.txtReturnReason  = new UserControl.UCLabelEdit();
     this.txtFeederNo      = new UserControl.UCLabelEdit();
     this.rdoAnalyse       = new System.Windows.Forms.RadioButton();
     this.rdoAdjust        = new System.Windows.Forms.RadioButton();
     this.rdoTakeCare      = new System.Windows.Forms.RadioButton();
     this.gridList         = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cboOperationMessage);
     this.panel1.Controls.Add(this.cboAnalyseReason);
     this.panel1.Controls.Add(this.lblOperationMessage);
     this.panel1.Controls.Add(this.lblAnalyseReason);
     this.panel1.Controls.Add(this.ucBtnExit);
     this.panel1.Controls.Add(this.btnOK);
     this.panel1.Controls.Add(this.chkScrapFlag);
     this.panel1.Controls.Add(this.txtReturnReason);
     this.panel1.Controls.Add(this.txtFeederNo);
     this.panel1.Controls.Add(this.rdoAnalyse);
     this.panel1.Controls.Add(this.rdoAdjust);
     this.panel1.Controls.Add(this.rdoTakeCare);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 402);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(821, 183);
     this.panel1.TabIndex = 0;
     //
     // cboOperationMessage
     //
     this.cboOperationMessage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboOperationMessage.Location      = new System.Drawing.Point(96, 111);
     this.cboOperationMessage.Name          = "cboOperationMessage";
     this.cboOperationMessage.Size          = new System.Drawing.Size(495, 21);
     this.cboOperationMessage.TabIndex      = 19;
     this.cboOperationMessage.Leave        += new System.EventHandler(this.cboOperationMessage_Leave);
     this.cboOperationMessage.Enter        += new System.EventHandler(this.cboOperationMessage_Enter);
     //
     // cboAnalyseReason
     //
     this.cboAnalyseReason.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboAnalyseReason.Location      = new System.Drawing.Point(96, 80);
     this.cboAnalyseReason.Name          = "cboAnalyseReason";
     this.cboAnalyseReason.Size          = new System.Drawing.Size(495, 21);
     this.cboAnalyseReason.TabIndex      = 18;
     this.cboAnalyseReason.Leave        += new System.EventHandler(this.cboAnalyseReason_Leave);
     this.cboAnalyseReason.Enter        += new System.EventHandler(this.cboAnalyseReason_Enter);
     //
     // lblOperationMessage
     //
     this.lblOperationMessage.AutoSize = true;
     this.lblOperationMessage.Location = new System.Drawing.Point(24, 114);
     this.lblOperationMessage.Name     = "lblOperationMessage";
     this.lblOperationMessage.Size     = new System.Drawing.Size(55, 13);
     this.lblOperationMessage.TabIndex = 17;
     this.lblOperationMessage.Text     = "解决方法";
     //
     // lblAnalyseReason
     //
     this.lblAnalyseReason.AutoSize = true;
     this.lblAnalyseReason.Location = new System.Drawing.Point(24, 82);
     this.lblAnalyseReason.Name     = "lblAnalyseReason";
     this.lblAnalyseReason.Size     = new System.Drawing.Size(55, 13);
     this.lblAnalyseReason.TabIndex = 16;
     this.lblAnalyseReason.Text     = "原因分析";
     //
     // ucBtnExit
     //
     this.ucBtnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.ucBtnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucBtnExit.BackgroundImage")));
     this.ucBtnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.ucBtnExit.Caption         = "退出";
     this.ucBtnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucBtnExit.Location        = new System.Drawing.Point(376, 152);
     this.ucBtnExit.Name            = "ucBtnExit";
     this.ucBtnExit.Size            = new System.Drawing.Size(88, 22);
     this.ucBtnExit.TabIndex        = 15;
     //
     // btnOK
     //
     this.btnOK.BackColor       = System.Drawing.SystemColors.Control;
     this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));
     this.btnOK.ButtonType      = UserControl.ButtonTypes.None;
     this.btnOK.Caption         = "确定";
     this.btnOK.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnOK.Location        = new System.Drawing.Point(232, 152);
     this.btnOK.Name            = "btnOK";
     this.btnOK.Size            = new System.Drawing.Size(88, 22);
     this.btnOK.TabIndex        = 14;
     this.btnOK.TabStop         = false;
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // chkScrapFlag
     //
     this.chkScrapFlag.Location = new System.Drawing.Point(644, 48);
     this.chkScrapFlag.Name     = "chkScrapFlag";
     this.chkScrapFlag.Size     = new System.Drawing.Size(94, 24);
     this.chkScrapFlag.TabIndex = 8;
     this.chkScrapFlag.Text     = "是否报废";
     //
     // txtReturnReason
     //
     this.txtReturnReason.AllowEditOnlyChecked = true;
     this.txtReturnReason.Caption      = "退回原因";
     this.txtReturnReason.Checked      = false;
     this.txtReturnReason.EditType     = UserControl.EditTypes.String;
     this.txtReturnReason.Enabled      = false;
     this.txtReturnReason.Location     = new System.Drawing.Point(330, 48);
     this.txtReturnReason.MaxLength    = 40;
     this.txtReturnReason.Multiline    = false;
     this.txtReturnReason.Name         = "txtReturnReason";
     this.txtReturnReason.PasswordChar = '\0';
     this.txtReturnReason.ReadOnly     = false;
     this.txtReturnReason.ShowCheckBox = false;
     this.txtReturnReason.Size         = new System.Drawing.Size(261, 26);
     this.txtReturnReason.TabIndex     = 5;
     this.txtReturnReason.TabNext      = false;
     this.txtReturnReason.Value        = "";
     this.txtReturnReason.WidthType    = UserControl.WidthTypes.Long;
     this.txtReturnReason.XAlign       = 391;
     //
     // txtFeederNo
     //
     this.txtFeederNo.AllowEditOnlyChecked = true;
     this.txtFeederNo.Caption         = "Feeder编号";
     this.txtFeederNo.Checked         = false;
     this.txtFeederNo.EditType        = UserControl.EditTypes.String;
     this.txtFeederNo.Location        = new System.Drawing.Point(23, 48);
     this.txtFeederNo.MaxLength       = 40;
     this.txtFeederNo.Multiline       = false;
     this.txtFeederNo.Name            = "txtFeederNo";
     this.txtFeederNo.PasswordChar    = '\0';
     this.txtFeederNo.ReadOnly        = false;
     this.txtFeederNo.ShowCheckBox    = false;
     this.txtFeederNo.Size            = new System.Drawing.Size(273, 26);
     this.txtFeederNo.TabIndex        = 4;
     this.txtFeederNo.TabNext         = false;
     this.txtFeederNo.Value           = "";
     this.txtFeederNo.WidthType       = UserControl.WidthTypes.Long;
     this.txtFeederNo.XAlign          = 96;
     this.txtFeederNo.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtFeederNo_TxtboxKeyPress);
     //
     // rdoAnalyse
     //
     this.rdoAnalyse.Location        = new System.Drawing.Point(170, 16);
     this.rdoAnalyse.Name            = "rdoAnalyse";
     this.rdoAnalyse.Size            = new System.Drawing.Size(59, 24);
     this.rdoAnalyse.TabIndex        = 2;
     this.rdoAnalyse.Text            = "分析";
     this.rdoAnalyse.CheckedChanged += new System.EventHandler(this.rdoTakeCare_CheckedChanged);
     //
     // rdoAdjust
     //
     this.rdoAdjust.Location        = new System.Drawing.Point(96, 16);
     this.rdoAdjust.Name            = "rdoAdjust";
     this.rdoAdjust.Size            = new System.Drawing.Size(67, 24);
     this.rdoAdjust.TabIndex        = 1;
     this.rdoAdjust.Text            = "校正";
     this.rdoAdjust.CheckedChanged += new System.EventHandler(this.rdoTakeCare_CheckedChanged);
     //
     // rdoTakeCare
     //
     this.rdoTakeCare.Checked         = true;
     this.rdoTakeCare.Location        = new System.Drawing.Point(24, 16);
     this.rdoTakeCare.Name            = "rdoTakeCare";
     this.rdoTakeCare.Size            = new System.Drawing.Size(65, 24);
     this.rdoTakeCare.TabIndex        = 0;
     this.rdoTakeCare.TabStop         = true;
     this.rdoTakeCare.Text            = "保养";
     this.rdoTakeCare.CheckedChanged += new System.EventHandler(this.rdoTakeCare_CheckedChanged);
     //
     // gridList
     //
     this.gridList.Cursor     = System.Windows.Forms.Cursors.Default;
     this.gridList.DataSource = this.ultraDataSource1;
     this.gridList.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.gridList.Location   = new System.Drawing.Point(0, 10);
     this.gridList.Name       = "gridList";
     this.gridList.Size       = new System.Drawing.Size(821, 392);
     this.gridList.TabIndex   = 3;
     //
     // FFeederMaintain
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(821, 585);
     this.Controls.Add(this.gridList);
     this.Controls.Add(this.panel1);
     this.Name    = "FFeederMaintain";
     this.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
     this.Text    = "Feeder维护";
     this.Load   += new System.EventHandler(this.FFeederMaintain_Load);
     this.Closed += new System.EventHandler(this.FFeederMaintain_Closed);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool5 = new Infragistics.Win.UltraWinToolbars.LabelTool("时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool6 = new Infragistics.Win.UltraWinToolbars.LabelTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool9 = new Infragistics.Win.UltraWinToolbars.LabelTool("冶炼炉号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("去向");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("12");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改从表");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改炉号");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool10 = new Infragistics.Win.UltraWinToolbars.LabelTool("时间");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool11 = new Infragistics.Win.UltraWinToolbars.LabelTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool12 = new Infragistics.Win.UltraWinToolbars.LabelTool("冶炼炉号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("补录");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改从表");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("去向");
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("12");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改炉号");
     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_PLANT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MRP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVEPLANT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLETCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_THEORYWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_THEORYWEIGHTSINGLE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_STARTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ENDTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_COMPLETEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_AUDITOR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_AUDITTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UPLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TOCENTERTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TESTIFYDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TECHCARD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ISMATCH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAPSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_HEADER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SHIFTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TOTALWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTID");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = 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.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtTheoryWeight = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTheorySingleWeight = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtBilletCount = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtTotalWeight = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtLength = new System.Windows.Forms.TextBox();
     this.txtSpec = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtProductNo = new System.Windows.Forms.TextBox();
     this.txt_SteelType = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtStoveNo = new System.Windows.Forms.TextBox();
     this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cbReceiver = new System.Windows.Forms.ComboBox();
     this.tbx_BatchNo = new System.Windows.Forms.TextBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.dtEndTime = new System.Windows.Forms.DateTimePicker();
     this.dtBeginTime = new System.Windows.Forms.DateTimePicker();
     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.WeightRePrint_BC_Fill_Panel = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ultraGroupBox1 = 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.dataColumn30 = 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.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.panel6 = new System.Windows.Forms.Panel();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtCBStoveNo = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtBilletIndex = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.txtCBNetWeight = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.WeightRePrint_BC_Fill_Panel.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.SuspendLayout();
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox3);
     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(1334, 135);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.label5);
     this.ultraGroupBox3.Controls.Add(this.txtStoveNo);
     this.ultraGroupBox3.Controls.Add(this.txtTheoryWeight);
     this.ultraGroupBox3.Controls.Add(this.label4);
     this.ultraGroupBox3.Controls.Add(this.txtTheorySingleWeight);
     this.ultraGroupBox3.Controls.Add(this.label3);
     this.ultraGroupBox3.Controls.Add(this.txtBilletCount);
     this.ultraGroupBox3.Controls.Add(this.label2);
     this.ultraGroupBox3.Controls.Add(this.txtTotalWeight);
     this.ultraGroupBox3.Controls.Add(this.label1);
     this.ultraGroupBox3.Controls.Add(this.txtLength);
     this.ultraGroupBox3.Controls.Add(this.txtSpec);
     this.ultraGroupBox3.Controls.Add(this.label8);
     this.ultraGroupBox3.Controls.Add(this.label7);
     this.ultraGroupBox3.Controls.Add(this.label6);
     this.ultraGroupBox3.Controls.Add(this.txtProductNo);
     this.ultraGroupBox3.Controls.Add(this.txt_SteelType);
     this.ultraGroupBox3.Controls.Add(this.label10);
     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.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(1334, 135);
     this.ultraGroupBox3.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // txtTheoryWeight
     //
     this.coreBind.SetDatabasecommand(this.txtTheoryWeight, null);
     this.txtTheoryWeight.Location = new System.Drawing.Point(916, 90);
     this.txtTheoryWeight.Margin = new System.Windows.Forms.Padding(4);
     this.txtTheoryWeight.Name = "txtTheoryWeight";
     this.txtTheoryWeight.ReadOnly = true;
     this.txtTheoryWeight.Size = new System.Drawing.Size(132, 25);
     this.txtTheoryWeight.TabIndex = 41;
     this.coreBind.SetVerification(this.txtTheoryWeight, null);
     //
     // 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(845, 94);
     this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(60, 15);
     this.label4.TabIndex = 40;
     this.label4.Text = "总理重:";
     this.coreBind.SetVerification(this.label4, null);
     //
     // txtTheorySingleWeight
     //
     this.coreBind.SetDatabasecommand(this.txtTheorySingleWeight, null);
     this.txtTheorySingleWeight.Location = new System.Drawing.Point(421, 87);
     this.txtTheorySingleWeight.Margin = new System.Windows.Forms.Padding(4);
     this.txtTheorySingleWeight.Name = "txtTheorySingleWeight";
     this.txtTheorySingleWeight.ReadOnly = true;
     this.txtTheorySingleWeight.Size = new System.Drawing.Size(132, 25);
     this.txtTheorySingleWeight.TabIndex = 39;
     this.coreBind.SetVerification(this.txtTheorySingleWeight, null);
     //
     // 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(333, 92);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(75, 15);
     this.label3.TabIndex = 38;
     this.label3.Text = "单支理重:";
     this.coreBind.SetVerification(this.label3, null);
     //
     // txtBilletCount
     //
     this.coreBind.SetDatabasecommand(this.txtBilletCount, null);
     this.txtBilletCount.Location = new System.Drawing.Point(1152, 92);
     this.txtBilletCount.Margin = new System.Windows.Forms.Padding(4);
     this.txtBilletCount.Name = "txtBilletCount";
     this.txtBilletCount.ReadOnly = true;
     this.txtBilletCount.Size = new System.Drawing.Size(132, 25);
     this.txtBilletCount.TabIndex = 37;
     this.txtBilletCount.Text = "1";
     this.coreBind.SetVerification(this.txtBilletCount, null);
     this.txtBilletCount.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtBilletCount_KeyUp);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(1095, 94);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(45, 15);
     this.label2.TabIndex = 36;
     this.label2.Text = "块数:";
     this.coreBind.SetVerification(this.label2, null);
     //
     // txtTotalWeight
     //
     this.coreBind.SetDatabasecommand(this.txtTotalWeight, null);
     this.txtTotalWeight.Location = new System.Drawing.Point(677, 87);
     this.txtTotalWeight.Margin = new System.Windows.Forms.Padding(4);
     this.txtTotalWeight.Name = "txtTotalWeight";
     this.txtTotalWeight.ReadOnly = true;
     this.txtTotalWeight.Size = new System.Drawing.Size(132, 25);
     this.txtTotalWeight.TabIndex = 35;
     this.coreBind.SetVerification(this.txtTotalWeight, 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(599, 92);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(75, 15);
     this.label1.TabIndex = 34;
     this.label1.Text = "单支重量:";
     this.coreBind.SetVerification(this.label1, null);
     //
     // txtLength
     //
     this.coreBind.SetDatabasecommand(this.txtLength, null);
     this.txtLength.Location = new System.Drawing.Point(1152, 28);
     this.txtLength.Margin = new System.Windows.Forms.Padding(4);
     this.txtLength.Name = "txtLength";
     this.txtLength.ReadOnly = true;
     this.txtLength.Size = new System.Drawing.Size(132, 25);
     this.txtLength.TabIndex = 33;
     this.coreBind.SetVerification(this.txtLength, null);
     //
     // txtSpec
     //
     this.coreBind.SetDatabasecommand(this.txtSpec, null);
     this.txtSpec.Location = new System.Drawing.Point(915, 28);
     this.txtSpec.Margin = new System.Windows.Forms.Padding(4);
     this.txtSpec.Name = "txtSpec";
     this.txtSpec.ReadOnly = true;
     this.txtSpec.Size = new System.Drawing.Size(132, 25);
     this.txtSpec.TabIndex = 32;
     this.coreBind.SetVerification(this.txtSpec, null);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Location = new System.Drawing.Point(99, 35);
     this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(45, 15);
     this.label5.TabIndex = 26;
     this.label5.Text = "炉号:";
     this.coreBind.SetVerification(this.label5, null);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Location = new System.Drawing.Point(860, 39);
     this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(45, 15);
     this.label8.TabIndex = 28;
     this.label8.Text = "规格:";
     this.coreBind.SetVerification(this.label8, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(616, 39);
     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 = 24;
     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.Location = new System.Drawing.Point(349, 35);
     this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 15);
     this.label6.TabIndex = 20;
     this.label6.Text = "订单号:";
     this.coreBind.SetVerification(this.label6, null);
     //
     // txtProductNo
     //
     this.coreBind.SetDatabasecommand(this.txtProductNo, null);
     this.txtProductNo.Location = new System.Drawing.Point(421, 28);
     this.txtProductNo.Margin = new System.Windows.Forms.Padding(4);
     this.txtProductNo.Name = "txtProductNo";
     this.txtProductNo.ReadOnly = true;
     this.txtProductNo.Size = new System.Drawing.Size(132, 25);
     this.txtProductNo.TabIndex = 22;
     this.coreBind.SetVerification(this.txtProductNo, null);
     //
     // txt_SteelType
     //
     this.coreBind.SetDatabasecommand(this.txt_SteelType, null);
     this.txt_SteelType.Location = new System.Drawing.Point(675, 28);
     this.txt_SteelType.Margin = new System.Windows.Forms.Padding(4);
     this.txt_SteelType.Name = "txt_SteelType";
     this.txt_SteelType.ReadOnly = true;
     this.txt_SteelType.Size = new System.Drawing.Size(132, 25);
     this.txt_SteelType.TabIndex = 25;
     this.coreBind.SetVerification(this.txt_SteelType, null);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Location = new System.Drawing.Point(1097, 39);
     this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(45, 15);
     this.label10.TabIndex = 30;
     this.label10.Text = "长度:";
     this.coreBind.SetVerification(this.label10, null);
     //
     // txtStoveNo
     //
     this.coreBind.SetDatabasecommand(this.txtStoveNo, null);
     this.txtStoveNo.Location = new System.Drawing.Point(160, 28);
     this.txtStoveNo.Margin = new System.Windows.Forms.Padding(4);
     this.txtStoveNo.Name = "txtStoveNo";
     this.txtStoveNo.Size = new System.Drawing.Size(132, 25);
     this.txtStoveNo.TabIndex = 27;
     this.coreBind.SetVerification(this.txtStoveNo, null);
     //
     // ultraTabPageControl2
     //
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl2, null);
     this.ultraTabPageControl2.Enabled = false;
     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(1334, 135);
     this.coreBind.SetVerification(this.ultraTabPageControl2, null);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cbReceiver);
     this.panel1.Controls.Add(this.tbx_BatchNo);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.dtEndTime);
     this.panel1.Controls.Add(this.dtBeginTime);
     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.Margin = new System.Windows.Forms.Padding(4);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1336, 32);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // cbReceiver
     //
     this.coreBind.SetDatabasecommand(this.cbReceiver, null);
     this.cbReceiver.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbReceiver.FormattingEnabled = true;
     this.cbReceiver.Location = new System.Drawing.Point(587, 4);
     this.cbReceiver.Margin = new System.Windows.Forms.Padding(4);
     this.cbReceiver.Name = "cbReceiver";
     this.cbReceiver.Size = new System.Drawing.Size(71, 23);
     this.cbReceiver.TabIndex = 3;
     this.coreBind.SetVerification(this.cbReceiver, null);
     //
     // tbx_BatchNo
     //
     this.coreBind.SetDatabasecommand(this.tbx_BatchNo, null);
     this.tbx_BatchNo.Location = new System.Drawing.Point(379, 4);
     this.tbx_BatchNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbx_BatchNo.Name = "tbx_BatchNo";
     this.tbx_BatchNo.Size = new System.Drawing.Size(76, 25);
     this.tbx_BatchNo.TabIndex = 1;
     this.coreBind.SetVerification(this.tbx_BatchNo, 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, 62);
     this.panel1_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1336, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // dtEndTime
     //
     this.dtEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dtEndTime, null);
     this.dtEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtEndTime.Location = new System.Drawing.Point(203, 4);
     this.dtEndTime.Margin = new System.Windows.Forms.Padding(4);
     this.dtEndTime.Name = "dtEndTime";
     this.dtEndTime.Size = new System.Drawing.Size(90, 25);
     this.dtEndTime.TabIndex = 1;
     this.coreBind.SetVerification(this.dtEndTime, null);
     //
     // dtBeginTime
     //
     this.dtBeginTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dtBeginTime, null);
     this.dtBeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtBeginTime.Location = new System.Drawing.Point(52, 4);
     this.dtBeginTime.Margin = new System.Windows.Forms.Padding(4);
     this.dtBeginTime.Name = "dtBeginTime";
     this.dtBeginTime.Size = new System.Drawing.Size(90, 25);
     this.dtBeginTime.TabIndex = 2;
     this.coreBind.SetVerification(this.dtBeginTime, 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, 62);
     this._panel1_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
     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.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(382, 388);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(349, 44);
     controlContainerTool3.ControlName = "dtBeginTime";
     controlContainerTool3.InstanceProps.Width = 90;
     controlContainerTool6.ControlName = "dtEndTime";
     controlContainerTool6.InstanceProps.Width = 90;
     labelTool9.InstanceProps.IsFirstInGroup = true;
     controlContainerTool7.ControlName = "tbx_BatchNo";
     controlContainerTool7.InstanceProps.Width = 76;
     controlContainerTool1.ControlName = "cbReceiver";
     controlContainerTool1.InstanceProps.Width = 71;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool5,
     controlContainerTool3,
     labelTool6,
     controlContainerTool6,
     labelTool9,
     controlContainerTool7,
     labelTool1,
     controlContainerTool1,
     buttonTool9,
     buttonTool1,
     buttonTool4});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     labelTool10.SharedPropsInternal.Caption = "时间";
     labelTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     labelTool11.SharedPropsInternal.Caption = "至";
     labelTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool8.ControlName = "dtBeginTime";
     controlContainerTool8.SharedPropsInternal.Caption = "ControlContainerTool1";
     controlContainerTool8.SharedPropsInternal.Width = 90;
     controlContainerTool11.ControlName = "dtEndTime";
     controlContainerTool11.SharedPropsInternal.Caption = "ControlContainerTool2";
     controlContainerTool11.SharedPropsInternal.Width = 90;
     labelTool12.SharedPropsInternal.Caption = "炉号";
     labelTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool12.ControlName = "tbx_BatchNo";
     controlContainerTool12.SharedPropsInternal.Caption = "ControlContainerTool3";
     controlContainerTool12.SharedPropsInternal.Width = 76;
     buttonTool13.SharedPropsInternal.Caption = "查询";
     buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool14.SharedPropsInternal.Caption = "修改";
     buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool15.SharedPropsInternal.Caption = "补录";
     buttonTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool16.SharedPropsInternal.Caption = "删除";
     buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool19.SharedPropsInternal.Caption = "修改从表";
     buttonTool19.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool19.SharedPropsInternal.Enabled = false;
     buttonTool19.SharedPropsInternal.Visible = false;
     appearance68.TextHAlignAsString = "Center";
     appearance68.TextVAlignAsString = "Middle";
     labelTool2.SharedPropsInternal.AppearancesSmall.Appearance = appearance68;
     labelTool2.SharedPropsInternal.Caption = "收货单位";
     labelTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.ControlName = "cbReceiver";
     controlContainerTool2.SharedPropsInternal.Caption = "12";
     controlContainerTool2.SharedPropsInternal.Width = 71;
     buttonTool3.SharedPropsInternal.Caption = "导出";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool5.SharedPropsInternal.Caption = "修改炉号";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool10,
     labelTool11,
     controlContainerTool8,
     controlContainerTool11,
     labelTool12,
     controlContainerTool12,
     buttonTool13,
     buttonTool14,
     buttonTool15,
     buttonTool16,
     buttonTool19,
     labelTool2,
     controlContainerTool2,
     buttonTool3,
     buttonTool5});
     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)(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(1336, 62);
     this._panel1_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
     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)(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.Margin = new System.Windows.Forms.Padding(4);
     this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
     this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1336, 62);
     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)(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, 32);
     this._panel1_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1336, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // WeightRePrint_BC_Fill_Panel
     //
     this.WeightRePrint_BC_Fill_Panel.Controls.Add(this.panel2);
     this.WeightRePrint_BC_Fill_Panel.Controls.Add(this.panel1);
     this.WeightRePrint_BC_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.WeightRePrint_BC_Fill_Panel, null);
     this.WeightRePrint_BC_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.WeightRePrint_BC_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.WeightRePrint_BC_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
     this.WeightRePrint_BC_Fill_Panel.Name = "WeightRePrint_BC_Fill_Panel";
     this.WeightRePrint_BC_Fill_Panel.Size = new System.Drawing.Size(1336, 700);
     this.WeightRePrint_BC_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.WeightRePrint_BC_Fill_Panel, null);
     //
     // panel2
     //
     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, 32);
     this.panel2.Margin = new System.Windows.Forms.Padding(4);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1336, 668);
     this.panel2.TabIndex = 8;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Margin = new System.Windows.Forms.Padding(4);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1336, 668);
     this.panel3.TabIndex = 9;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.panel4);
     this.panel5.Controls.Add(this.panel6);
     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(1336, 668);
     this.panel5.TabIndex = 0;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Margin = new System.Windows.Forms.Padding(4);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(1336, 507);
     this.panel4.TabIndex = 8;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1336, 507);
     this.ultraGroupBox1.TabIndex = 7;
     this.ultraGroupBox1.Text = "主表查询数据";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "计量主表数据";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(122, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(140, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn3.Hidden = true;
     ultraGridColumn4.Header.VisiblePosition = 5;
     ultraGridColumn4.Hidden = true;
     ultraGridColumn5.Header.VisiblePosition = 7;
     ultraGridColumn5.Hidden = true;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.Header.VisiblePosition = 9;
     ultraGridColumn6.Hidden = true;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn7.Header.VisiblePosition = 16;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.Header.VisiblePosition = 11;
     ultraGridColumn8.Hidden = true;
     ultraGridColumn9.Header.VisiblePosition = 14;
     ultraGridColumn9.Hidden = true;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn10.Header.VisiblePosition = 2;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn11.Header.VisiblePosition = 4;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.Header.VisiblePosition = 18;
     ultraGridColumn12.Hidden = true;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn13.Header.VisiblePosition = 6;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.Header.VisiblePosition = 12;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn15.Header.VisiblePosition = 8;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn16.Header.VisiblePosition = 19;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 20;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn18.Header.VisiblePosition = 10;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(105, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.VisiblePosition = 13;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(116, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn20.Header.VisiblePosition = 17;
     ultraGridColumn20.Hidden = true;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(38, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.Header.VisiblePosition = 21;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn22.Header.VisiblePosition = 22;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn23.Header.VisiblePosition = 23;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 24;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn25.Header.VisiblePosition = 25;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn26.Header.VisiblePosition = 26;
     ultraGridColumn26.Hidden = true;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn27.Header.VisiblePosition = 15;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(108, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.Hidden = true;
     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});
     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.ColumnLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance8.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance8;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance9.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance9;
     appearance10.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance10;
     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.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     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.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, 24);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1330, 480);
     this.ultraGrid1.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.DoubleClick += new System.EventHandler(this.ultraGrid1_DoubleClick);
     this.ultraGrid1.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.ultraGrid1_DoubleClickCell);
     //
     // 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.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15});
     this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.UniqueConstraint("Constraint1", new string[] {
                 "FS_STOVENO"}, false)});
     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";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FS_PLANT";
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FS_MRP";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FS_RECEIVEPLANT";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "FS_STORE";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FS_MATERIAL";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "钢种";
     this.dataColumn10.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "规格";
     this.dataColumn11.ColumnName = "FS_SPEC";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "长度";
     this.dataColumn31.ColumnName = "FN_LENGTH";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "计量点";
     this.dataColumn32.ColumnName = "FS_POINT";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "总块数";
     this.dataColumn34.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "理重";
     this.dataColumn35.ColumnName = "FN_THEORYWEIGHT";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FN_THEORYWEIGHTSINGLE";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "开始时间";
     this.dataColumn37.ColumnName = "FD_STARTTIME";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "结束时间";
     this.dataColumn38.ColumnName = "FD_ENDTIME";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "是否完炉";
     this.dataColumn39.ColumnName = "FS_COMPLETEFLAG";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FS_AUDITOR";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FD_AUDITTIME";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "SAP上传标志";
     this.dataColumn42.ColumnName = "FS_UPLOADFLAG";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FD_TOCENTERTIME";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FS_ACCOUNTDATE";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FD_TESTIFYDATE";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FS_TRANSTYPE";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "班次";
     this.dataColumn47.ColumnName = "FS_SHIFT";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "计量员";
     this.dataColumn48.ColumnName = "FS_PERSON";
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FS_TECHCARD";
     //
     // dataColumn50
     //
     this.dataColumn50.ColumnName = "FS_ISMATCH";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_SAPSTORE";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FS_HEADER";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "班次日期";
     this.dataColumn53.ColumnName = "FD_SHIFTDATE";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "实重";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量时间";
     this.dataColumn13.ColumnName = "FD_WEIGHTTIME";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.ultraTabControl1);
     this.coreBind.SetDatabasecommand(this.panel6, null);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel6.Location = new System.Drawing.Point(0, 507);
     this.panel6.Margin = new System.Windows.Forms.Padding(4);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(1336, 161);
     this.panel6.TabIndex = 9;
     this.coreBind.SetVerification(this.panel6, null);
     //
     // ultraTabControl1
     //
     this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
     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(1336, 161);
     this.ultraTabControl1.TabIndex = 0;
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text = "数据编辑";
     ultraTab2.TabPage = this.ultraTabPageControl2;
     ultraTab2.Text = "";
     ultraTab2.Visible = false;
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab1,
     ultraTab2});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     //
     // 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(1334, 135);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // ultraGroupBox2
     //
     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(1000, 109);
     this.ultraGroupBox2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Location = new System.Drawing.Point(36, 51);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(35, 12);
     this.label9.TabIndex = 27;
     this.coreBind.SetVerification(this.label9, null);
     //
     // txtCBStoveNo
     //
     this.coreBind.SetDatabasecommand(this.txtCBStoveNo, null);
     this.txtCBStoveNo.Location = new System.Drawing.Point(89, 47);
     this.txtCBStoveNo.Name = "txtCBStoveNo";
     this.txtCBStoveNo.Size = new System.Drawing.Size(100, 25);
     this.txtCBStoveNo.TabIndex = 28;
     this.coreBind.SetVerification(this.txtCBStoveNo, null);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Location = new System.Drawing.Point(264, 51);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(35, 12);
     this.label11.TabIndex = 29;
     this.coreBind.SetVerification(this.label11, null);
     //
     // txtBilletIndex
     //
     this.coreBind.SetDatabasecommand(this.txtBilletIndex, null);
     this.txtBilletIndex.Location = new System.Drawing.Point(318, 47);
     this.txtBilletIndex.Name = "txtBilletIndex";
     this.txtBilletIndex.Size = new System.Drawing.Size(100, 25);
     this.txtBilletIndex.TabIndex = 30;
     this.coreBind.SetVerification(this.txtBilletIndex, null);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.Location = new System.Drawing.Point(478, 51);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(35, 12);
     this.label12.TabIndex = 31;
     this.coreBind.SetVerification(this.label12, null);
     //
     // txtCBNetWeight
     //
     this.coreBind.SetDatabasecommand(this.txtCBNetWeight, null);
     this.txtCBNetWeight.Location = new System.Drawing.Point(538, 47);
     this.txtCBNetWeight.Name = "txtCBNetWeight";
     this.txtCBNetWeight.Size = new System.Drawing.Size(100, 25);
     this.txtCBNetWeight.TabIndex = 32;
     this.coreBind.SetVerification(this.txtCBNetWeight, null);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.Location = new System.Drawing.Point(694, 51);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(83, 12);
     this.label13.TabIndex = 33;
     this.coreBind.SetVerification(this.label13, null);
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "总重量";
     this.dataColumn14.ColumnName = "FN_TOTALWEIGHT";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "计量点";
     this.dataColumn15.ColumnName = "FS_POINTID";
     //
     // SteelStoveNotUpdate_BC
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1336, 700);
     this.Controls.Add(this.WeightRePrint_BC_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5);
     this.Name = "SteelStoveNotUpdate_BC";
     this.Text = "热送辊道数据维护";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.WeightRePrint_BC_Load);
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     this.ultraGroupBox3.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.WeightRePrint_BC_Fill_Panel.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.panel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 32
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager              resources        = new System.Resources.ResourceManager(typeof(FSSChoose));
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column1");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column2");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column3");
     this.ucBtnExit = new UserControl.UCButton();
     this.ucBtnOK   = new UserControl.UCButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dataGrid  = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
     this.SuspendLayout();
     //
     // ucBtnExit
     //
     this.ucBtnExit.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucBtnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.ucBtnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucBtnExit.BackgroundImage")));
     this.ucBtnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.ucBtnExit.Caption         = "退出";
     this.ucBtnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucBtnExit.Location        = new System.Drawing.Point(278, 353);
     this.ucBtnExit.Name            = "ucBtnExit";
     this.ucBtnExit.Size            = new System.Drawing.Size(88, 22);
     this.ucBtnExit.TabIndex        = 2;
     //
     // ucBtnOK
     //
     this.ucBtnOK.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ucBtnOK.BackColor       = System.Drawing.SystemColors.Control;
     this.ucBtnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucBtnOK.BackgroundImage")));
     this.ucBtnOK.ButtonType      = UserControl.ButtonTypes.Confirm;
     this.ucBtnOK.Caption         = "确认";
     this.ucBtnOK.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucBtnOK.Location        = new System.Drawing.Point(134, 353);
     this.ucBtnOK.Name            = "ucBtnOK";
     this.ucBtnOK.Size            = new System.Drawing.Size(88, 22);
     this.ucBtnOK.TabIndex        = 1;
     this.ucBtnOK.Click          += new System.EventHandler(this.ucBtnOK_Click);
     //
     // groupBox1
     //
     this.groupBox1.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)));
     this.groupBox1.Controls.Add(this.dataGrid);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(634, 336);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "选择生产线";
     //
     // dataGrid
     //
     this.dataGrid.Cursor            = System.Windows.Forms.Cursors.Default;
     ultraGridColumn1.Header.Caption = "生产线代码";
     ultraGridColumn1.Width          = 150;
     ultraGridColumn2.Header.Caption = "生产线描述";
     ultraGridColumn2.Width          = 200;
     ultraGridColumn3.Header.Caption = "所属工段";
     ultraGridColumn3.Width          = 150;
     ultraGridBand1.Columns.Add(ultraGridColumn1);
     ultraGridBand1.Columns.Add(ultraGridColumn2);
     ultraGridBand1.Columns.Add(ultraGridColumn3);
     ultraGridBand1.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     this.dataGrid.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.dataGrid.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGrid.Location = new System.Drawing.Point(3, 17);
     this.dataGrid.Name     = "dataGrid";
     this.dataGrid.Size     = new System.Drawing.Size(628, 316);
     this.dataGrid.TabIndex = 7;
     //
     // FSSChoose
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(643, 384);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.ucBtnOK);
     this.Controls.Add(this.ucBtnExit);
     this.Name    = "FSSChoose";
     this.Text    = "产线选择";
     this.Load   += new System.EventHandler(this.FSSChoose_Load);
     this.Closed += new System.EventHandler(this.FSSChoose_Closed);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbManager     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel9    = new Infragistics.Win.Misc.UltraLabel();
     this.btnAddDept     = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel3    = new Infragistics.Win.Misc.UltraLabel();
     this.lblParentDept  = new Infragistics.Win.Misc.UltraLabel();
     this.txtDiscount    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.cmbParentDept  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtDeptName    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraButton1   = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel4    = new Infragistics.Win.Misc.UltraLabel();
     this.cmbParentDept2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtDeptName2   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbManager3    = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton3   = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel10   = new Infragistics.Win.Misc.UltraLabel();
     this.ultraButton2   = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel6    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7    = new Infragistics.Win.Misc.UltraLabel();
     this.txtDiscount3   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.cmbParentDept3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtDeptName3   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel8    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid1     = new Infragistics.Win.UltraWinGrid.UltraGrid();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbManager);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.btnAddDept);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.lblParentDept);
     this.ultraGroupBox1.Controls.Add(this.txtDiscount);
     this.ultraGroupBox1.Controls.Add(this.cmbParentDept);
     this.ultraGroupBox1.Controls.Add(this.txtDeptName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(24, 8);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(280, 216);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text     = "添加部门";
     //
     // cmbManager
     //
     this.cmbManager.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbManager.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbManager.Location      = new System.Drawing.Point(144, 136);
     this.cmbManager.Name          = "cmbManager";
     this.cmbManager.Size          = new System.Drawing.Size(112, 21);
     this.cmbManager.TabIndex      = 9;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(38, 136);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.TabIndex = 8;
     this.ultraLabel9.Text     = "部门管理员:";
     //
     // btnAddDept
     //
     this.btnAddDept.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAddDept.Location    = new System.Drawing.Point(96, 176);
     this.btnAddDept.Name        = "btnAddDept";
     this.btnAddDept.TabIndex    = 6;
     this.btnAddDept.Text        = "添加部门";
     this.btnAddDept.Click      += new System.EventHandler(this.btnAddDept_Click);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(40, 104);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.TabIndex = 5;
     this.ultraLabel3.Text     = "折扣:";
     //
     // lblParentDept
     //
     this.lblParentDept.Location = new System.Drawing.Point(40, 72);
     this.lblParentDept.Name     = "lblParentDept";
     this.lblParentDept.TabIndex = 4;
     this.lblParentDept.Text     = "上级部门名称:";
     //
     // txtDiscount
     //
     this.txtDiscount.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDiscount.Location     = new System.Drawing.Point(144, 104);
     this.txtDiscount.Name         = "txtDiscount";
     this.txtDiscount.Size         = new System.Drawing.Size(100, 21);
     this.txtDiscount.TabIndex     = 3;
     //
     // cmbParentDept
     //
     this.cmbParentDept.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbParentDept.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbParentDept.Location      = new System.Drawing.Point(144, 72);
     this.cmbParentDept.Name          = "cmbParentDept";
     this.cmbParentDept.Size          = new System.Drawing.Size(112, 21);
     this.cmbParentDept.TabIndex      = 2;
     //
     // txtDeptName
     //
     this.txtDeptName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDeptName.Location     = new System.Drawing.Point(144, 32);
     this.txtDeptName.Name         = "txtDeptName";
     this.txtDeptName.Size         = new System.Drawing.Size(100, 21);
     this.txtDeptName.TabIndex     = 1;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(40, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "部门名称:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbParentDept2);
     this.ultraGroupBox2.Controls.Add(this.txtDeptName2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 232);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(280, 120);
     this.ultraGroupBox2.TabIndex = 1;
     this.ultraGroupBox2.Text     = "查询部门";
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(88, 80);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.TabIndex    = 11;
     this.ultraButton1.Text        = "查询部门";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(24, 56);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 10;
     this.ultraLabel4.Text     = "上级部门名称:";
     //
     // cmbParentDept2
     //
     this.cmbParentDept2.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbParentDept2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbParentDept2.Location      = new System.Drawing.Point(136, 48);
     this.cmbParentDept2.Name          = "cmbParentDept2";
     this.cmbParentDept2.Size          = new System.Drawing.Size(112, 21);
     this.cmbParentDept2.TabIndex      = 9;
     //
     // txtDeptName2
     //
     this.txtDeptName2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDeptName2.Location     = new System.Drawing.Point(136, 24);
     this.txtDeptName2.Name         = "txtDeptName2";
     this.txtDeptName2.Size         = new System.Drawing.Size(100, 21);
     this.txtDeptName2.TabIndex     = 8;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(32, 24);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.TabIndex = 7;
     this.ultraLabel5.Text     = "部门名称:";
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.cmbManager3);
     this.ultraGroupBox3.Controls.Add(this.ultraButton3);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel10);
     this.ultraGroupBox3.Controls.Add(this.ultraButton2);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox3.Controls.Add(this.txtDiscount3);
     this.ultraGroupBox3.Controls.Add(this.cmbParentDept3);
     this.ultraGroupBox3.Controls.Add(this.txtDeptName3);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox3.Location = new System.Drawing.Point(24, 360);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(280, 216);
     this.ultraGroupBox3.TabIndex = 2;
     this.ultraGroupBox3.Text     = "修改部门";
     //
     // cmbManager3
     //
     this.cmbManager3.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbManager3.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbManager3.Location      = new System.Drawing.Point(136, 144);
     this.cmbManager3.Name          = "cmbManager3";
     this.cmbManager3.Size          = new System.Drawing.Size(112, 21);
     this.cmbManager3.TabIndex      = 17;
     //
     // ultraButton3
     //
     this.ultraButton3.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton3.Location    = new System.Drawing.Point(136, 176);
     this.ultraButton3.Name        = "ultraButton3";
     this.ultraButton3.TabIndex    = 16;
     this.ultraButton3.Text        = "删除部门";
     this.ultraButton3.Click      += new System.EventHandler(this.ultraButton3_Click);
     //
     // ultraLabel10
     //
     this.ultraLabel10.Location = new System.Drawing.Point(32, 144);
     this.ultraLabel10.Name     = "ultraLabel10";
     this.ultraLabel10.TabIndex = 15;
     this.ultraLabel10.Text     = "部门管理员:";
     //
     // ultraButton2
     //
     this.ultraButton2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton2.Location    = new System.Drawing.Point(32, 176);
     this.ultraButton2.Name        = "ultraButton2";
     this.ultraButton2.TabIndex    = 13;
     this.ultraButton2.Text        = "修改部门";
     this.ultraButton2.Click      += new System.EventHandler(this.ultraButton2_Click);
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(32, 113);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.TabIndex = 12;
     this.ultraLabel6.Text     = "折扣:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(32, 81);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.TabIndex = 11;
     this.ultraLabel7.Text     = "上级部门名称:";
     //
     // txtDiscount3
     //
     this.txtDiscount3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDiscount3.Location     = new System.Drawing.Point(136, 113);
     this.txtDiscount3.Name         = "txtDiscount3";
     this.txtDiscount3.Size         = new System.Drawing.Size(100, 21);
     this.txtDiscount3.TabIndex     = 10;
     //
     // cmbParentDept3
     //
     this.cmbParentDept3.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbParentDept3.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbParentDept3.Location      = new System.Drawing.Point(136, 81);
     this.cmbParentDept3.Name          = "cmbParentDept3";
     this.cmbParentDept3.Size          = new System.Drawing.Size(112, 21);
     this.cmbParentDept3.TabIndex      = 9;
     //
     // txtDeptName3
     //
     this.txtDeptName3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDeptName3.Location     = new System.Drawing.Point(136, 41);
     this.txtDeptName3.Name         = "txtDeptName3";
     this.txtDeptName3.Size         = new System.Drawing.Size(100, 21);
     this.txtDeptName3.TabIndex     = 8;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(32, 41);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.TabIndex = 7;
     this.ultraLabel8.Text     = "部门名称:";
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location          = new System.Drawing.Point(344, 24);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(520, 544);
     this.ultraGrid1.TabIndex          = 3;
     this.ultraGrid1.Text              = "部门列表";
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // DeptManage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(888, 581);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox3);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "DeptManage";
     this.Text  = "部门管理";
     this.Load += new System.EventHandler(this.DeptManage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 34
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinDataSource.UltraDataBand ultraDataBand2 = new Infragistics.Win.UltraWinDataSource.UltraDataBand("箱号");
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.txtOpened = new System.Windows.Forms.TextBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.panelSize = new System.Windows.Forms.Panel();
     this.but_quit = new System.Windows.Forms.Button();
     this.lblPO = new System.Windows.Forms.Label();
     this.lblCustomer = new System.Windows.Forms.Label();
     this.butSave = new System.Windows.Forms.Button();
     this.butView = new System.Windows.Forms.Button();
     this.butDelRow = new System.Windows.Forms.Button();
     this.butSaveRow = new System.Windows.Forms.Button();
     this.butDelBox = new System.Windows.Forms.Button();
     this.txtQty = new System.Windows.Forms.TextBox();
     this.groupBoxColor = new System.Windows.Forms.GroupBox();
     this.panelColor = new System.Windows.Forms.Panel();
     this.groupBoxType = new System.Windows.Forms.GroupBox();
     this.panelType = new System.Windows.Forms.Panel();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.textPairQty = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textSize = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.textColor = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.textType = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.btnNewTray = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.butok = new System.Windows.Forms.Button();
     this.but_M = new System.Windows.Forms.Button();
     this.but_N = new System.Windows.Forms.Button();
     this.but_B = new System.Windows.Forms.Button();
     this.but_V = new System.Windows.Forms.Button();
     this.but_C = new System.Windows.Forms.Button();
     this.but_X = new System.Windows.Forms.Button();
     this.but_Z = new System.Windows.Forms.Button();
     this.but_del = new System.Windows.Forms.Button();
     this.but_L = new System.Windows.Forms.Button();
     this.but_K = new System.Windows.Forms.Button();
     this.but_J = new System.Windows.Forms.Button();
     this.but_H = new System.Windows.Forms.Button();
     this.but_G = new System.Windows.Forms.Button();
     this.but_F = new System.Windows.Forms.Button();
     this.but_D = new System.Windows.Forms.Button();
     this.but_S = new System.Windows.Forms.Button();
     this.but_A = new System.Windows.Forms.Button();
     this.but__ = new System.Windows.Forms.Button();
     this.but_P = new System.Windows.Forms.Button();
     this.but_O = new System.Windows.Forms.Button();
     this.but_I = new System.Windows.Forms.Button();
     this.but_U = new System.Windows.Forms.Button();
     this.but_Y = new System.Windows.Forms.Button();
     this.but_T = new System.Windows.Forms.Button();
     this.but_R = new System.Windows.Forms.Button();
     this.but_E = new System.Windows.Forms.Button();
     this.but_W = new System.Windows.Forms.Button();
     this.but_Q = new System.Windows.Forms.Button();
     this.but_0 = new System.Windows.Forms.Button();
     this.but_9 = new System.Windows.Forms.Button();
     this.but_8 = new System.Windows.Forms.Button();
     this.but_7 = new System.Windows.Forms.Button();
     this.but_6 = new System.Windows.Forms.Button();
     this.but_5 = new System.Windows.Forms.Button();
     this.but_4 = new System.Windows.Forms.Button();
     this.but_3 = new System.Windows.Forms.Button();
     this.but_2 = new System.Windows.Forms.Button();
     this.but_1 = new System.Windows.Forms.Button();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
     this.panel2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBoxColor.SuspendLayout();
     this.groupBoxType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(247, 43);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(31, 24);
     this.label2.TabIndex = 4;
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(284, 43);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(31, 24);
     this.label3.TabIndex = 5;
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(321, 43);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(31, 24);
     this.label4.TabIndex = 6;
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(358, 43);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(31, 24);
     this.label5.TabIndex = 7;
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(395, 43);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(31, 24);
     this.label6.TabIndex = 8;
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(432, 43);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(31, 24);
     this.label7.TabIndex = 9;
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("SimSun", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(469, 43);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(31, 24);
     this.label8.TabIndex = 10;
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label11
     //
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Location = new System.Drawing.Point(94, 42);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(29, 23);
     this.label11.TabIndex = 2;
     //
     // panel2
     //
     this.panel2.BackgroundImage = global::GENLSYS.MES.WinPAD.Properties.Resources._1;
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.txtOpened);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Controls.Add(this.but_quit);
     this.panel2.Controls.Add(this.lblPO);
     this.panel2.Controls.Add(this.lblCustomer);
     this.panel2.Controls.Add(this.butSave);
     this.panel2.Controls.Add(this.butView);
     this.panel2.Controls.Add(this.butDelRow);
     this.panel2.Controls.Add(this.butSaveRow);
     this.panel2.Controls.Add(this.butDelBox);
     this.panel2.Controls.Add(this.txtQty);
     this.panel2.Controls.Add(this.groupBoxColor);
     this.panel2.Controls.Add(this.groupBoxType);
     this.panel2.Controls.Add(this.ultraGrid1);
     this.panel2.Controls.Add(this.textPairQty);
     this.panel2.Controls.Add(this.label16);
     this.panel2.Controls.Add(this.textSize);
     this.panel2.Controls.Add(this.label15);
     this.panel2.Controls.Add(this.textColor);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.textType);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.button2);
     this.panel2.Controls.Add(this.label13);
     this.panel2.Controls.Add(this.label12);
     this.panel2.Controls.Add(this.btnNewTray);
     this.panel2.Controls.Add(this.panel1);
     this.panel2.Controls.Add(this.textBox2);
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Location = new System.Drawing.Point(1, 1);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1026, 750);
     this.panel2.TabIndex = 13;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(267, 30);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(64, 23);
     this.label1.TabIndex = 82;
     this.label1.Text = "托盘号:";
     //
     // txtOpened
     //
     this.txtOpened.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.txtOpened.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtOpened.Location = new System.Drawing.Point(423, 51);
     this.txtOpened.Multiline = true;
     this.txtOpened.Name = "txtOpened";
     this.txtOpened.Size = new System.Drawing.Size(35, 26);
     this.txtOpened.TabIndex = 81;
     this.txtOpened.Text = "0";
     this.txtOpened.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.LightSeaGreen;
     this.groupBox1.Controls.Add(this.panelSize);
     this.groupBox1.Location = new System.Drawing.Point(890, 345);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(121, 387);
     this.groupBox1.TabIndex = 59;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "尺码";
     //
     // panelSize
     //
     this.panelSize.AutoScroll = true;
     this.panelSize.BackColor = System.Drawing.Color.LightSeaGreen;
     this.panelSize.Location = new System.Drawing.Point(6, 13);
     this.panelSize.Name = "panelSize";
     this.panelSize.Size = new System.Drawing.Size(109, 368);
     this.panelSize.TabIndex = 0;
     //
     // but_quit
     //
     this.but_quit.BackColor = System.Drawing.Color.Transparent;
     this.but_quit.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.trackback;
     this.but_quit.Location = new System.Drawing.Point(959, 12);
     this.but_quit.Name = "but_quit";
     this.but_quit.Size = new System.Drawing.Size(64, 64);
     this.but_quit.TabIndex = 80;
     this.but_quit.Text = "新选订单";
     this.but_quit.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.but_quit.UseVisualStyleBackColor = false;
     this.but_quit.Click += new System.EventHandler(this.but_quit_Click);
     //
     // lblPO
     //
     this.lblPO.BackColor = System.Drawing.Color.Transparent;
     this.lblPO.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblPO.Location = new System.Drawing.Point(21, 46);
     this.lblPO.Name = "lblPO";
     this.lblPO.Size = new System.Drawing.Size(165, 23);
     this.lblPO.TabIndex = 67;
     this.lblPO.Text = "订单:";
     //
     // lblCustomer
     //
     this.lblCustomer.BackColor = System.Drawing.Color.Transparent;
     this.lblCustomer.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblCustomer.Location = new System.Drawing.Point(21, 21);
     this.lblCustomer.Name = "lblCustomer";
     this.lblCustomer.Size = new System.Drawing.Size(175, 23);
     this.lblCustomer.TabIndex = 66;
     this.lblCustomer.Text = "客户:";
     //
     // butSave
     //
     this.butSave.Enabled = false;
     this.butSave.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.save2;
     this.butSave.Location = new System.Drawing.Point(824, 12);
     this.butSave.Name = "butSave";
     this.butSave.Size = new System.Drawing.Size(64, 64);
     this.butSave.TabIndex = 65;
     this.butSave.Text = "保存本箱";
     this.butSave.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.butSave.UseVisualStyleBackColor = true;
     this.butSave.Click += new System.EventHandler(this.butSave_Click);
     //
     // butView
     //
     this.butView.Enabled = false;
     this.butView.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.help1;
     this.butView.Location = new System.Drawing.Point(758, 12);
     this.butView.Name = "butView";
     this.butView.Size = new System.Drawing.Size(64, 64);
     this.butView.TabIndex = 64;
     this.butView.Text = "查看原箱";
     this.butView.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.butView.UseVisualStyleBackColor = true;
     this.butView.Click += new System.EventHandler(this.butView_Click);
     //
     // butDelRow
     //
     this.butDelRow.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.delete1;
     this.butDelRow.Location = new System.Drawing.Point(959, 81);
     this.butDelRow.Name = "butDelRow";
     this.butDelRow.Size = new System.Drawing.Size(64, 64);
     this.butDelRow.TabIndex = 63;
     this.butDelRow.Text = "删除行";
     this.butDelRow.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.butDelRow.UseVisualStyleBackColor = true;
     this.butDelRow.Click += new System.EventHandler(this.butDelRow_Click);
     //
     // butSaveRow
     //
     this.butSaveRow.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.inbox;
     this.butSaveRow.Location = new System.Drawing.Point(892, 81);
     this.butSaveRow.Name = "butSaveRow";
     this.butSaveRow.Size = new System.Drawing.Size(65, 66);
     this.butSaveRow.TabIndex = 62;
     this.butSaveRow.UseVisualStyleBackColor = true;
     this.butSaveRow.Click += new System.EventHandler(this.butSaveRow_Click);
     //
     // butDelBox
     //
     this.butDelBox.Enabled = false;
     this.butDelBox.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.delete2;
     this.butDelBox.Location = new System.Drawing.Point(892, 11);
     this.butDelBox.Name = "butDelBox";
     this.butDelBox.Size = new System.Drawing.Size(64, 64);
     this.butDelBox.TabIndex = 61;
     this.butDelBox.Text = "删除箱";
     this.butDelBox.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.butDelBox.UseVisualStyleBackColor = true;
     this.butDelBox.Visible = false;
     this.butDelBox.Click += new System.EventHandler(this.butDelBox_Click);
     //
     // txtQty
     //
     this.txtQty.Enabled = false;
     this.txtQty.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtQty.Location = new System.Drawing.Point(423, 26);
     this.txtQty.Multiline = true;
     this.txtQty.Name = "txtQty";
     this.txtQty.Size = new System.Drawing.Size(35, 24);
     this.txtQty.TabIndex = 59;
     this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtQty.TextChanged += new System.EventHandler(this.txtQty_TextChanged);
     this.txtQty.Enter += new System.EventHandler(this.txtQty_Enter);
     //
     // groupBoxColor
     //
     this.groupBoxColor.BackColor = System.Drawing.Color.LightSeaGreen;
     this.groupBoxColor.Controls.Add(this.panelColor);
     this.groupBoxColor.Location = new System.Drawing.Point(748, 345);
     this.groupBoxColor.Name = "groupBoxColor";
     this.groupBoxColor.Size = new System.Drawing.Size(124, 387);
     this.groupBoxColor.TabIndex = 58;
     this.groupBoxColor.TabStop = false;
     this.groupBoxColor.Text = "颜色";
     //
     // panelColor
     //
     this.panelColor.AutoScroll = true;
     this.panelColor.BackColor = System.Drawing.Color.LightSeaGreen;
     this.panelColor.Location = new System.Drawing.Point(7, 14);
     this.panelColor.Name = "panelColor";
     this.panelColor.Size = new System.Drawing.Size(111, 366);
     this.panelColor.TabIndex = 2;
     //
     // groupBoxType
     //
     this.groupBoxType.BackColor = System.Drawing.Color.LightSeaGreen;
     this.groupBoxType.Controls.Add(this.panelType);
     this.groupBoxType.Location = new System.Drawing.Point(608, 345);
     this.groupBoxType.Name = "groupBoxType";
     this.groupBoxType.Size = new System.Drawing.Size(120, 388);
     this.groupBoxType.TabIndex = 57;
     this.groupBoxType.TabStop = false;
     this.groupBoxType.Text = "款号";
     //
     // panelType
     //
     this.panelType.AutoScroll = true;
     this.panelType.BackColor = System.Drawing.Color.LightSeaGreen;
     this.panelType.Location = new System.Drawing.Point(4, 13);
     this.panelType.Name = "panelType";
     this.panelType.Size = new System.Drawing.Size(109, 368);
     this.panelType.TabIndex = 1;
     //
     // ultraGrid1
     //
     appearance13.BackColor = System.Drawing.SystemColors.Window;
     appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.ultraGrid1.DisplayLayout.Appearance = appearance13;
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
     this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
     appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
     appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance14.BorderColor = System.Drawing.SystemColors.Window;
     this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance14;
     appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
     this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance16;
     this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance15.BackColor = System.Drawing.SystemColors.ControlLightLight;
     appearance15.BackColor2 = System.Drawing.SystemColors.Control;
     appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
     this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance15;
     this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
     this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
     appearance21.BackColor = System.Drawing.SystemColors.Window;
     appearance21.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance21;
     appearance17.BackColor = System.Drawing.SystemColors.Highlight;
     appearance17.ForeColor = System.Drawing.SystemColors.HighlightText;
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance17;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance24.BackColor = System.Drawing.SystemColors.Window;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance24;
     appearance20.BorderColor = System.Drawing.Color.Silver;
     appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance20;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
     appearance18.BackColor = System.Drawing.SystemColors.Control;
     appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
     appearance18.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
     appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
     appearance18.BorderColor = System.Drawing.SystemColors.Window;
     this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance18;
     appearance19.TextHAlignAsString = "Left";
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance19;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance22.BackColor = System.Drawing.SystemColors.Window;
     appearance22.BorderColor = System.Drawing.Color.Silver;
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance22;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
     appearance23.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance23;
     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.Location = new System.Drawing.Point(11, 86);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(550, 646);
     this.ultraGrid1.TabIndex = 56;
     this.ultraGrid1.Text = "ultraGrid1";
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
     //
     // textPairQty
     //
     this.textPairQty.Enabled = false;
     this.textPairQty.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textPairQty.Location = new System.Drawing.Point(801, 115);
     this.textPairQty.Multiline = true;
     this.textPairQty.Name = "textPairQty";
     this.textPairQty.Size = new System.Drawing.Size(87, 26);
     this.textPairQty.TabIndex = 55;
     this.textPairQty.TextChanged += new System.EventHandler(this.textPairQty_TextChanged);
     this.textPairQty.Enter += new System.EventHandler(this.textPairQty_Enter);
     //
     // label16
     //
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label16.Location = new System.Drawing.Point(752, 117);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(51, 23);
     this.label16.TabIndex = 54;
     this.label16.Text = "双数:";
     //
     // textSize
     //
     this.textSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textSize.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textSize.Location = new System.Drawing.Point(640, 115);
     this.textSize.Multiline = true;
     this.textSize.Name = "textSize";
     this.textSize.Size = new System.Drawing.Size(100, 26);
     this.textSize.TabIndex = 53;
     //
     // label15
     //
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label15.Location = new System.Drawing.Point(594, 117);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(51, 23);
     this.label15.TabIndex = 52;
     this.label15.Text = "尺码:";
     //
     // textColor
     //
     this.textColor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textColor.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textColor.Location = new System.Drawing.Point(801, 82);
     this.textColor.Multiline = true;
     this.textColor.Name = "textColor";
     this.textColor.Size = new System.Drawing.Size(87, 26);
     this.textColor.TabIndex = 51;
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location = new System.Drawing.Point(752, 84);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(48, 23);
     this.label14.TabIndex = 50;
     this.label14.Text = "颜色:";
     //
     // textType
     //
     this.textType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textType.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textType.Location = new System.Drawing.Point(640, 82);
     this.textType.Multiline = true;
     this.textType.Name = "textType";
     this.textType.Size = new System.Drawing.Size(100, 26);
     this.textType.TabIndex = 49;
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(594, 86);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(48, 19);
     this.label10.TabIndex = 48;
     this.label10.Text = "款号:";
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("SimSun", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(591, 21);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(48, 48);
     this.label9.TabIndex = 47;
     this.label9.Text = "箱号";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // button2
     //
     this.button2.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.openbox1;
     this.button2.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.button2.Location = new System.Drawing.Point(512, 11);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(64, 64);
     this.button2.TabIndex = 46;
     this.button2.Text = "开箱";
     this.button2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label13
     //
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.Location = new System.Drawing.Point(463, 28);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(41, 23);
     this.label13.TabIndex = 45;
     this.label13.Text = "箱";
     //
     // label12
     //
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.label12.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(404, 28);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(102, 23);
     this.label12.TabIndex = 42;
     this.label12.Text = "共有";
     //
     // btnNewTray
     //
     this.btnNewTray.Image = global::GENLSYS.MES.WinPAD.Properties.Resources.play;
     this.btnNewTray.Location = new System.Drawing.Point(194, 11);
     this.btnNewTray.Name = "btnNewTray";
     this.btnNewTray.Size = new System.Drawing.Size(64, 64);
     this.btnNewTray.TabIndex = 39;
     this.btnNewTray.Text = "新到托盘";
     this.btnNewTray.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnNewTray.UseVisualStyleBackColor = true;
     this.btnNewTray.Click += new System.EventHandler(this.btnNewTray_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Turquoise;
     this.panel1.Controls.Add(this.butok);
     this.panel1.Controls.Add(this.but_M);
     this.panel1.Controls.Add(this.but_N);
     this.panel1.Controls.Add(this.but_B);
     this.panel1.Controls.Add(this.but_V);
     this.panel1.Controls.Add(this.but_C);
     this.panel1.Controls.Add(this.but_X);
     this.panel1.Controls.Add(this.but_Z);
     this.panel1.Controls.Add(this.but_del);
     this.panel1.Controls.Add(this.but_L);
     this.panel1.Controls.Add(this.but_K);
     this.panel1.Controls.Add(this.but_J);
     this.panel1.Controls.Add(this.but_H);
     this.panel1.Controls.Add(this.but_G);
     this.panel1.Controls.Add(this.but_F);
     this.panel1.Controls.Add(this.but_D);
     this.panel1.Controls.Add(this.but_S);
     this.panel1.Controls.Add(this.but_A);
     this.panel1.Controls.Add(this.but__);
     this.panel1.Controls.Add(this.but_P);
     this.panel1.Controls.Add(this.but_O);
     this.panel1.Controls.Add(this.but_I);
     this.panel1.Controls.Add(this.but_U);
     this.panel1.Controls.Add(this.but_Y);
     this.panel1.Controls.Add(this.but_T);
     this.panel1.Controls.Add(this.but_R);
     this.panel1.Controls.Add(this.but_E);
     this.panel1.Controls.Add(this.but_W);
     this.panel1.Controls.Add(this.but_Q);
     this.panel1.Controls.Add(this.but_0);
     this.panel1.Controls.Add(this.but_9);
     this.panel1.Controls.Add(this.but_8);
     this.panel1.Controls.Add(this.but_7);
     this.panel1.Controls.Add(this.but_6);
     this.panel1.Controls.Add(this.but_5);
     this.panel1.Controls.Add(this.but_4);
     this.panel1.Controls.Add(this.but_3);
     this.panel1.Controls.Add(this.but_2);
     this.panel1.Controls.Add(this.but_1);
     this.panel1.Location = new System.Drawing.Point(592, 154);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(431, 185);
     this.panel1.TabIndex = 12;
     //
     // butok
     //
     this.butok.Location = new System.Drawing.Point(393, 132);
     this.butok.Name = "butok";
     this.butok.Size = new System.Drawing.Size(38, 38);
     this.butok.TabIndex = 79;
     this.butok.Text = "确定";
     this.butok.UseVisualStyleBackColor = true;
     //
     // but_M
     //
     this.but_M.Location = new System.Drawing.Point(349, 132);
     this.but_M.Name = "but_M";
     this.but_M.Size = new System.Drawing.Size(38, 38);
     this.but_M.TabIndex = 78;
     this.but_M.Text = "M";
     this.but_M.UseVisualStyleBackColor = true;
     //
     // but_N
     //
     this.but_N.Location = new System.Drawing.Point(305, 132);
     this.but_N.Name = "but_N";
     this.but_N.Size = new System.Drawing.Size(38, 38);
     this.but_N.TabIndex = 77;
     this.but_N.Text = "N";
     this.but_N.UseVisualStyleBackColor = true;
     //
     // but_B
     //
     this.but_B.Location = new System.Drawing.Point(261, 132);
     this.but_B.Name = "but_B";
     this.but_B.Size = new System.Drawing.Size(38, 38);
     this.but_B.TabIndex = 76;
     this.but_B.Text = "B";
     this.but_B.UseVisualStyleBackColor = true;
     //
     // but_V
     //
     this.but_V.Location = new System.Drawing.Point(217, 132);
     this.but_V.Name = "but_V";
     this.but_V.Size = new System.Drawing.Size(38, 38);
     this.but_V.TabIndex = 75;
     this.but_V.Text = "V";
     this.but_V.UseVisualStyleBackColor = true;
     //
     // but_C
     //
     this.but_C.Location = new System.Drawing.Point(173, 132);
     this.but_C.Name = "but_C";
     this.but_C.Size = new System.Drawing.Size(38, 38);
     this.but_C.TabIndex = 74;
     this.but_C.Text = "C";
     this.but_C.UseVisualStyleBackColor = true;
     //
     // but_X
     //
     this.but_X.Location = new System.Drawing.Point(129, 132);
     this.but_X.Name = "but_X";
     this.but_X.Size = new System.Drawing.Size(38, 38);
     this.but_X.TabIndex = 73;
     this.but_X.Text = "X";
     this.but_X.UseVisualStyleBackColor = true;
     //
     // but_Z
     //
     this.but_Z.Location = new System.Drawing.Point(85, 132);
     this.but_Z.Name = "but_Z";
     this.but_Z.Size = new System.Drawing.Size(38, 38);
     this.but_Z.TabIndex = 72;
     this.but_Z.Text = "Z";
     this.but_Z.UseVisualStyleBackColor = true;
     //
     // but_del
     //
     this.but_del.Location = new System.Drawing.Point(0, 132);
     this.but_del.Name = "but_del";
     this.but_del.Size = new System.Drawing.Size(79, 38);
     this.but_del.TabIndex = 71;
     this.but_del.Text = "删除";
     this.but_del.UseVisualStyleBackColor = true;
     //
     // but_L
     //
     this.but_L.Location = new System.Drawing.Point(393, 88);
     this.but_L.Name = "but_L";
     this.but_L.Size = new System.Drawing.Size(38, 38);
     this.but_L.TabIndex = 70;
     this.but_L.Text = "L";
     this.but_L.UseVisualStyleBackColor = true;
     //
     // but_K
     //
     this.but_K.Location = new System.Drawing.Point(349, 88);
     this.but_K.Name = "but_K";
     this.but_K.Size = new System.Drawing.Size(38, 38);
     this.but_K.TabIndex = 69;
     this.but_K.Text = "K";
     this.but_K.UseVisualStyleBackColor = true;
     //
     // but_J
     //
     this.but_J.Location = new System.Drawing.Point(305, 88);
     this.but_J.Name = "but_J";
     this.but_J.Size = new System.Drawing.Size(38, 38);
     this.but_J.TabIndex = 68;
     this.but_J.Text = "J";
     this.but_J.UseVisualStyleBackColor = true;
     //
     // but_H
     //
     this.but_H.Location = new System.Drawing.Point(261, 88);
     this.but_H.Name = "but_H";
     this.but_H.Size = new System.Drawing.Size(38, 38);
     this.but_H.TabIndex = 67;
     this.but_H.Text = "H";
     this.but_H.UseVisualStyleBackColor = true;
     //
     // but_G
     //
     this.but_G.Location = new System.Drawing.Point(217, 88);
     this.but_G.Name = "but_G";
     this.but_G.Size = new System.Drawing.Size(38, 38);
     this.but_G.TabIndex = 66;
     this.but_G.Text = "G";
     this.but_G.UseVisualStyleBackColor = true;
     //
     // but_F
     //
     this.but_F.Location = new System.Drawing.Point(173, 88);
     this.but_F.Name = "but_F";
     this.but_F.Size = new System.Drawing.Size(38, 38);
     this.but_F.TabIndex = 65;
     this.but_F.Text = "F";
     this.but_F.UseVisualStyleBackColor = true;
     //
     // but_D
     //
     this.but_D.Location = new System.Drawing.Point(129, 88);
     this.but_D.Name = "but_D";
     this.but_D.Size = new System.Drawing.Size(38, 38);
     this.but_D.TabIndex = 64;
     this.but_D.Text = "D";
     this.but_D.UseVisualStyleBackColor = true;
     //
     // but_S
     //
     this.but_S.Location = new System.Drawing.Point(85, 88);
     this.but_S.Name = "but_S";
     this.but_S.Size = new System.Drawing.Size(38, 38);
     this.but_S.TabIndex = 63;
     this.but_S.Text = "S";
     this.but_S.UseVisualStyleBackColor = true;
     //
     // but_A
     //
     this.but_A.Location = new System.Drawing.Point(41, 88);
     this.but_A.Name = "but_A";
     this.but_A.Size = new System.Drawing.Size(38, 38);
     this.but_A.TabIndex = 62;
     this.but_A.Text = "A";
     this.but_A.UseVisualStyleBackColor = true;
     //
     // but__
     //
     this.but__.Location = new System.Drawing.Point(0, 88);
     this.but__.Name = "but__";
     this.but__.Size = new System.Drawing.Size(38, 38);
     this.but__.TabIndex = 61;
     this.but__.Text = "_";
     this.but__.UseVisualStyleBackColor = true;
     //
     // but_P
     //
     this.but_P.Location = new System.Drawing.Point(393, 44);
     this.but_P.Name = "but_P";
     this.but_P.Size = new System.Drawing.Size(38, 38);
     this.but_P.TabIndex = 60;
     this.but_P.Text = "P";
     this.but_P.UseVisualStyleBackColor = true;
     //
     // but_O
     //
     this.but_O.Location = new System.Drawing.Point(349, 44);
     this.but_O.Name = "but_O";
     this.but_O.Size = new System.Drawing.Size(38, 38);
     this.but_O.TabIndex = 59;
     this.but_O.Text = "0";
     this.but_O.UseVisualStyleBackColor = true;
     //
     // but_I
     //
     this.but_I.Location = new System.Drawing.Point(305, 44);
     this.but_I.Name = "but_I";
     this.but_I.Size = new System.Drawing.Size(38, 38);
     this.but_I.TabIndex = 58;
     this.but_I.Text = "I";
     this.but_I.UseVisualStyleBackColor = true;
     //
     // but_U
     //
     this.but_U.Location = new System.Drawing.Point(261, 44);
     this.but_U.Name = "but_U";
     this.but_U.Size = new System.Drawing.Size(38, 38);
     this.but_U.TabIndex = 57;
     this.but_U.Text = "U";
     this.but_U.UseVisualStyleBackColor = true;
     //
     // but_Y
     //
     this.but_Y.Location = new System.Drawing.Point(217, 44);
     this.but_Y.Name = "but_Y";
     this.but_Y.Size = new System.Drawing.Size(38, 38);
     this.but_Y.TabIndex = 56;
     this.but_Y.Text = "Y";
     this.but_Y.UseVisualStyleBackColor = true;
     //
     // but_T
     //
     this.but_T.Location = new System.Drawing.Point(173, 44);
     this.but_T.Name = "but_T";
     this.but_T.Size = new System.Drawing.Size(38, 38);
     this.but_T.TabIndex = 55;
     this.but_T.Text = "T";
     this.but_T.UseVisualStyleBackColor = true;
     //
     // but_R
     //
     this.but_R.Location = new System.Drawing.Point(129, 44);
     this.but_R.Name = "but_R";
     this.but_R.Size = new System.Drawing.Size(38, 38);
     this.but_R.TabIndex = 54;
     this.but_R.Text = "R";
     this.but_R.UseVisualStyleBackColor = true;
     //
     // but_E
     //
     this.but_E.Location = new System.Drawing.Point(85, 44);
     this.but_E.Name = "but_E";
     this.but_E.Size = new System.Drawing.Size(38, 38);
     this.but_E.TabIndex = 53;
     this.but_E.Text = "E";
     this.but_E.UseVisualStyleBackColor = true;
     //
     // but_W
     //
     this.but_W.Location = new System.Drawing.Point(41, 44);
     this.but_W.Name = "but_W";
     this.but_W.Size = new System.Drawing.Size(38, 38);
     this.but_W.TabIndex = 52;
     this.but_W.Text = "W";
     this.but_W.UseVisualStyleBackColor = true;
     //
     // but_Q
     //
     this.but_Q.Location = new System.Drawing.Point(0, 44);
     this.but_Q.Name = "but_Q";
     this.but_Q.Size = new System.Drawing.Size(38, 38);
     this.but_Q.TabIndex = 51;
     this.but_Q.Text = "Q";
     this.but_Q.UseVisualStyleBackColor = true;
     //
     // but_0
     //
     this.but_0.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_0.Location = new System.Drawing.Point(0, 2);
     this.but_0.Name = "but_0";
     this.but_0.Size = new System.Drawing.Size(38, 38);
     this.but_0.TabIndex = 50;
     this.but_0.Text = "0";
     this.but_0.UseVisualStyleBackColor = true;
     //
     // but_9
     //
     this.but_9.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_9.Location = new System.Drawing.Point(390, 2);
     this.but_9.Name = "but_9";
     this.but_9.Size = new System.Drawing.Size(38, 38);
     this.but_9.TabIndex = 49;
     this.but_9.Text = "9";
     this.but_9.UseVisualStyleBackColor = true;
     //
     // but_8
     //
     this.but_8.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_8.Location = new System.Drawing.Point(346, 2);
     this.but_8.Name = "but_8";
     this.but_8.Size = new System.Drawing.Size(38, 38);
     this.but_8.TabIndex = 48;
     this.but_8.Text = "8";
     this.but_8.UseVisualStyleBackColor = true;
     //
     // but_7
     //
     this.but_7.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_7.Location = new System.Drawing.Point(302, 2);
     this.but_7.Name = "but_7";
     this.but_7.Size = new System.Drawing.Size(38, 38);
     this.but_7.TabIndex = 47;
     this.but_7.Text = "7";
     this.but_7.UseVisualStyleBackColor = true;
     //
     // but_6
     //
     this.but_6.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_6.Location = new System.Drawing.Point(258, 2);
     this.but_6.Name = "but_6";
     this.but_6.Size = new System.Drawing.Size(38, 38);
     this.but_6.TabIndex = 46;
     this.but_6.Text = "6";
     this.but_6.UseVisualStyleBackColor = true;
     //
     // but_5
     //
     this.but_5.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_5.Location = new System.Drawing.Point(214, 2);
     this.but_5.Name = "but_5";
     this.but_5.Size = new System.Drawing.Size(38, 38);
     this.but_5.TabIndex = 45;
     this.but_5.Text = "5";
     this.but_5.UseVisualStyleBackColor = true;
     //
     // but_4
     //
     this.but_4.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_4.Location = new System.Drawing.Point(170, 2);
     this.but_4.Name = "but_4";
     this.but_4.Size = new System.Drawing.Size(38, 38);
     this.but_4.TabIndex = 44;
     this.but_4.Text = "4";
     this.but_4.UseVisualStyleBackColor = true;
     //
     // but_3
     //
     this.but_3.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_3.Location = new System.Drawing.Point(126, 2);
     this.but_3.Name = "but_3";
     this.but_3.Size = new System.Drawing.Size(38, 38);
     this.but_3.TabIndex = 43;
     this.but_3.Text = "3";
     this.but_3.UseVisualStyleBackColor = true;
     //
     // but_2
     //
     this.but_2.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_2.Location = new System.Drawing.Point(82, 2);
     this.but_2.Name = "but_2";
     this.but_2.Size = new System.Drawing.Size(38, 38);
     this.but_2.TabIndex = 42;
     this.but_2.Text = "2";
     this.but_2.UseVisualStyleBackColor = true;
     //
     // but_1
     //
     this.but_1.Font = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.but_1.Location = new System.Drawing.Point(41, 2);
     this.but_1.Name = "but_1";
     this.but_1.Size = new System.Drawing.Size(38, 38);
     this.but_1.TabIndex = 41;
     this.but_1.Text = "1";
     this.but_1.UseVisualStyleBackColor = true;
     //
     // textBox2
     //
     this.textBox2.Enabled = false;
     this.textBox2.Font = new System.Drawing.Font("SimSun", 26.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBox2.Location = new System.Drawing.Point(641, 18);
     this.textBox2.Multiline = true;
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(100, 54);
     this.textBox2.TabIndex = 38;
     this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     this.textBox2.Enter += new System.EventHandler(this.textBox2_Enter);
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.Color.White;
     this.textBox1.Enabled = false;
     this.textBox1.Font = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBox1.Location = new System.Drawing.Point(330, 26);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(65, 25);
     this.textBox1.TabIndex = 37;
     this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
     //
     // ultraDataSource1
     //
     this.ultraDataSource1.Band.ChildBands.AddRange(new object[] {
     ultraDataBand2});
     //
     // frmOpenBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(1024, 768);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmOpenBox";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBoxColor.ResumeLayout(false);
     this.groupBoxType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("判定时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool3 = new Infragistics.Win.UltraWinToolbars.LabelTool("炉号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool4 = new Infragistics.Win.UltraWinToolbars.LabelTool("轧制编号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool4");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool9 = new Infragistics.Win.UltraWinToolbars.LabelTool("判定时间");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool10 = new Infragistics.Win.UltraWinToolbars.LabelTool("至");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool11 = new Infragistics.Win.UltraWinToolbars.LabelTool("炉号");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool12 = new Infragistics.Win.UltraWinToolbars.LabelTool("轧制编号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TechCardUpdateQueryFrm));
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool4");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool5");
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_DATATIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATIONTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATIONIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATIONMAC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATIONMEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_KEYWORD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BANDNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TABLENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MODULENAME");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.tbx_QBatchNo = new System.Windows.Forms.TextBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.tbx_QStoveNo = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     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.TechCardUpdateFrm_Fill_Panel = new System.Windows.Forms.Panel();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet2 = new System.Data.DataSet();
     this.dataTable2 = new System.Data.DataTable();
     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.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.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.dataColumn29 = 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.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = 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.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.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.TechCardUpdateFrm_Fill_Panel.SuspendLayout();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tbx_QBatchNo);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.tbx_QStoveNo);
     this.panel1.Controls.Add(this.dateTimePicker1);
     this.panel1.Controls.Add(this.dateTimePicker2);
     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(1002, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // tbx_QBatchNo
     //
     this.coreBind.SetDatabasecommand(this.tbx_QBatchNo, null);
     this.tbx_QBatchNo.Location = new System.Drawing.Point(467, 2);
     this.tbx_QBatchNo.Name = "tbx_QBatchNo";
     this.tbx_QBatchNo.Size = new System.Drawing.Size(100, 21);
     this.tbx_QBatchNo.TabIndex = 4;
     this.coreBind.SetVerification(this.tbx_QBatchNo, null);
     this.tbx_QBatchNo.TextChanged += new System.EventHandler(this.tbx_QBatchNo_TextChanged);
     //
     // 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, 28);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1002, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // tbx_QStoveNo
     //
     this.coreBind.SetDatabasecommand(this.tbx_QStoveNo, null);
     this.tbx_QStoveNo.Location = new System.Drawing.Point(301, 2);
     this.tbx_QStoveNo.Name = "tbx_QStoveNo";
     this.tbx_QStoveNo.Size = new System.Drawing.Size(100, 21);
     this.tbx_QStoveNo.TabIndex = 3;
     this.coreBind.SetVerification(this.tbx_QStoveNo, null);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(63, 3);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(86, 21);
     this.dateTimePicker1.TabIndex = 1;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(172, 2);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(86, 21);
     this.dateTimePicker2.TabIndex = 2;
     this.coreBind.SetVerification(this.dateTimePicker2, 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, 28);
     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.Office2007;
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 0;
     labelTool1.InstanceProps.Width = 63;
     controlContainerTool1.ControlName = "dateTimePicker1";
     controlContainerTool2.ControlName = "dateTimePicker2";
     labelTool3.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.ControlName = "tbx_QStoveNo";
     labelTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool4.ControlName = "tbx_QBatchNo";
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool1,
     controlContainerTool1,
     labelTool2,
     controlContainerTool2,
     labelTool3,
     controlContainerTool3,
     labelTool4,
     controlContainerTool4,
     buttonTool1,
     buttonTool3,
     buttonTool4});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar2});
     labelTool9.SharedPropsInternal.Caption = "操作时间";
     labelTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     labelTool10.SharedPropsInternal.Caption = "至";
     labelTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     labelTool11.SharedPropsInternal.Caption = "炉号";
     labelTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     labelTool12.SharedPropsInternal.Caption = "轧制编号";
     labelTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
     buttonTool5.SharedPropsInternal.AppearancesLarge.Appearance = appearance11;
     appearance12.Image = ((object)(resources.GetObject("appearance12.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
     buttonTool5.SharedPropsInternal.Caption = "查询";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance21.Image = ((object)(resources.GetObject("appearance21.Image")));
     buttonTool7.SharedPropsInternal.AppearancesLarge.Appearance = appearance21;
     appearance22.Image = ((object)(resources.GetObject("appearance22.Image")));
     buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance22;
     buttonTool7.SharedPropsInternal.Caption = "修改";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool7.SharedPropsInternal.Visible = false;
     appearance23.Image = ((object)(resources.GetObject("appearance23.Image")));
     buttonTool8.SharedPropsInternal.AppearancesLarge.Appearance = appearance23;
     appearance24.Image = ((object)(resources.GetObject("appearance24.Image")));
     buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance24;
     buttonTool8.SharedPropsInternal.Caption = "删除";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool8.SharedPropsInternal.Visible = false;
     controlContainerTool5.ControlName = "dateTimePicker1";
     controlContainerTool5.SharedPropsInternal.Caption = "ControlContainerTool1";
     controlContainerTool6.ControlName = "dateTimePicker2";
     controlContainerTool6.SharedPropsInternal.Caption = "ControlContainerTool2";
     controlContainerTool7.ControlName = "tbx_QStoveNo";
     controlContainerTool7.SharedPropsInternal.Caption = "ControlContainerTool3";
     controlContainerTool8.ControlName = "tbx_QBatchNo";
     controlContainerTool8.SharedPropsInternal.Caption = "ControlContainerTool4";
     controlContainerTool10.SharedPropsInternal.Caption = "ControlContainerTool5";
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool9,
     labelTool10,
     labelTool11,
     labelTool12,
     buttonTool5,
     buttonTool7,
     buttonTool8,
     controlContainerTool5,
     controlContainerTool6,
     controlContainerTool7,
     controlContainerTool8,
     controlContainerTool10});
     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)(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(1002, 28);
     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)(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(1002, 28);
     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)(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(1002, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // TechCardUpdateFrm_Fill_Panel
     //
     this.TechCardUpdateFrm_Fill_Panel.Controls.Add(this.ultraPanel1);
     this.TechCardUpdateFrm_Fill_Panel.Controls.Add(this.panel1);
     this.TechCardUpdateFrm_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.TechCardUpdateFrm_Fill_Panel, null);
     this.TechCardUpdateFrm_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.TechCardUpdateFrm_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.TechCardUpdateFrm_Fill_Panel.Name = "TechCardUpdateFrm_Fill_Panel";
     this.TechCardUpdateFrm_Fill_Panel.Size = new System.Drawing.Size(1002, 674);
     this.TechCardUpdateFrm_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.TechCardUpdateFrm_Fill_Panel, null);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox1);
     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, 26);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(1002, 648);
     this.ultraPanel1.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1002, 648);
     this.ultraGroupBox1.TabIndex = 1;
     this.ultraGroupBox1.Text = "工艺流动卡";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet2;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid1.DisplayLayout.Appearance = appearance1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn13.Header.VisiblePosition = 12;
     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;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 10;
     appearance2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance2;
     appearance3.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance3;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance4.BackColor2 = System.Drawing.Color.White;
     appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance4.FontData.SizeInPoints = 11F;
     appearance4.ForeColor = System.Drawing.Color.Black;
     appearance4.TextHAlignAsString = "Center";
     appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance4;
     appearance5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance5;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance6;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.VisibleIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 30;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance7.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance7;
     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.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(996, 627);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     //
     // dataSet2
     //
     this.dataSet2.DataSetName = "NewDataSet";
     this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable2});
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     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.dataTable2.TableName = "Table1";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "操作时间";
     this.dataColumn80.ColumnName = "FD_DATATIME";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "操作类型";
     this.dataColumn81.ColumnName = "FS_OPERATIONTYPE";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "操作人";
     this.dataColumn82.ColumnName = "FS_OPERATER";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "IP地址";
     this.dataColumn83.ColumnName = "FS_OPERATIONIP";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "MAC地址";
     this.dataColumn84.ColumnName = "FS_OPERATIONMAC";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "操作内容";
     this.dataColumn85.ColumnName = "FS_OPERATIONMEMO";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "冶炼炉号";
     this.dataColumn86.ColumnName = "FS_STOVENO";
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "轧制编号";
     this.dataColumn87.ColumnName = "FS_BATCHNO";
     //
     // dataColumn88
     //
     this.dataColumn88.Caption = "关键字";
     this.dataColumn88.ColumnName = "FS_KEYWORD";
     //
     // dataColumn89
     //
     this.dataColumn89.Caption = "车号";
     this.dataColumn89.ColumnName = "FS_CARNO";
     //
     // dataColumn90
     //
     this.dataColumn90.Caption = "吊(支)号";
     this.dataColumn90.ColumnName = "FS_BANDNO";
     //
     // dataColumn91
     //
     this.dataColumn91.Caption = "表名";
     this.dataColumn91.ColumnName = "FS_TABLENAME";
     //
     // dataColumn92
     //
     this.dataColumn92.Caption = "模块名";
     this.dataColumn92.ColumnName = "FS_MODULENAME";
     //
     // 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.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.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     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.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_GP_LEN";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "钢坯订单号";
     this.dataColumn6.ColumnName = "FS_GP_ORDERNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "C";
     this.dataColumn7.ColumnName = "FN_GP_C";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "Si";
     this.dataColumn8.ColumnName = "FN_GP_SI";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "Mn";
     this.dataColumn9.ColumnName = "FN_GP_MN";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "S";
     this.dataColumn10.ColumnName = "FN_GP_S";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "P";
     this.dataColumn11.ColumnName = "FN_GP_P";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "Ni";
     this.dataColumn12.ColumnName = "FN_GP_NI";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "Cr";
     this.dataColumn13.ColumnName = "FN_GP_CR";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "Cu";
     this.dataColumn14.ColumnName = "FN_GP_CU";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "V";
     this.dataColumn15.ColumnName = "FN_GP_V";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "Mo";
     this.dataColumn16.ColumnName = "FN_GP_MO";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "Nb";
     this.dataColumn17.ColumnName = "FN_GP_NB";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "Ceq";
     this.dataColumn18.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "钢坯计量条数";
     this.dataColumn19.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "钢坯备注";
     this.dataColumn20.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "判定员";
     this.dataColumn21.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "判定时间";
     this.dataColumn22.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "计量总坯重";
     this.dataColumn23.ColumnName = "FN_JJ_WEIGHT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_JJ_OPERATOR";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "验收条数";
     this.dataColumn25.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "验收人";
     this.dataColumn26.ColumnName = "FS_GPYS_RECEIVER";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "轧制编号";
     this.dataColumn27.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "材订单号";
     this.dataColumn28.ColumnName = "FS_ZC_ORDERNO";
     //
     // dataColumn29
     //
     this.dataColumn29.Caption = "进炉时间";
     this.dataColumn29.ColumnName = "FD_ZC_ENTERDATETIME";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "进炉条数";
     this.dataColumn30.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_ZC_OPERATOR";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "轧制规格";
     this.dataColumn32.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FD_ZZ_DATE";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "轧废条数";
     this.dataColumn34.ColumnName = "FN_ZZ_WASTNUM";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "成品条数";
     this.dataColumn35.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_ZZ_SHIFT";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FS_ZZ_OPERATOR";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "成品件数";
     this.dataColumn38.ColumnName = "FN_JZ_NUM";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "成品材重量";
     this.dataColumn39.ColumnName = "FN_JZ_WEIGHT";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FN_JZ_RETURNWEIGHT";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FN_JZ_WASTWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FS_JZ_OPERATOR";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FS_JZ_CHECKER";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FS_MEMO";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "钢坯计量是否完炉";
     this.dataColumn45.ColumnName = "FS_GP_COMPLETEFLAG";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FD_ANALYSISTIME";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "轧材备注";
     this.dataColumn47.ColumnName = "FS_ZC_MEMO";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "轧制备注";
     this.dataColumn48.ColumnName = "FS_ZZ_MEMO";
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FS_GP_USED";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "垛架号";
     this.dataColumn50.ColumnName = "FS_DJH";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "建议轧制规格";
     this.dataColumn51.ColumnName = "FS_ADVISESPEC";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FS_FREEZED";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "验收重量";
     this.dataColumn53.ColumnName = "FN_GPYS_WEIGHT";
     //
     // dataColumn54
     //
     this.dataColumn54.ColumnName = "FS_CHECKED";
     //
     // dataColumn55
     //
     this.dataColumn55.ColumnName = "FS_GPYS_RESULT";
     //
     // dataColumn56
     //
     this.dataColumn56.ColumnName = "FS_QYG";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "冶炼班别";
     this.dataColumn57.ColumnName = "FS_YLBB";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "材理重";
     this.dataColumn58.ColumnName = "FN_JZ_THEORYWEIGHT";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "作业区代码";
     this.dataColumn59.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn60
     //
     this.dataColumn60.ColumnName = "FS_GP_PRODUCTOR";
     //
     // dataColumn61
     //
     this.dataColumn61.ColumnName = "FS_GP_SEND";
     //
     // dataColumn62
     //
     this.dataColumn62.ColumnName = "FS_GP_WG";
     //
     // dataColumn63
     //
     this.dataColumn63.ColumnName = "FS_GP_HTH";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "材是否开始计量";
     this.dataColumn64.ColumnName = "FS_BC_WEIGHTFLAG";
     //
     // dataColumn65
     //
     this.dataColumn65.ColumnName = "FS_GP_ITEMNO";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "Al";
     this.dataColumn66.ColumnName = "FN_GP_AL";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "Sn";
     this.dataColumn67.ColumnName = "FN_GP_SN";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "Ti";
     this.dataColumn68.ColumnName = "FN_GP_TI";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "Als";
     this.dataColumn69.ColumnName = "FN_GP_ALS";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "N";
     this.dataColumn70.ColumnName = "FN_GP_N";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "As";
     this.dataColumn71.ColumnName = "FN_GP_AS";
     //
     // dataColumn72
     //
     this.dataColumn72.ColumnName = "FS_ISVALID";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "Ca";
     this.dataColumn73.ColumnName = "FN_GP_CA";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "B";
     this.dataColumn74.ColumnName = "FN_GP_B";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "Alt";
     this.dataColumn75.ColumnName = "FN_GP_ALT";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "Sb";
     this.dataColumn76.ColumnName = "FN_GP_SB";
     //
     // dataColumn77
     //
     this.dataColumn77.ColumnName = "FS_GP_SOURCE";
     //
     // dataColumn78
     //
     this.dataColumn78.ColumnName = "FS_GP_MATCH";
     //
     // dataColumn79
     //
     this.dataColumn79.ColumnName = "FS_TYPE";
     //
     // TechCardUpdateQueryFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1002, 674);
     this.Controls.Add(this.TechCardUpdateFrm_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "TechCardUpdateQueryFrm";
     this.Text = "操作日志查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.TechCardUpdateFrm_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.TechCardUpdateFrm_Fill_Panel.ResumeLayout(false);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement1 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.NumericSeries numericSeries1 = new Infragistics.UltraChart.Resources.Appearance.NumericSeries();
     Infragistics.UltraChart.Resources.Appearance.NumericDataPoint numericDataPoint1 = new Infragistics.UltraChart.Resources.Appearance.NumericDataPoint();
     Infragistics.UltraChart.Resources.Appearance.PaintElement paintElement2 = new Infragistics.UltraChart.Resources.Appearance.PaintElement();
     Infragistics.UltraChart.Resources.Appearance.GradientEffect gradientEffect1 = new Infragistics.UltraChart.Resources.Appearance.GradientEffect();
     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();
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     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_VOICENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_INSTRTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICEFILE");
     Infragistics.Win.Appearance appearance20 = 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 appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("语音表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_INSTRTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICEFILE");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CarWeigh));
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量点基础表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SIGN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_METERTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_METERPARA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MOXAIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MOXAPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOUSER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VIEDOPWD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTDEPART");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RTUIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RTUPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTERIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTTYPECODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_USEDPRINTPAPER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_USEDPRINTINK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEDIP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEDPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_VALUE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ALLOWOTHERTARE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISPLAYPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISPLAYPARA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_READERPORT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_READERPARA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_READERTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISPLAYTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FF_CLEARVALUE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTSTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINTFLAG");
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YYDJ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("剩余纸张数");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("HZ");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YCJLTX");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("BDDY");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btCorrention");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YYDJ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("剩余纸张数");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("HZ");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool26 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QHSP");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool27 = new Infragistics.Win.UltraWinToolbars.ButtonTool("YCJLTX");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool28 = new Infragistics.Win.UltraWinToolbars.ButtonTool("BDDY");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool29 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btCorrention");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool30 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane1 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.Floating, new System.Guid("5b8acd7d-e490-4d71-9a76-0e1f5de0745a"));
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane2 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedRight, new System.Guid("fab36dca-93df-47ae-a661-844c242a30e6"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane1 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("c5b64a87-9b91-46c1-af96-407f0c9a7a68"), new System.Guid("5b8acd7d-e490-4d71-9a76-0e1f5de0745a"), 0, new System.Guid("fab36dca-93df-47ae-a661-844c242a30e6"), -1);
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane3 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.Floating, new System.Guid("d4bf97a0-4113-40bb-bf58-1ccec85fb19f"));
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane4 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedRight, new System.Guid("d2d5fb92-0acb-49d3-8207-82e5bb965657"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane2 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("1e06945f-66c7-4bbc-96f6-b60616076aa9"), new System.Guid("d4bf97a0-4113-40bb-bf58-1ccec85fb19f"), 0, new System.Guid("d2d5fb92-0acb-49d3-8207-82e5bb965657"), -1);
     this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.panelYCSP = new System.Windows.Forms.Panel();
     this.panel16 = new System.Windows.Forms.Panel();
     this.panel20 = new System.Windows.Forms.Panel();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.videoChannel8 = new System.Windows.Forms.PictureBox();
     this.panel15 = new System.Windows.Forms.Panel();
     this.panel19 = new System.Windows.Forms.Panel();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.videoChannel7 = new System.Windows.Forms.PictureBox();
     this.panel22 = new System.Windows.Forms.Panel();
     this.panel18 = new System.Windows.Forms.Panel();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.videoChannel6 = new System.Windows.Forms.PictureBox();
     this.panel21 = new System.Windows.Forms.Panel();
     this.panel17 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.videoChannel5 = new System.Windows.Forms.PictureBox();
     this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraChart1 = new Infragistics.Win.UltraWinChart.UltraChart();
     this.picHT = new System.Windows.Forms.PictureBox();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelYYBF = new System.Windows.Forms.Panel();
     this.panel23 = new System.Windows.Forms.Panel();
     this.ultraGrid5 = 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.dataColumn52 = 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.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.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.dataColumn171 = new System.Data.DataColumn();
     this.dataColumn216 = new System.Data.DataColumn();
     this.dataColumn219 = new System.Data.DataColumn();
     this.dataColumn220 = 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.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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn71 = 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.dataColumn102 = new System.Data.DataColumn();
     this.dataColumn101 = 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.dataColumn113 = new System.Data.DataColumn();
     this.dataColumn114 = new System.Data.DataColumn();
     this.dataColumn115 = new System.Data.DataColumn();
     this.dataColumn176 = new System.Data.DataColumn();
     this.dataColumn177 = new System.Data.DataColumn();
     this.dataColumn178 = new System.Data.DataColumn();
     this.dataColumn179 = new System.Data.DataColumn();
     this.dataColumn180 = new System.Data.DataColumn();
     this.dataColumn181 = new System.Data.DataColumn();
     this.dataColumn182 = new System.Data.DataColumn();
     this.dataColumn183 = new System.Data.DataColumn();
     this.dataColumn184 = new System.Data.DataColumn();
     this.dataColumn185 = new System.Data.DataColumn();
     this.dataColumn186 = new System.Data.DataColumn();
     this.dataColumn187 = new System.Data.DataColumn();
     this.dataColumn188 = new System.Data.DataColumn();
     this.dataColumn189 = new System.Data.DataColumn();
     this.dataColumn204 = new System.Data.DataColumn();
     this.dataColumn205 = new System.Data.DataColumn();
     this.dataColumn206 = new System.Data.DataColumn();
     this.dataColumn207 = new System.Data.DataColumn();
     this.dataColumn208 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn92 = new System.Data.DataColumn();
     this.dataColumn93 = new System.Data.DataColumn();
     this.dataTable4 = new System.Data.DataTable();
     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.dataColumn29 = 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.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn172 = new System.Data.DataColumn();
     this.dataColumn173 = new System.Data.DataColumn();
     this.dataColumn174 = new System.Data.DataColumn();
     this.dataColumn175 = new System.Data.DataColumn();
     this.dataColumn217 = new System.Data.DataColumn();
     this.dataColumn218 = new System.Data.DataColumn();
     this.dataTable5 = new System.Data.DataTable();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataTable6 = new System.Data.DataTable();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = 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.dataColumn221 = new System.Data.DataColumn();
     this.dataColumn222 = new System.Data.DataColumn();
     this.dataColumn223 = new System.Data.DataColumn();
     this.dataColumn224 = new System.Data.DataColumn();
     this.dataColumn225 = new System.Data.DataColumn();
     this.dataColumn226 = new System.Data.DataColumn();
     this.dataColumn227 = new System.Data.DataColumn();
     this.dataColumn228 = new System.Data.DataColumn();
     this.dataColumn229 = new System.Data.DataColumn();
     this.dataColumn230 = new System.Data.DataColumn();
     this.dataColumn231 = new System.Data.DataColumn();
     this.dataTable7 = new System.Data.DataTable();
     this.dataColumn116 = new System.Data.DataColumn();
     this.dataColumn117 = new System.Data.DataColumn();
     this.dataColumn118 = new System.Data.DataColumn();
     this.dataColumn119 = new System.Data.DataColumn();
     this.dataTable8 = new System.Data.DataTable();
     this.dataColumn120 = new System.Data.DataColumn();
     this.dataColumn121 = new System.Data.DataColumn();
     this.dataColumn122 = new System.Data.DataColumn();
     this.dataTable9 = new System.Data.DataTable();
     this.dataColumn123 = new System.Data.DataColumn();
     this.dataColumn124 = new System.Data.DataColumn();
     this.dataColumn125 = new System.Data.DataColumn();
     this.dataColumn126 = new System.Data.DataColumn();
     this.dataTable10 = new System.Data.DataTable();
     this.dataColumn127 = new System.Data.DataColumn();
     this.dataColumn128 = new System.Data.DataColumn();
     this.dataTable11 = new System.Data.DataTable();
     this.dataColumn129 = new System.Data.DataColumn();
     this.dataColumn130 = new System.Data.DataColumn();
     this.dataColumn131 = new System.Data.DataColumn();
     this.dataColumn132 = new System.Data.DataColumn();
     this.dataColumn133 = new System.Data.DataColumn();
     this.dataColumn134 = new System.Data.DataColumn();
     this.dataColumn135 = new System.Data.DataColumn();
     this.dataColumn136 = new System.Data.DataColumn();
     this.dataColumn137 = new System.Data.DataColumn();
     this.dataColumn138 = new System.Data.DataColumn();
     this.dataColumn139 = new System.Data.DataColumn();
     this.dataColumn140 = new System.Data.DataColumn();
     this.dataColumn141 = new System.Data.DataColumn();
     this.dataColumn142 = new System.Data.DataColumn();
     this.dataColumn143 = new System.Data.DataColumn();
     this.dataColumn144 = new System.Data.DataColumn();
     this.dataColumn145 = new System.Data.DataColumn();
     this.dataColumn146 = new System.Data.DataColumn();
     this.dataColumn147 = new System.Data.DataColumn();
     this.dataColumn148 = new System.Data.DataColumn();
     this.dataColumn149 = new System.Data.DataColumn();
     this.dataColumn150 = new System.Data.DataColumn();
     this.dataColumn151 = new System.Data.DataColumn();
     this.dataColumn152 = new System.Data.DataColumn();
     this.dataColumn153 = new System.Data.DataColumn();
     this.dataColumn154 = new System.Data.DataColumn();
     this.dataColumn155 = new System.Data.DataColumn();
     this.dataColumn156 = new System.Data.DataColumn();
     this.dataColumn157 = new System.Data.DataColumn();
     this.dataColumn158 = new System.Data.DataColumn();
     this.dataColumn159 = new System.Data.DataColumn();
     this.dataColumn160 = new System.Data.DataColumn();
     this.dataColumn161 = new System.Data.DataColumn();
     this.dataColumn162 = new System.Data.DataColumn();
     this.dataColumn163 = new System.Data.DataColumn();
     this.dataColumn164 = new System.Data.DataColumn();
     this.dataColumn165 = new System.Data.DataColumn();
     this.dataColumn166 = new System.Data.DataColumn();
     this.dataColumn167 = new System.Data.DataColumn();
     this.dataColumn168 = new System.Data.DataColumn();
     this.dataColumn169 = new System.Data.DataColumn();
     this.dataColumn170 = new System.Data.DataColumn();
     this.dataColumn190 = new System.Data.DataColumn();
     this.dataColumn191 = new System.Data.DataColumn();
     this.dataColumn192 = new System.Data.DataColumn();
     this.dataColumn193 = new System.Data.DataColumn();
     this.dataColumn194 = new System.Data.DataColumn();
     this.dataColumn195 = new System.Data.DataColumn();
     this.dataColumn196 = new System.Data.DataColumn();
     this.dataColumn197 = new System.Data.DataColumn();
     this.dataColumn198 = new System.Data.DataColumn();
     this.dataColumn199 = new System.Data.DataColumn();
     this.dataColumn200 = new System.Data.DataColumn();
     this.dataColumn201 = new System.Data.DataColumn();
     this.dataColumn202 = new System.Data.DataColumn();
     this.dataColumn203 = new System.Data.DataColumn();
     this.dataColumn209 = new System.Data.DataColumn();
     this.dataColumn210 = new System.Data.DataColumn();
     this.dataColumn211 = new System.Data.DataColumn();
     this.dataColumn212 = new System.Data.DataColumn();
     this.dataColumn213 = new System.Data.DataColumn();
     this.dataColumn214 = new System.Data.DataColumn();
     this.dataColumn215 = new System.Data.DataColumn();
     this.btn5 = new System.Windows.Forms.Button();
     this.btn6 = new System.Windows.Forms.Button();
     this.btn4 = new System.Windows.Forms.Button();
     this.btn3 = new System.Windows.Forms.Button();
     this.btn2 = new System.Windows.Forms.Button();
     this.btn1 = new System.Windows.Forms.Button();
     this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelSPKZ = new System.Windows.Forms.Panel();
     this.buttonSHORT = new System.Windows.Forms.Button();
     this.buttonLENGTH = new System.Windows.Forms.Button();
     this.buttonZOOMIN = new System.Windows.Forms.Button();
     this.buttonZOOMOUT = new System.Windows.Forms.Button();
     this.buttonRIGHTDOWN = new System.Windows.Forms.Button();
     this.buttonLEFTDOWN = new System.Windows.Forms.Button();
     this.buttonRIGHTUP = new System.Windows.Forms.Button();
     this.buttonLEFTUP = new System.Windows.Forms.Button();
     this.button15 = new System.Windows.Forms.Button();
     this.button14 = new System.Windows.Forms.Button();
     this.buttonRIGHT = new System.Windows.Forms.Button();
     this.buttonLEFT = new System.Windows.Forms.Button();
     this.buttonDOWN = new System.Windows.Forms.Button();
     this.buttonUP = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel7 = new System.Windows.Forms.Panel();
     this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.weighEditorControl1 = new YGJZJL.Car.WeighEditorControl();
     this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.panel8 = new System.Windows.Forms.Panel();
     this.btnRefresh = new System.Windows.Forms.Button();
     this.btnJG = new System.Windows.Forms.Button();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.rtuControl1 = new YGJZJL.Car.RtuControl();
     this.meterControl1 = new YGJZJL.Car.MeterControl();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel14 = new System.Windows.Forms.Panel();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel13 = new System.Windows.Forms.Panel();
     this.videoChannel4 = new System.Windows.Forms.PictureBox();
     this.panel12 = new System.Windows.Forms.Panel();
     this.videoChannel3 = new System.Windows.Forms.PictureBox();
     this.panel11 = new System.Windows.Forms.Panel();
     this.videoChannel2 = new System.Windows.Forms.PictureBox();
     this.panel10 = new System.Windows.Forms.Panel();
     this.videoChannel1 = new System.Windows.Forms.PictureBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.txtZZ = new System.Windows.Forms.TextBox();
     this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     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.bigVideoChannel = new System.Windows.Forms.PictureBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel6 = new System.Windows.Forms.Panel();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ultraDockManager1 = new Infragistics.Win.UltraWinDock.UltraDockManager(this.components);
     this._FrmBaseUnpinnedTabAreaLeft = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseUnpinnedTabAreaRight = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseUnpinnedTabAreaTop = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseUnpinnedTabAreaBottom = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._FrmBaseAutoHideControl = new Infragistics.Win.UltraWinDock.AutoHideControl();
     this.dockableWindow1 = new Infragistics.Win.UltraWinDock.DockableWindow();
     this.dockableWindow2 = new Infragistics.Win.UltraWinDock.DockableWindow();
     this.windowDockingArea3 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.windowDockingArea4 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.windowDockingArea2 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.windowDockingArea1 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.ultraTabPageControl3.SuspendLayout();
     this.panelYCSP.SuspendLayout();
     this.panel16.SuspendLayout();
     this.panel20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel8)).BeginInit();
     this.panel15.SuspendLayout();
     this.panel19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel7)).BeginInit();
     this.panel22.SuspendLayout();
     this.panel18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel6)).BeginInit();
     this.panel21.SuspendLayout();
     this.panel17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel5)).BeginInit();
     this.ultraTabPageControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picHT)).BeginInit();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     this.panelYYBF.SuspendLayout();
     this.panel23.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).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.dataTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
     this.panelSPKZ.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     this.ultraGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
     this.ultraExpandableGroupBox2.SuspendLayout();
     this.ultraExpandableGroupBoxPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.panel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel4.SuspendLayout();
     this.panel14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel4)).BeginInit();
     this.panel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel3)).BeginInit();
     this.panel11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel2)).BeginInit();
     this.panel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bigVideoChannel)).BeginInit();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDockManager1)).BeginInit();
     this._FrmBaseAutoHideControl.SuspendLayout();
     this.dockableWindow1.SuspendLayout();
     this.dockableWindow2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraTabPageControl3
     //
     this.ultraTabPageControl3.Controls.Add(this.panelYCSP);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl3, null);
     this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 20);
     this.ultraTabPageControl3.Name = "ultraTabPageControl3";
     this.ultraTabPageControl3.Size = new System.Drawing.Size(587, 198);
     this.coreBind.SetVerification(this.ultraTabPageControl3, null);
     //
     // panelYCSP
     //
     this.panelYCSP.AutoScroll = true;
     this.panelYCSP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panelYCSP.Controls.Add(this.panel16);
     this.panelYCSP.Controls.Add(this.panel15);
     this.panelYCSP.Controls.Add(this.panel22);
     this.panelYCSP.Controls.Add(this.panel21);
     this.coreBind.SetDatabasecommand(this.panelYCSP, null);
     this.panelYCSP.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelYCSP.Location = new System.Drawing.Point(0, 0);
     this.panelYCSP.Name = "panelYCSP";
     this.panelYCSP.Size = new System.Drawing.Size(587, 198);
     this.panelYCSP.TabIndex = 17;
     this.coreBind.SetVerification(this.panelYCSP, null);
     //
     // panel16
     //
     this.panel16.Controls.Add(this.panel20);
     this.panel16.Controls.Add(this.videoChannel8);
     this.coreBind.SetDatabasecommand(this.panel16, null);
     this.panel16.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel16.Location = new System.Drawing.Point(900, 0);
     this.panel16.Name = "panel16";
     this.panel16.Size = new System.Drawing.Size(300, 181);
     this.panel16.TabIndex = 5;
     this.coreBind.SetVerification(this.panel16, null);
     //
     // panel20
     //
     this.panel20.Controls.Add(this.pictureBox4);
     this.coreBind.SetDatabasecommand(this.panel20, null);
     this.panel20.Location = new System.Drawing.Point(0, 0);
     this.panel20.Name = "panel20";
     this.panel20.Size = new System.Drawing.Size(29, 23);
     this.panel20.TabIndex = 5;
     this.coreBind.SetVerification(this.panel20, null);
     this.panel20.Visible = false;
     //
     // pictureBox4
     //
     this.coreBind.SetDatabasecommand(this.pictureBox4, null);
     this.pictureBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox4.Location = new System.Drawing.Point(0, 0);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(29, 23);
     this.pictureBox4.TabIndex = 0;
     this.pictureBox4.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox4, null);
     //
     // videoChannel8
     //
     this.videoChannel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel8, null);
     this.videoChannel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel8.Location = new System.Drawing.Point(0, 0);
     this.videoChannel8.Name = "videoChannel8";
     this.videoChannel8.Size = new System.Drawing.Size(300, 181);
     this.videoChannel8.TabIndex = 2;
     this.videoChannel8.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel8, null);
     this.videoChannel8.DoubleClick += new System.EventHandler(this.videoChannel8_DoubleClick);
     //
     // panel15
     //
     this.panel15.Controls.Add(this.panel19);
     this.panel15.Controls.Add(this.videoChannel7);
     this.coreBind.SetDatabasecommand(this.panel15, null);
     this.panel15.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel15.Location = new System.Drawing.Point(600, 0);
     this.panel15.Name = "panel15";
     this.panel15.Size = new System.Drawing.Size(300, 181);
     this.panel15.TabIndex = 4;
     this.coreBind.SetVerification(this.panel15, null);
     //
     // panel19
     //
     this.panel19.Controls.Add(this.pictureBox3);
     this.coreBind.SetDatabasecommand(this.panel19, null);
     this.panel19.Location = new System.Drawing.Point(0, 0);
     this.panel19.Name = "panel19";
     this.panel19.Size = new System.Drawing.Size(29, 23);
     this.panel19.TabIndex = 5;
     this.coreBind.SetVerification(this.panel19, null);
     this.panel19.Visible = false;
     //
     // pictureBox3
     //
     this.coreBind.SetDatabasecommand(this.pictureBox3, null);
     this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox3.Location = new System.Drawing.Point(0, 0);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(29, 23);
     this.pictureBox3.TabIndex = 0;
     this.pictureBox3.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox3, null);
     //
     // videoChannel7
     //
     this.videoChannel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel7, null);
     this.videoChannel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel7.Location = new System.Drawing.Point(0, 0);
     this.videoChannel7.Name = "videoChannel7";
     this.videoChannel7.Size = new System.Drawing.Size(300, 181);
     this.videoChannel7.TabIndex = 2;
     this.videoChannel7.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel7, null);
     this.videoChannel7.DoubleClick += new System.EventHandler(this.videoChannel7_DoubleClick);
     //
     // panel22
     //
     this.panel22.Controls.Add(this.panel18);
     this.panel22.Controls.Add(this.videoChannel6);
     this.coreBind.SetDatabasecommand(this.panel22, null);
     this.panel22.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel22.Location = new System.Drawing.Point(300, 0);
     this.panel22.Name = "panel22";
     this.panel22.Size = new System.Drawing.Size(300, 181);
     this.panel22.TabIndex = 3;
     this.coreBind.SetVerification(this.panel22, null);
     //
     // panel18
     //
     this.panel18.Controls.Add(this.pictureBox2);
     this.coreBind.SetDatabasecommand(this.panel18, null);
     this.panel18.Location = new System.Drawing.Point(0, 0);
     this.panel18.Name = "panel18";
     this.panel18.Size = new System.Drawing.Size(29, 23);
     this.panel18.TabIndex = 5;
     this.coreBind.SetVerification(this.panel18, null);
     this.panel18.Visible = false;
     //
     // pictureBox2
     //
     this.coreBind.SetDatabasecommand(this.pictureBox2, null);
     this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox2.Location = new System.Drawing.Point(0, 0);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(29, 23);
     this.pictureBox2.TabIndex = 0;
     this.pictureBox2.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox2, null);
     //
     // videoChannel6
     //
     this.videoChannel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel6, null);
     this.videoChannel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel6.Location = new System.Drawing.Point(0, 0);
     this.videoChannel6.Name = "videoChannel6";
     this.videoChannel6.Size = new System.Drawing.Size(300, 181);
     this.videoChannel6.TabIndex = 2;
     this.videoChannel6.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel6, null);
     this.videoChannel6.DoubleClick += new System.EventHandler(this.videoChannel6_DoubleClick);
     this.videoChannel6.Click += new System.EventHandler(this.pictureBox2_Click);
     //
     // panel21
     //
     this.panel21.Controls.Add(this.panel17);
     this.panel21.Controls.Add(this.videoChannel5);
     this.coreBind.SetDatabasecommand(this.panel21, null);
     this.panel21.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel21.Location = new System.Drawing.Point(0, 0);
     this.panel21.Name = "panel21";
     this.panel21.Size = new System.Drawing.Size(300, 181);
     this.panel21.TabIndex = 0;
     this.coreBind.SetVerification(this.panel21, null);
     //
     // panel17
     //
     this.panel17.Controls.Add(this.pictureBox1);
     this.coreBind.SetDatabasecommand(this.panel17, null);
     this.panel17.Location = new System.Drawing.Point(0, 0);
     this.panel17.Name = "panel17";
     this.panel17.Size = new System.Drawing.Size(29, 23);
     this.panel17.TabIndex = 4;
     this.coreBind.SetVerification(this.panel17, null);
     this.panel17.Visible = false;
     //
     // pictureBox1
     //
     this.coreBind.SetDatabasecommand(this.pictureBox1, null);
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(29, 23);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.coreBind.SetVerification(this.pictureBox1, null);
     //
     // videoChannel5
     //
     this.videoChannel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.videoChannel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.videoChannel5, null);
     this.videoChannel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel5.Location = new System.Drawing.Point(0, 0);
     this.videoChannel5.Name = "videoChannel5";
     this.videoChannel5.Size = new System.Drawing.Size(300, 181);
     this.videoChannel5.TabIndex = 3;
     this.videoChannel5.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel5, null);
     this.videoChannel5.DoubleClick += new System.EventHandler(this.videoChannel5_DoubleClick);
     //
     // ultraTabPageControl2
     //
     this.ultraTabPageControl2.Controls.Add(this.ultraChart1);
     this.ultraTabPageControl2.Controls.Add(this.picHT);
     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(587, 198);
     this.coreBind.SetVerification(this.ultraTabPageControl2, 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.ultraChart1.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.LineChart;
     //
     // ultraChart1
     //
     this.ultraChart1.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.ultraChart1.Axis.PE = paintElement1;
     this.ultraChart1.Axis.X.Extent = 5;
     this.ultraChart1.Axis.X.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.X.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.X.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.X.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.X.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X.Labels.Visible = false;
     this.ultraChart1.Axis.X.LineThickness = 1;
     this.ultraChart1.Axis.X.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.X.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X.MajorGridLines.Visible = false;
     this.ultraChart1.Axis.X.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.X.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.X.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart1.Axis.X.TickmarkPercentage = 5;
     this.ultraChart1.Axis.X.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.X.Visible = true;
     this.ultraChart1.Axis.X2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.X2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.X2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.X2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.VerticalLeftFacing;
     this.ultraChart1.Axis.X2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.X2.Labels.Visible = false;
     this.ultraChart1.Axis.X2.LineThickness = 1;
     this.ultraChart1.Axis.X2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.X2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X2.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.X2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.X2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.X2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.X2.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.X2.TickmarkIntervalType = Infragistics.UltraChart.Shared.Styles.AxisIntervalType.Hours;
     this.ultraChart1.Axis.X2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.X2.Visible = false;
     this.ultraChart1.Axis.Y.Extent = 40;
     this.ultraChart1.Axis.Y.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Y.Labels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.Y.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart1.Axis.Y.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Far;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y.LineThickness = 1;
     this.ultraChart1.Axis.Y.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Y.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Y.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Y.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Y.TickmarkInterval = 0.2;
     this.ultraChart1.Axis.Y.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Y.Visible = true;
     this.ultraChart1.Axis.Y2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Y2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Y2.Labels.ItemFormatString = "<DATA_VALUE:00.##>";
     this.ultraChart1.Axis.Y2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FormatString = "";
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Y2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Y2.Labels.Visible = false;
     this.ultraChart1.Axis.Y2.LineThickness = 1;
     this.ultraChart1.Axis.Y2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Y2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y2.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Y2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Y2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Y2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Y2.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Y2.TickmarkInterval = 50;
     this.ultraChart1.Axis.Y2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Y2.Visible = false;
     this.ultraChart1.Axis.Z.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z.Labels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Z.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.Z.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.FontColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z.Labels.Visible = false;
     this.ultraChart1.Axis.Z.LineThickness = 1;
     this.ultraChart1.Axis.Z.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Z.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Z.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Z.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Z.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Z.Visible = false;
     this.ultraChart1.Axis.Z2.Labels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z2.Labels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Z2.Labels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z2.Labels.ItemFormatString = "<ITEM_LABEL>";
     this.ultraChart1.Axis.Z2.Labels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z2.Labels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Font = new System.Drawing.Font("Verdana", 7F);
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.FontColor = System.Drawing.Color.Gray;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = System.Drawing.StringAlignment.Near;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = Infragistics.UltraChart.Shared.Styles.AxisLabelLayoutBehaviors.Auto;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Orientation = Infragistics.UltraChart.Shared.Styles.TextOrientation.Horizontal;
     this.ultraChart1.Axis.Z2.Labels.SeriesLabels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z2.Labels.VerticalAlign = System.Drawing.StringAlignment.Center;
     this.ultraChart1.Axis.Z2.Labels.Visible = false;
     this.ultraChart1.Axis.Z2.LineThickness = 1;
     this.ultraChart1.Axis.Z2.MajorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z2.MajorGridLines.Color = System.Drawing.Color.Gainsboro;
     this.ultraChart1.Axis.Z2.MajorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z2.MajorGridLines.Visible = true;
     this.ultraChart1.Axis.Z2.MinorGridLines.AlphaLevel = ((byte)(255));
     this.ultraChart1.Axis.Z2.MinorGridLines.Color = System.Drawing.Color.LightGray;
     this.ultraChart1.Axis.Z2.MinorGridLines.DrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dot;
     this.ultraChart1.Axis.Z2.MinorGridLines.Visible = false;
     this.ultraChart1.Axis.Z2.TickmarkStyle = Infragistics.UltraChart.Shared.Styles.AxisTickStyle.Smart;
     this.ultraChart1.Axis.Z2.Visible = false;
     this.ultraChart1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ultraChart1.ColorModel.AlphaLevel = ((byte)(150));
     this.ultraChart1.ColorModel.ColorBegin = System.Drawing.Color.Pink;
     this.ultraChart1.ColorModel.ColorEnd = System.Drawing.Color.DarkRed;
     this.ultraChart1.ColorModel.ModelStyle = Infragistics.UltraChart.Shared.Styles.ColorModels.CustomLinear;
     numericSeries1.Key = "series1";
     paintElement2.ElementType = Infragistics.UltraChart.Shared.Styles.PaintElementType.None;
     numericDataPoint1.PE = paintElement2;
     numericSeries1.Points.AddRange(new Infragistics.UltraChart.Resources.Appearance.NumericDataPoint[] {
     numericDataPoint1});
     this.ultraChart1.CompositeChart.Series.AddRange(new Infragistics.UltraChart.Data.Series.ISeries[] {
     numericSeries1});
     this.ultraChart1.Data.DataMember = "曲线图";
     this.coreBind.SetDatabasecommand(this.ultraChart1, null);
     this.ultraChart1.DataMember = "曲线图";
     this.ultraChart1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraChart1.Effects.Effects.Add(gradientEffect1);
     this.ultraChart1.Location = new System.Drawing.Point(0, 0);
     this.ultraChart1.Name = "ultraChart1";
     this.ultraChart1.Size = new System.Drawing.Size(587, 198);
     this.ultraChart1.TabIndex = 3;
     this.ultraChart1.Tooltips.HighlightFillColor = System.Drawing.Color.DimGray;
     this.ultraChart1.Tooltips.HighlightOutlineColor = System.Drawing.Color.DarkGray;
     this.coreBind.SetVerification(this.ultraChart1, null);
     //
     // picHT
     //
     this.coreBind.SetDatabasecommand(this.picHT, null);
     this.picHT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.picHT.Location = new System.Drawing.Point(0, 0);
     this.picHT.Name = "picHT";
     this.picHT.Size = new System.Drawing.Size(587, 198);
     this.picHT.TabIndex = 1;
     this.picHT.TabStop = false;
     this.coreBind.SetVerification(this.picHT, null);
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl1, null);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl1.Name = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size = new System.Drawing.Size(587, 198);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     appearance31.BackColor = System.Drawing.Color.White;
     appearance31.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance31.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid3.DisplayLayout.Appearance = appearance31;
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance32.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance32;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterClearButtonLocation = Infragistics.Win.UltraWinGrid.FilterClearButtonLocation.Row;
     appearance33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance33.BackColor2 = System.Drawing.Color.White;
     appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance33.FontData.SizeInPoints = 11F;
     appearance33.FontData.UnderlineAsString = "False";
     appearance33.ForeColor = System.Drawing.Color.Black;
     appearance33.TextHAlignAsString = "Center";
     appearance33.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance33;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance34.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance34;
     appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance35.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance35;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance36.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance36.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance36;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     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.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid3.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid3.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(587, 198);
     this.ultraGrid3.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClick += new System.EventHandler(this.ultraGrid3_DoubleClick);
     //
     // panelYYBF
     //
     this.panelYYBF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panelYYBF.Controls.Add(this.panel23);
     this.panelYYBF.Controls.Add(this.btn5);
     this.panelYYBF.Controls.Add(this.btn6);
     this.panelYYBF.Controls.Add(this.btn4);
     this.panelYYBF.Controls.Add(this.btn3);
     this.panelYYBF.Controls.Add(this.btn2);
     this.panelYYBF.Controls.Add(this.btn1);
     this.panelYYBF.Controls.Add(this.ultraGrid4);
     this.coreBind.SetDatabasecommand(this.panelYYBF, null);
     this.panelYYBF.Location = new System.Drawing.Point(0, 28);
     this.panelYYBF.Name = "panelYYBF";
     this.panelYYBF.Size = new System.Drawing.Size(133, 718);
     this.panelYYBF.TabIndex = 8;
     this.panelYYBF.Tag = "";
     this.coreBind.SetVerification(this.panelYYBF, null);
     //
     // panel23
     //
     this.panel23.Controls.Add(this.ultraGrid5);
     this.coreBind.SetDatabasecommand(this.panel23, null);
     this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel23.Location = new System.Drawing.Point(0, 0);
     this.panel23.Name = "panel23";
     this.panel23.Size = new System.Drawing.Size(133, 718);
     this.panel23.TabIndex = 33;
     this.coreBind.SetVerification(this.panel23, null);
     //
     // ultraGrid5
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid5, null);
     this.ultraGrid5.DataMember = "语音表";
     this.ultraGrid5.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.ultraGrid5.DisplayLayout.Appearance = appearance19;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.Hidden = true;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4});
     this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid5.DisplayLayout.InterBandSpacing = 10;
     appearance20.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance20;
     appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance21.BackColor2 = System.Drawing.Color.White;
     appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance21.FontData.SizeInPoints = 11F;
     appearance21.FontData.UnderlineAsString = "False";
     appearance21.ForeColor = System.Drawing.Color.Black;
     appearance21.TextHAlignAsString = "Center";
     appearance21.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance21;
     appearance22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance22;
     appearance23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance23.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid5.DisplayLayout.Override.RowSelectorAppearance = appearance23;
     this.ultraGrid5.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid5.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance25.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance25.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid5.DisplayLayout.Override.SelectedRowAppearance = appearance25;
     this.ultraGrid5.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid5.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid5.Name = "ultraGrid5";
     this.ultraGrid5.Size = new System.Drawing.Size(133, 718);
     this.ultraGrid5.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraGrid5, null);
     this.ultraGrid5.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid5_ClickCell);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable3,
     this.dataTable4,
     this.dataTable5,
     this.dataTable6,
     this.dataTable7,
     this.dataTable8,
     this.dataTable9,
     this.dataTable10,
     this.dataTable11});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn52,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn68,
     this.dataColumn69,
     this.dataColumn70,
     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.dataColumn88,
     this.dataColumn89,
     this.dataColumn90,
     this.dataColumn91,
     this.dataColumn171,
     this.dataColumn216,
     this.dataColumn219,
     this.dataColumn220});
     this.dataTable1.TableName = "计量点基础表";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "计量点编码";
     this.dataColumn1.ColumnName = "FS_POINTCODE";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "计量点";
     this.dataColumn2.ColumnName = "FS_POINTNAME";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "接管";
     this.dataColumn3.ColumnName = "XZ";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "接管标志";
     this.dataColumn52.ColumnName = "FS_SIGN";
     //
     // dataColumn63
     //
     this.dataColumn63.Caption = "仪表类型";
     this.dataColumn63.ColumnName = "FS_METERTYPE";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "仪表参数";
     this.dataColumn64.ColumnName = "FS_METERPARA";
     //
     // dataColumn65
     //
     this.dataColumn65.Caption = "IP";
     this.dataColumn65.ColumnName = "FS_MOXAIP";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "端口";
     this.dataColumn66.ColumnName = "FS_MOXAPORT";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "VIEDOIP";
     this.dataColumn67.ColumnName = "FS_VIEDOIP";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "录像机端口";
     this.dataColumn68.ColumnName = "FS_VIEDOPORT";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "用户名";
     this.dataColumn69.ColumnName = "FS_VIEDOUSER";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "密码";
     this.dataColumn70.ColumnName = "FS_VIEDOPWD";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "FS_POINTDEPART";
     this.dataColumn72.ColumnName = "FS_POINTDEPART";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "FS_POINTTYPE";
     this.dataColumn73.ColumnName = "FS_POINTTYPE";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "FS_RTUIP";
     this.dataColumn74.ColumnName = "FS_RTUIP";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "FS_RTUPORT";
     this.dataColumn75.ColumnName = "FS_RTUPORT";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "FS_PRINTERIP";
     this.dataColumn76.ColumnName = "FS_PRINTERIP";
     //
     // dataColumn77
     //
     this.dataColumn77.Caption = "FS_PRINTERNAME";
     this.dataColumn77.ColumnName = "FS_PRINTERNAME";
     //
     // dataColumn78
     //
     this.dataColumn78.Caption = "FS_PRINTTYPECODE";
     this.dataColumn78.ColumnName = "FS_PRINTTYPECODE";
     //
     // dataColumn79
     //
     this.dataColumn79.Caption = "FN_USEDPRINTPAPER";
     this.dataColumn79.ColumnName = "FN_USEDPRINTPAPER";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "FN_USEDPRINTINK";
     this.dataColumn80.ColumnName = "FN_USEDPRINTINK";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "FS_LEDIP";
     this.dataColumn81.ColumnName = "FS_LEDIP";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "FS_LEDPORT";
     this.dataColumn82.ColumnName = "FS_LEDPORT";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "FN_VALUE";
     this.dataColumn83.ColumnName = "FN_VALUE";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "FS_ALLOWOTHERTARE";
     this.dataColumn84.ColumnName = "FS_ALLOWOTHERTARE";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "FS_DISPLAYPORT";
     this.dataColumn85.ColumnName = "FS_DISPLAYPORT";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "FS_DISPLAYPARA";
     this.dataColumn86.ColumnName = "FS_DISPLAYPARA";
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "FS_READERPORT";
     this.dataColumn87.ColumnName = "FS_READERPORT";
     //
     // dataColumn88
     //
     this.dataColumn88.Caption = "FS_READERPARA";
     this.dataColumn88.ColumnName = "FS_READERPARA";
     //
     // dataColumn89
     //
     this.dataColumn89.Caption = "FS_READERTYPE";
     this.dataColumn89.ColumnName = "FS_READERTYPE";
     //
     // dataColumn90
     //
     this.dataColumn90.Caption = "FS_DISPLAYTYPE";
     this.dataColumn90.ColumnName = "FS_DISPLAYTYPE";
     //
     // dataColumn91
     //
     this.dataColumn91.Caption = "FS_LEDTYPE";
     this.dataColumn91.ColumnName = "FS_LEDTYPE";
     //
     // dataColumn171
     //
     this.dataColumn171.ColumnName = "FF_CLEARVALUE";
     //
     // dataColumn216
     //
     this.dataColumn216.Caption = "计量点状态";
     this.dataColumn216.ColumnName = "FS_POINTSTATE";
     //
     // dataColumn219
     //
     this.dataColumn219.ColumnName = "FS_IP";
     //
     // dataColumn220
     //
     this.dataColumn220.ColumnName = "FN_POINTFLAG";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     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.dataColumn19,
     this.dataColumn20,
     this.dataColumn51,
     this.dataColumn71,
     this.dataColumn94,
     this.dataColumn95,
     this.dataColumn96,
     this.dataColumn97,
     this.dataColumn98,
     this.dataColumn99,
     this.dataColumn100,
     this.dataColumn102,
     this.dataColumn101,
     this.dataColumn103,
     this.dataColumn104,
     this.dataColumn105,
     this.dataColumn106,
     this.dataColumn107,
     this.dataColumn108,
     this.dataColumn109,
     this.dataColumn110,
     this.dataColumn111,
     this.dataColumn112,
     this.dataColumn113,
     this.dataColumn114,
     this.dataColumn115,
     this.dataColumn176,
     this.dataColumn177,
     this.dataColumn178,
     this.dataColumn179,
     this.dataColumn180,
     this.dataColumn181,
     this.dataColumn182,
     this.dataColumn183,
     this.dataColumn184,
     this.dataColumn185,
     this.dataColumn186,
     this.dataColumn187,
     this.dataColumn188,
     this.dataColumn189,
     this.dataColumn204,
     this.dataColumn205,
     this.dataColumn206,
     this.dataColumn207,
     this.dataColumn208});
     this.dataTable2.TableName = "一次计量表";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "作业编号";
     this.dataColumn4.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "预报号";
     this.dataColumn5.ColumnName = "FS_PLANCODE";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "合同号";
     this.dataColumn6.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "合同项目编号";
     this.dataColumn7.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "炉号";
     this.dataColumn8.ColumnName = "FS_STOVENO";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "支数";
     this.dataColumn9.ColumnName = "FN_COUNT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "卡号";
     this.dataColumn10.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "车号";
     this.dataColumn11.ColumnName = "FS_CARNO";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "重量";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量点";
     this.dataColumn13.ColumnName = "FS_POUND";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "计量员";
     this.dataColumn14.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "计量时间";
     this.dataColumn15.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "班次";
     this.dataColumn16.ColumnName = "FS_SHIFT";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "流向";
     this.dataColumn17.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "发货单位";
     this.dataColumn18.ColumnName = "FS_SENDER";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "收货单位";
     this.dataColumn19.ColumnName = "FS_RECEIVER";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "承运单位";
     this.dataColumn20.ColumnName = "FS_TRANSNO";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "物料名称";
     this.dataColumn51.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "是否异常";
     this.dataColumn71.ColumnName = "FS_YCSFYC";
     //
     // dataColumn94
     //
     this.dataColumn94.Caption = "发货库存点代码";
     this.dataColumn94.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn95
     //
     this.dataColumn95.Caption = "收货库存点代码";
     this.dataColumn95.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn96
     //
     this.dataColumn96.Caption = "磅房编号";
     this.dataColumn96.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn97
     //
     this.dataColumn97.Caption = "预报总重";
     this.dataColumn97.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn98
     //
     this.dataColumn98.Caption = "预报皮重";
     this.dataColumn98.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn99
     //
     this.dataColumn99.Caption = "预报净量";
     this.dataColumn99.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn100
     //
     this.dataColumn100.Caption = "班别";
     this.dataColumn100.ColumnName = "FS_TERM";
     //
     // dataColumn102
     //
     this.dataColumn102.Caption = "发货单位";
     this.dataColumn102.ColumnName = "FS_FHDW";
     //
     // dataColumn101
     //
     this.dataColumn101.Caption = "收货单位";
     this.dataColumn101.ColumnName = "FS_SHDW";
     //
     // dataColumn103
     //
     this.dataColumn103.Caption = "承运单位";
     this.dataColumn103.ColumnName = "FS_CYDW";
     //
     // dataColumn104
     //
     this.dataColumn104.Caption = "流向";
     this.dataColumn104.ColumnName = "FS_LX";
     //
     // dataColumn105
     //
     this.dataColumn105.Caption = "装车入库时间";
     this.dataColumn105.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn106
     //
     this.dataColumn106.Caption = "装车出库时间";
     this.dataColumn106.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn107
     //
     this.dataColumn107.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn108
     //
     this.dataColumn108.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataColumn109
     //
     this.dataColumn109.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn110
     //
     this.dataColumn110.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn111
     //
     this.dataColumn111.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn112
     //
     this.dataColumn112.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn113
     //
     this.dataColumn113.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn114
     //
     this.dataColumn114.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn115
     //
     this.dataColumn115.ColumnName = "FS_MATERIAL";
     //
     // dataColumn176
     //
     this.dataColumn176.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn177
     //
     this.dataColumn177.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn178
     //
     this.dataColumn178.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn179
     //
     this.dataColumn179.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn180
     //
     this.dataColumn180.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn181
     //
     this.dataColumn181.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn182
     //
     this.dataColumn182.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn183
     //
     this.dataColumn183.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn184
     //
     this.dataColumn184.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn185
     //
     this.dataColumn185.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn186
     //
     this.dataColumn186.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn187
     //
     this.dataColumn187.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn188
     //
     this.dataColumn188.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn189
     //
     this.dataColumn189.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn204
     //
     this.dataColumn204.Caption = "应扣量";
     this.dataColumn204.ColumnName = "FS_YKL";
     //
     // dataColumn205
     //
     this.dataColumn205.Caption = "复磅标志";
     this.dataColumn205.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn206
     //
     this.dataColumn206.Caption = "复磅确认时间";
     this.dataColumn206.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn207
     //
     this.dataColumn207.Caption = "复磅确认地点";
     this.dataColumn207.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn208
     //
     this.dataColumn208.Caption = "复磅确认员";
     this.dataColumn208.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn92,
     this.dataColumn93});
     this.dataTable3.TableName = "语音表";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "声音名称";
     this.dataColumn21.ColumnName = "FS_VOICENAME";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "计量类型汽车衡";
     this.dataColumn22.ColumnName = "FS_INSTRTYPE";
     //
     // dataColumn92
     //
     this.dataColumn92.Caption = "描述";
     this.dataColumn92.ColumnName = "FS_MEMO";
     //
     // dataColumn93
     //
     this.dataColumn93.ColumnName = "FS_VOICEFILE";
     this.dataColumn93.DataType = typeof(byte[]);
     //
     // dataTable4
     //
     this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn53,
     this.dataColumn172,
     this.dataColumn173,
     this.dataColumn174,
     this.dataColumn175,
     this.dataColumn217,
     this.dataColumn218});
     this.dataTable4.TableName = "预报表";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FS_PLANCODE";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_CARNO";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FS_SENDER";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_MATERIAL";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_RECEIVERFACTORY";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "FS_TRANSNO";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FS_STOVENO";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "期限皮重标志";
     this.dataColumn53.ColumnName = "FS_LEVEL";
     //
     // dataColumn172
     //
     this.dataColumn172.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn173
     //
     this.dataColumn173.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn174
     //
     this.dataColumn174.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn175
     //
     this.dataColumn175.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn217
     //
     this.dataColumn217.Caption = "供应商";
     this.dataColumn217.ColumnName = "FS_PROVIDER";
     //
     // dataColumn218
     //
     this.dataColumn218.ColumnName = "FS_DRIVERREMARK";
     //
     // dataTable5
     //
     this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50});
     this.dataTable5.TableName = "图片表";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "作业编号";
     this.dataColumn36.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FB_IMAGE1";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "FB_IMAGE2";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FB_IMAGE3";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FB_IMAGE4";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FB_IMAGE5";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FB_IMAGE6";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FB_IMAGE7";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FB_IMAGE8";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FB_IMAGE9";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FB_IMAGE10";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FB_IMAGE11";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "FB_IMAGE12";
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FB_IMAGEYCJL";
     //
     // dataColumn50
     //
     this.dataColumn50.ColumnName = "FB_IMAGEECJL";
     //
     // dataTable6
     //
     this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     this.dataColumn221,
     this.dataColumn222,
     this.dataColumn223,
     this.dataColumn224,
     this.dataColumn225,
     this.dataColumn226,
     this.dataColumn227,
     this.dataColumn228,
     this.dataColumn229,
     this.dataColumn230,
     this.dataColumn231});
     this.dataTable6.TableName = "曲线图";
     //
     // dataColumn54
     //
     this.dataColumn54.ColumnName = "ZL1";
     this.dataColumn54.DataType = typeof(decimal);
     //
     // dataColumn55
     //
     this.dataColumn55.ColumnName = "ZL2";
     this.dataColumn55.DataType = typeof(decimal);
     //
     // dataColumn56
     //
     this.dataColumn56.ColumnName = "ZL3";
     this.dataColumn56.DataType = typeof(decimal);
     //
     // dataColumn57
     //
     this.dataColumn57.ColumnName = "ZL4";
     this.dataColumn57.DataType = typeof(decimal);
     //
     // dataColumn58
     //
     this.dataColumn58.ColumnName = "ZL5";
     this.dataColumn58.DataType = typeof(decimal);
     //
     // dataColumn59
     //
     this.dataColumn59.ColumnName = "ZL6";
     this.dataColumn59.DataType = typeof(decimal);
     //
     // dataColumn60
     //
     this.dataColumn60.ColumnName = "ZL7";
     this.dataColumn60.DataType = typeof(decimal);
     //
     // dataColumn61
     //
     this.dataColumn61.ColumnName = "ZL8";
     this.dataColumn61.DataType = typeof(decimal);
     //
     // dataColumn62
     //
     this.dataColumn62.ColumnName = "ZL9";
     this.dataColumn62.DataType = typeof(decimal);
     //
     // dataColumn221
     //
     this.dataColumn221.ColumnName = "ZL10";
     //
     // dataColumn222
     //
     this.dataColumn222.ColumnName = "ZL11";
     //
     // dataColumn223
     //
     this.dataColumn223.ColumnName = "ZL12";
     //
     // dataColumn224
     //
     this.dataColumn224.ColumnName = "ZL13";
     //
     // dataColumn225
     //
     this.dataColumn225.ColumnName = "ZL14";
     //
     // dataColumn226
     //
     this.dataColumn226.ColumnName = "ZL15";
     //
     // dataColumn227
     //
     this.dataColumn227.ColumnName = "ZL16";
     //
     // dataColumn228
     //
     this.dataColumn228.ColumnName = "ZL17";
     //
     // dataColumn229
     //
     this.dataColumn229.ColumnName = "ZL18";
     //
     // dataColumn230
     //
     this.dataColumn230.ColumnName = "ZL19";
     //
     // dataColumn231
     //
     this.dataColumn231.ColumnName = "ZL20";
     //
     // dataTable7
     //
     this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn116,
     this.dataColumn117,
     this.dataColumn118,
     this.dataColumn119});
     this.dataTable7.TableName = "物料表";
     //
     // dataColumn116
     //
     this.dataColumn116.ColumnName = "FS_POINTNO";
     //
     // dataColumn117
     //
     this.dataColumn117.ColumnName = "FS_MATERIALNO";
     //
     // dataColumn118
     //
     this.dataColumn118.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn119
     //
     this.dataColumn119.ColumnName = "FN_TIMES";
     //
     // dataTable8
     //
     this.dataTable8.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn120,
     this.dataColumn121,
     this.dataColumn122});
     this.dataTable8.TableName = "发货单位表";
     //
     // dataColumn120
     //
     this.dataColumn120.ColumnName = "FS_POINTNO";
     //
     // dataColumn121
     //
     this.dataColumn121.ColumnName = "FS_SUPPLIER";
     //
     // dataColumn122
     //
     this.dataColumn122.ColumnName = "FS_SUPPLIERNAME";
     //
     // dataTable9
     //
     this.dataTable9.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn123,
     this.dataColumn124,
     this.dataColumn125,
     this.dataColumn126});
     this.dataTable9.TableName = "收货单位表";
     //
     // dataColumn123
     //
     this.dataColumn123.ColumnName = "FS_POINTNO";
     //
     // dataColumn124
     //
     this.dataColumn124.ColumnName = "FS_RECEIVER";
     //
     // dataColumn125
     //
     this.dataColumn125.ColumnName = "FS_MEMO";
     //
     // dataColumn126
     //
     this.dataColumn126.ColumnName = "FN_TIMES";
     //
     // dataTable10
     //
     this.dataTable10.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn127,
     this.dataColumn128});
     this.dataTable10.TableName = "承运单位表";
     //
     // dataColumn127
     //
     this.dataColumn127.ColumnName = "FS_TRANSNO";
     //
     // dataColumn128
     //
     this.dataColumn128.ColumnName = "FS_TRANSNAME";
     //
     // dataTable11
     //
     this.dataTable11.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn129,
     this.dataColumn130,
     this.dataColumn131,
     this.dataColumn132,
     this.dataColumn133,
     this.dataColumn134,
     this.dataColumn135,
     this.dataColumn136,
     this.dataColumn137,
     this.dataColumn138,
     this.dataColumn139,
     this.dataColumn140,
     this.dataColumn141,
     this.dataColumn142,
     this.dataColumn143,
     this.dataColumn144,
     this.dataColumn145,
     this.dataColumn146,
     this.dataColumn147,
     this.dataColumn148,
     this.dataColumn149,
     this.dataColumn150,
     this.dataColumn151,
     this.dataColumn152,
     this.dataColumn153,
     this.dataColumn154,
     this.dataColumn155,
     this.dataColumn156,
     this.dataColumn157,
     this.dataColumn158,
     this.dataColumn159,
     this.dataColumn160,
     this.dataColumn161,
     this.dataColumn162,
     this.dataColumn163,
     this.dataColumn164,
     this.dataColumn165,
     this.dataColumn166,
     this.dataColumn167,
     this.dataColumn168,
     this.dataColumn169,
     this.dataColumn170,
     this.dataColumn190,
     this.dataColumn191,
     this.dataColumn192,
     this.dataColumn193,
     this.dataColumn194,
     this.dataColumn195,
     this.dataColumn196,
     this.dataColumn197,
     this.dataColumn198,
     this.dataColumn199,
     this.dataColumn200,
     this.dataColumn201,
     this.dataColumn202,
     this.dataColumn203,
     this.dataColumn209,
     this.dataColumn210,
     this.dataColumn211,
     this.dataColumn212,
     this.dataColumn213,
     this.dataColumn214,
     this.dataColumn215});
     this.dataTable11.TableName = "绑定一次计量表";
     //
     // dataColumn129
     //
     this.dataColumn129.Caption = "作业编号";
     this.dataColumn129.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn130
     //
     this.dataColumn130.Caption = "预报号";
     this.dataColumn130.ColumnName = "FS_PLANCODE";
     //
     // dataColumn131
     //
     this.dataColumn131.Caption = "卡号";
     this.dataColumn131.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn132
     //
     this.dataColumn132.Caption = "车号";
     this.dataColumn132.ColumnName = "FS_CARNO";
     //
     // dataColumn133
     //
     this.dataColumn133.Caption = "合同号";
     this.dataColumn133.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn134
     //
     this.dataColumn134.Caption = "合同项目编号";
     this.dataColumn134.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn135
     //
     this.dataColumn135.Caption = "物资代码";
     this.dataColumn135.ColumnName = "FS_MATERIAL";
     //
     // dataColumn136
     //
     this.dataColumn136.Caption = "物料名称";
     this.dataColumn136.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn137
     //
     this.dataColumn137.Caption = "流向代码";
     this.dataColumn137.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn138
     //
     this.dataColumn138.Caption = "流向";
     this.dataColumn138.ColumnName = "FS_LX";
     //
     // dataColumn139
     //
     this.dataColumn139.Caption = "发货单位代码";
     this.dataColumn139.ColumnName = "FS_SENDER";
     //
     // dataColumn140
     //
     this.dataColumn140.Caption = "发货单位";
     this.dataColumn140.ColumnName = "FS_FHDW";
     //
     // dataColumn141
     //
     this.dataColumn141.Caption = "发货库存点代码";
     this.dataColumn141.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn142
     //
     this.dataColumn142.Caption = "收货工厂代码";
     this.dataColumn142.ColumnName = "FS_RECEIVER";
     //
     // dataColumn143
     //
     this.dataColumn143.Caption = "收货单位";
     this.dataColumn143.ColumnName = "FS_SHDW";
     //
     // dataColumn144
     //
     this.dataColumn144.Caption = "承运方代码";
     this.dataColumn144.ColumnName = "FS_TRANSNO";
     //
     // dataColumn145
     //
     this.dataColumn145.Caption = "承运单位";
     this.dataColumn145.ColumnName = "FS_CYDW";
     //
     // dataColumn146
     //
     this.dataColumn146.Caption = "收货库存点代码";
     this.dataColumn146.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn147
     //
     this.dataColumn147.Caption = "磅房编号";
     this.dataColumn147.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn148
     //
     this.dataColumn148.Caption = "计量点";
     this.dataColumn148.ColumnName = "FS_POUND";
     //
     // dataColumn149
     //
     this.dataColumn149.Caption = "预报总重";
     this.dataColumn149.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn150
     //
     this.dataColumn150.Caption = "预报皮重";
     this.dataColumn150.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn151
     //
     this.dataColumn151.Caption = "预报净量";
     this.dataColumn151.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn152
     //
     this.dataColumn152.Caption = "重量";
     this.dataColumn152.ColumnName = "FN_WEIGHT";
     //
     // dataColumn153
     //
     this.dataColumn153.Caption = "计量员";
     this.dataColumn153.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn154
     //
     this.dataColumn154.Caption = "计量时间";
     this.dataColumn154.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn155
     //
     this.dataColumn155.Caption = "班次";
     this.dataColumn155.ColumnName = "FS_SHIFT";
     //
     // dataColumn156
     //
     this.dataColumn156.Caption = "班别";
     this.dataColumn156.ColumnName = "FS_TERM";
     //
     // dataColumn157
     //
     this.dataColumn157.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn158
     //
     this.dataColumn158.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn159
     //
     this.dataColumn159.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn160
     //
     this.dataColumn160.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataColumn161
     //
     this.dataColumn161.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn162
     //
     this.dataColumn162.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn163
     //
     this.dataColumn163.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn164
     //
     this.dataColumn164.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn165
     //
     this.dataColumn165.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn166
     //
     this.dataColumn166.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn167
     //
     this.dataColumn167.Caption = "是否异常";
     this.dataColumn167.ColumnName = "FS_YCSFYC";
     //
     // dataColumn168
     //
     this.dataColumn168.Caption = "应扣量";
     this.dataColumn168.ColumnName = "FS_YKL";
     //
     // dataColumn169
     //
     this.dataColumn169.Caption = "炉号";
     this.dataColumn169.ColumnName = "FS_STOVENO";
     //
     // dataColumn170
     //
     this.dataColumn170.Caption = "支数";
     this.dataColumn170.ColumnName = "FN_COUNT";
     //
     // dataColumn190
     //
     this.dataColumn190.Caption = "取样时间";
     this.dataColumn190.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn191
     //
     this.dataColumn191.Caption = "取样点";
     this.dataColumn191.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn192
     //
     this.dataColumn192.Caption = "取样确认";
     this.dataColumn192.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn193
     //
     this.dataColumn193.Caption = "卸车员";
     this.dataColumn193.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn194
     //
     this.dataColumn194.Caption = "卸车时间";
     this.dataColumn194.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn195
     //
     this.dataColumn195.Caption = "卸车点";
     this.dataColumn195.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn196
     //
     this.dataColumn196.Caption = "验收员";
     this.dataColumn196.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn197
     //
     this.dataColumn197.Caption = "验收时间";
     this.dataColumn197.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn198
     //
     this.dataColumn198.Caption = "验收点";
     this.dataColumn198.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn199
     //
     this.dataColumn199.Caption = "验收确认";
     this.dataColumn199.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn200
     //
     this.dataColumn200.Caption = "是否取样需要";
     this.dataColumn200.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn201
     //
     this.dataColumn201.Caption = "是否需要验收 ";
     this.dataColumn201.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn202
     //
     this.dataColumn202.Caption = "驾驶员姓名";
     this.dataColumn202.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn203
     //
     this.dataColumn203.Caption = "驾驶员身份证";
     this.dataColumn203.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn209
     //
     this.dataColumn209.Caption = "复磅标记";
     this.dataColumn209.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn210
     //
     this.dataColumn210.Caption = "复磅确认时间";
     this.dataColumn210.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn211
     //
     this.dataColumn211.Caption = "复磅确认地点";
     this.dataColumn211.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn212
     //
     this.dataColumn212.Caption = "复磅确认员";
     this.dataColumn212.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn213
     //
     this.dataColumn213.Caption = "对方净重";
     this.dataColumn213.ColumnName = "FS_DFJZ";
     //
     // dataColumn214
     //
     this.dataColumn214.Caption = "单据编号";
     this.dataColumn214.ColumnName = "FS_BILLNUMBER";
     //
     // dataColumn215
     //
     this.dataColumn215.Caption = "应扣比例";
     this.dataColumn215.ColumnName = "FS_YKBL";
     //
     // btn5
     //
     this.btn5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn5, null);
     this.btn5.Location = new System.Drawing.Point(22, 166);
     this.btn5.Name = "btn5";
     this.btn5.Size = new System.Drawing.Size(94, 28);
     this.btn5.TabIndex = 13;
     this.btn5.Text = "称重完成";
     this.btn5.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn5, null);
     //
     // btn6
     //
     this.btn6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn6, null);
     this.btn6.Location = new System.Drawing.Point(22, 200);
     this.btn6.Name = "btn6";
     this.btn6.Size = new System.Drawing.Size(94, 39);
     this.btn6.TabIndex = 12;
     this.btn6.Text = "此车无预报请离开秤台";
     this.btn6.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn6, null);
     //
     // btn4
     //
     this.btn4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn4, null);
     this.btn4.Location = new System.Drawing.Point(7, 132);
     this.btn4.Name = "btn4";
     this.btn4.Size = new System.Drawing.Size(120, 28);
     this.btn4.TabIndex = 11;
     this.btn4.Text = "单据放倒请放正";
     this.btn4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn4, null);
     //
     // btn3
     //
     this.btn3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn3, null);
     this.btn3.Location = new System.Drawing.Point(19, 87);
     this.btn3.Name = "btn3";
     this.btn3.Size = new System.Drawing.Size(99, 39);
     this.btn3.TabIndex = 10;
     this.btn3.Text = " 超出停车线   请后退到停车线";
     this.btn3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn3, null);
     //
     // btn2
     //
     this.btn2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn2, null);
     this.btn2.Location = new System.Drawing.Point(7, 54);
     this.btn2.Name = "btn2";
     this.btn2.Size = new System.Drawing.Size(122, 28);
     this.btn2.TabIndex = 9;
     this.btn2.Text = "请放第一次临时磅单";
     this.btn2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn2, null);
     //
     // btn1
     //
     this.btn1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btn1, null);
     this.btn1.Location = new System.Drawing.Point(22, 20);
     this.btn1.Name = "btn1";
     this.btn1.Size = new System.Drawing.Size(94, 28);
     this.btn1.TabIndex = 8;
     this.btn1.Text = "请报车号";
     this.btn1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btn1, null);
     //
     // ultraGrid4
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid4, null);
     this.ultraGrid4.DataMember = "语音表";
     this.ultraGrid4.DataSource = this.dataSet1;
     appearance7.BackColor = System.Drawing.Color.White;
     appearance7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid4.DisplayLayout.Appearance = appearance7;
     ultraGridColumn5.Header.VisiblePosition = 0;
     ultraGridColumn6.Header.VisiblePosition = 1;
     ultraGridColumn7.Header.VisiblePosition = 2;
     ultraGridColumn8.Header.VisiblePosition = 3;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8});
     this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid4.DisplayLayout.InterBandSpacing = 10;
     appearance8.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance8;
     appearance9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance9.BackColor2 = System.Drawing.Color.White;
     appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance9.FontData.SizeInPoints = 11F;
     appearance9.FontData.UnderlineAsString = "False";
     appearance9.ForeColor = System.Drawing.Color.Black;
     appearance9.TextHAlignAsString = "Center";
     appearance9.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance9;
     appearance10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance10;
     appearance11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid4.DisplayLayout.Override.RowSelectorAppearance = appearance11;
     this.ultraGrid4.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid4.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance12.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid4.DisplayLayout.Override.SelectedRowAppearance = appearance12;
     this.ultraGrid4.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid4.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid4.Location = new System.Drawing.Point(0, 469);
     this.ultraGrid4.Name = "ultraGrid4";
     this.ultraGrid4.Size = new System.Drawing.Size(109, 157);
     this.ultraGrid4.TabIndex = 3;
     this.coreBind.SetVerification(this.ultraGrid4, null);
     this.ultraGrid4.Visible = false;
     //
     // panelSPKZ
     //
     this.panelSPKZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panelSPKZ.Controls.Add(this.buttonSHORT);
     this.panelSPKZ.Controls.Add(this.buttonLENGTH);
     this.panelSPKZ.Controls.Add(this.buttonZOOMIN);
     this.panelSPKZ.Controls.Add(this.buttonZOOMOUT);
     this.panelSPKZ.Controls.Add(this.buttonRIGHTDOWN);
     this.panelSPKZ.Controls.Add(this.buttonLEFTDOWN);
     this.panelSPKZ.Controls.Add(this.buttonRIGHTUP);
     this.panelSPKZ.Controls.Add(this.buttonLEFTUP);
     this.panelSPKZ.Controls.Add(this.button15);
     this.panelSPKZ.Controls.Add(this.button14);
     this.panelSPKZ.Controls.Add(this.buttonRIGHT);
     this.panelSPKZ.Controls.Add(this.buttonLEFT);
     this.panelSPKZ.Controls.Add(this.buttonDOWN);
     this.panelSPKZ.Controls.Add(this.buttonUP);
     this.coreBind.SetDatabasecommand(this.panelSPKZ, null);
     this.panelSPKZ.Location = new System.Drawing.Point(0, 28);
     this.panelSPKZ.Name = "panelSPKZ";
     this.panelSPKZ.Size = new System.Drawing.Size(132, 718);
     this.panelSPKZ.TabIndex = 2;
     this.coreBind.SetVerification(this.panelSPKZ, null);
     //
     // buttonSHORT
     //
     this.buttonSHORT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonSHORT, null);
     this.buttonSHORT.Location = new System.Drawing.Point(68, 285);
     this.buttonSHORT.Name = "buttonSHORT";
     this.buttonSHORT.Size = new System.Drawing.Size(55, 28);
     this.buttonSHORT.TabIndex = 20;
     this.buttonSHORT.Tag = "7";
     this.buttonSHORT.Text = "调焦-";
     this.buttonSHORT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonSHORT, null);
     this.buttonSHORT.Click += new System.EventHandler(this.buttonSHORT_Click);
     //
     // buttonLENGTH
     //
     this.buttonLENGTH.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLENGTH, null);
     this.buttonLENGTH.Location = new System.Drawing.Point(7, 285);
     this.buttonLENGTH.Name = "buttonLENGTH";
     this.buttonLENGTH.Size = new System.Drawing.Size(55, 28);
     this.buttonLENGTH.TabIndex = 19;
     this.buttonLENGTH.Tag = "6";
     this.buttonLENGTH.Text = "调焦+";
     this.buttonLENGTH.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLENGTH, null);
     this.buttonLENGTH.Click += new System.EventHandler(this.buttonLENGTH_Click);
     //
     // buttonZOOMIN
     //
     this.buttonZOOMIN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonZOOMIN, null);
     this.buttonZOOMIN.Location = new System.Drawing.Point(68, 245);
     this.buttonZOOMIN.Name = "buttonZOOMIN";
     this.buttonZOOMIN.Size = new System.Drawing.Size(55, 28);
     this.buttonZOOMIN.TabIndex = 18;
     this.buttonZOOMIN.Tag = "5";
     this.buttonZOOMIN.Text = "变倍-";
     this.buttonZOOMIN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonZOOMIN, null);
     this.buttonZOOMIN.Click += new System.EventHandler(this.buttonZOOMIN_Click);
     //
     // buttonZOOMOUT
     //
     this.buttonZOOMOUT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonZOOMOUT, null);
     this.buttonZOOMOUT.Location = new System.Drawing.Point(7, 245);
     this.buttonZOOMOUT.Name = "buttonZOOMOUT";
     this.buttonZOOMOUT.Size = new System.Drawing.Size(55, 28);
     this.buttonZOOMOUT.TabIndex = 17;
     this.buttonZOOMOUT.Tag = "4";
     this.buttonZOOMOUT.Text = "变倍+";
     this.buttonZOOMOUT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonZOOMOUT, null);
     this.buttonZOOMOUT.Click += new System.EventHandler(this.buttonZOOMOUT_Click);
     //
     // buttonRIGHTDOWN
     //
     this.buttonRIGHTDOWN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonRIGHTDOWN, null);
     this.buttonRIGHTDOWN.Location = new System.Drawing.Point(68, 196);
     this.buttonRIGHTDOWN.Name = "buttonRIGHTDOWN";
     this.buttonRIGHTDOWN.Size = new System.Drawing.Size(55, 28);
     this.buttonRIGHTDOWN.TabIndex = 16;
     this.buttonRIGHTDOWN.Tag = "35";
     this.buttonRIGHTDOWN.Text = "右下";
     this.buttonRIGHTDOWN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonRIGHTDOWN, null);
     this.buttonRIGHTDOWN.Click += new System.EventHandler(this.buttonRIGHTDOWN_Click);
     //
     // buttonLEFTDOWN
     //
     this.buttonLEFTDOWN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLEFTDOWN, null);
     this.buttonLEFTDOWN.Location = new System.Drawing.Point(7, 196);
     this.buttonLEFTDOWN.Name = "buttonLEFTDOWN";
     this.buttonLEFTDOWN.Size = new System.Drawing.Size(55, 28);
     this.buttonLEFTDOWN.TabIndex = 15;
     this.buttonLEFTDOWN.Tag = "34";
     this.buttonLEFTDOWN.Text = "左下";
     this.buttonLEFTDOWN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLEFTDOWN, null);
     this.buttonLEFTDOWN.Click += new System.EventHandler(this.buttonLEFTDOWN_Click);
     //
     // buttonRIGHTUP
     //
     this.buttonRIGHTUP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonRIGHTUP, null);
     this.buttonRIGHTUP.Location = new System.Drawing.Point(68, 156);
     this.buttonRIGHTUP.Name = "buttonRIGHTUP";
     this.buttonRIGHTUP.Size = new System.Drawing.Size(55, 28);
     this.buttonRIGHTUP.TabIndex = 14;
     this.buttonRIGHTUP.Tag = "33";
     this.buttonRIGHTUP.Text = "右上";
     this.buttonRIGHTUP.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonRIGHTUP, null);
     this.buttonRIGHTUP.Click += new System.EventHandler(this.buttonRIGHTUP_Click);
     //
     // buttonLEFTUP
     //
     this.buttonLEFTUP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLEFTUP, null);
     this.buttonLEFTUP.Location = new System.Drawing.Point(7, 156);
     this.buttonLEFTUP.Name = "buttonLEFTUP";
     this.buttonLEFTUP.Size = new System.Drawing.Size(55, 28);
     this.buttonLEFTUP.TabIndex = 13;
     this.buttonLEFTUP.Tag = "32";
     this.buttonLEFTUP.Text = "左上";
     this.buttonLEFTUP.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLEFTUP, null);
     this.buttonLEFTUP.Click += new System.EventHandler(this.buttonLEFTUP_Click);
     //
     // button15
     //
     this.button15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button15, null);
     this.button15.Location = new System.Drawing.Point(68, 326);
     this.button15.Name = "button15";
     this.button15.Size = new System.Drawing.Size(55, 28);
     this.button15.TabIndex = 12;
     this.button15.Tag = "9";
     this.button15.Text = "光圈-";
     this.button15.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button15, null);
     //
     // button14
     //
     this.button14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button14, null);
     this.button14.Location = new System.Drawing.Point(7, 326);
     this.button14.Name = "button14";
     this.button14.Size = new System.Drawing.Size(55, 28);
     this.button14.TabIndex = 11;
     this.button14.Tag = "8";
     this.button14.Text = "光圈+";
     this.button14.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button14, null);
     //
     // buttonRIGHT
     //
     this.buttonRIGHT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonRIGHT, null);
     this.buttonRIGHT.Location = new System.Drawing.Point(69, 67);
     this.buttonRIGHT.Name = "buttonRIGHT";
     this.buttonRIGHT.Size = new System.Drawing.Size(55, 28);
     this.buttonRIGHT.TabIndex = 10;
     this.buttonRIGHT.Tag = "3";
     this.buttonRIGHT.Text = "右";
     this.buttonRIGHT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonRIGHT, null);
     this.buttonRIGHT.Click += new System.EventHandler(this.buttonRIGHT_Click);
     //
     // buttonLEFT
     //
     this.buttonLEFT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonLEFT, null);
     this.buttonLEFT.Location = new System.Drawing.Point(7, 66);
     this.buttonLEFT.Name = "buttonLEFT";
     this.buttonLEFT.Size = new System.Drawing.Size(55, 28);
     this.buttonLEFT.TabIndex = 9;
     this.buttonLEFT.Tag = "2";
     this.buttonLEFT.Text = "左";
     this.buttonLEFT.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonLEFT, null);
     this.buttonLEFT.Click += new System.EventHandler(this.buttonLEFT_Click);
     //
     // buttonDOWN
     //
     this.buttonDOWN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonDOWN, null);
     this.buttonDOWN.Location = new System.Drawing.Point(37, 105);
     this.buttonDOWN.Name = "buttonDOWN";
     this.buttonDOWN.Size = new System.Drawing.Size(55, 28);
     this.buttonDOWN.TabIndex = 8;
     this.buttonDOWN.Tag = "1";
     this.buttonDOWN.Text = "下";
     this.buttonDOWN.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonDOWN, null);
     this.buttonDOWN.Click += new System.EventHandler(this.buttonDOWN_Click);
     //
     // buttonUP
     //
     this.buttonUP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.buttonUP, null);
     this.buttonUP.Location = new System.Drawing.Point(37, 28);
     this.buttonUP.Name = "buttonUP";
     this.buttonUP.Size = new System.Drawing.Size(55, 28);
     this.buttonUP.TabIndex = 7;
     this.buttonUP.Tag = "0";
     this.buttonUP.Text = "上";
     this.buttonUP.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.buttonUP, null);
     this.buttonUP.Click += new System.EventHandler(this.buttonUP_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     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(1007, 746);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 28);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1007, 718);
     this.panel3.TabIndex = 1;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.panel5);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(412, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(595, 718);
     this.panel4.TabIndex = 1;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.panel7);
     this.panel5.Controls.Add(this.ultraGroupBox2);
     this.panel5.Controls.Add(this.ultraExpandableGroupBox1);
     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(595, 718);
     this.panel5.TabIndex = 0;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // panel7
     //
     this.panel7.Controls.Add(this.ultraGroupBox4);
     this.panel7.Controls.Add(this.ultraExpandableGroupBox2);
     this.coreBind.SetDatabasecommand(this.panel7, null);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(0, 138);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(595, 556);
     this.panel7.TabIndex = 1;
     this.coreBind.SetVerification(this.panel7, null);
     //
     // ultraGroupBox4
     //
     this.ultraGroupBox4.Controls.Add(this.button4);
     this.ultraGroupBox4.Controls.Add(this.button3);
     this.ultraGroupBox4.Controls.Add(this.button2);
     this.ultraGroupBox4.Controls.Add(this.button1);
     this.ultraGroupBox4.Controls.Add(this.weighEditorControl1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox4, null);
     this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox4.Name = "ultraGroupBox4";
     this.ultraGroupBox4.Size = new System.Drawing.Size(567, 556);
     this.ultraGroupBox4.TabIndex = 1;
     this.ultraGroupBox4.Text = "计量实时信息";
     this.coreBind.SetVerification(this.ultraGroupBox4, null);
     this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button4, null);
     this.button4.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold);
     this.button4.Location = new System.Drawing.Point(508, 260);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(69, 30);
     this.button4.TabIndex = 9;
     this.button4.Text = "补 写";
     this.button4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button4, null);
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button3, null);
     this.button3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold);
     this.button3.Location = new System.Drawing.Point(589, 344);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(69, 30);
     this.button3.TabIndex = 7;
     this.button3.Text = "打 印";
     this.button3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button3, null);
     this.button3.Visible = false;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button2
     //
     this.coreBind.SetDatabasecommand(this.button2, null);
     this.button2.Font = new System.Drawing.Font("宋体", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button2.Location = new System.Drawing.Point(589, 260);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(88, 30);
     this.button2.TabIndex = 2;
     this.button2.Text = "button2";
     this.button2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.button2, null);
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button1, null);
     this.button1.Enabled = false;
     this.button1.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold);
     this.button1.Location = new System.Drawing.Point(508, 344);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(69, 30);
     this.button1.TabIndex = 6;
     this.button1.Text = "保 存";
     this.button1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button1, null);
     this.button1.Click += new System.EventHandler(this.button1_Click);
     this.button1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.button1_KeyPress);
     //
     // weighEditorControl1
     //
     this.weighEditorControl1.BackColor = System.Drawing.Color.Transparent;
     this.weighEditorControl1.BillNo = "";
     this.weighEditorControl1.CardDedution = "";
     this.weighEditorControl1.CardNo = "";
     this.weighEditorControl1.CardWeightNo = "";
     this.weighEditorControl1.CarNo = "";
     this.weighEditorControl1.Cost = 0;
     this.coreBind.SetDatabasecommand(this.weighEditorControl1, null);
     this.weighEditorControl1.Deduction = 0;
     this.weighEditorControl1.DischargeDepart = "";
     this.weighEditorControl1.DischargeFlag = "";
     this.weighEditorControl1.DischargePlace = "";
     this.weighEditorControl1.Discharger = "";
     this.weighEditorControl1.DischargeTime = "";
     this.weighEditorControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.weighEditorControl1.Flow = "";
     this.weighEditorControl1.GrossWeight = 0;
     this.weighEditorControl1.IFYBFirst = false;
     this.weighEditorControl1.IsMultiMaterials = false;
     this.weighEditorControl1.IsNeedDischarge = false;
     this.weighEditorControl1.IsTermTare = false;
     this.weighEditorControl1.Location = new System.Drawing.Point(3, 18);
     this.weighEditorControl1.Material = "";
     this.weighEditorControl1.MaterialName = "";
     this.weighEditorControl1.Name = "weighEditorControl1";
     this.weighEditorControl1.NetWeight = 0;
     this.weighEditorControl1.OrderNo = "";
     this.weighEditorControl1.OrderSeq = "";
     this.weighEditorControl1.PointCode = "";
     this.weighEditorControl1.PointName = "";
     this.weighEditorControl1.QuickPlan = "";
     this.weighEditorControl1.ReceiveCompany = "";
     this.weighEditorControl1.ReceiveCompanyName = "";
     this.weighEditorControl1.Remark = "";
     this.weighEditorControl1.SendCompany = "";
     this.weighEditorControl1.SendCompanyName = "";
     this.weighEditorControl1.SenderGrosssWeight = 0;
     this.weighEditorControl1.SenderTareWeight = 0;
     this.weighEditorControl1.SenderWeight = 0;
     this.weighEditorControl1.SendPlace = "";
     this.weighEditorControl1.Size = new System.Drawing.Size(561, 535);
     this.weighEditorControl1.StoveCount1 = 0;
     this.weighEditorControl1.StoveCount2 = 0;
     this.weighEditorControl1.StoveCount3 = 0;
     this.weighEditorControl1.StoveNo1 = "";
     this.weighEditorControl1.StoveNo2 = "";
     this.weighEditorControl1.StoveNo3 = "";
     this.weighEditorControl1.TabIndex = 0;
     this.weighEditorControl1.TareWeight = 0;
     this.weighEditorControl1.TermTareType = YGJZJL.Car.TermTares.Hours24;
     this.weighEditorControl1.TransCompany = "";
     this.weighEditorControl1.TransCompanyName = "";
     this.weighEditorControl1.TransPlanNo = "";
     this.coreBind.SetVerification(this.weighEditorControl1, null);
     this.weighEditorControl1.Weigher = "";
     this.weighEditorControl1.WeighGroup = "";
     this.weighEditorControl1.WeighShift = "";
     this.weighEditorControl1.WeighStatus = "";
     this.weighEditorControl1.WeightType = -1;
     //
     // ultraExpandableGroupBox2
     //
     this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel3);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox2, null);
     this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Right;
     this.ultraExpandableGroupBox2.Expanded = false;
     this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(200, 556);
     this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftInsideBorder;
     this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(567, 0);
     this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
     this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(28, 556);
     this.ultraExpandableGroupBox2.TabIndex = 2;
     this.ultraExpandableGroupBox2.Text = "计量点信息1";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox2, null);
     this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel3
     //
     this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraGrid2);
     this.ultraExpandableGroupBoxPanel3.Controls.Add(this.panel8);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel3, null);
     this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
     this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(177, 550);
     this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel3, null);
     this.ultraExpandableGroupBoxPanel3.Visible = false;
     //
     // ultraGrid2
     //
     this.ultraGrid2.ContextMenuStrip = this.contextMenuStrip1;
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "计量点基础表";
     this.ultraGrid2.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid2.DisplayLayout.Appearance = appearance1;
     ultraGridColumn9.Header.VisiblePosition = 1;
     ultraGridColumn9.Hidden = true;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn10.Header.VisiblePosition = 2;
     ultraGridColumn10.Width = 118;
     ultraGridColumn11.Header.VisiblePosition = 0;
     ultraGridColumn11.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn11.Width = 45;
     ultraGridColumn12.Header.VisiblePosition = 3;
     ultraGridColumn12.Hidden = true;
     ultraGridColumn13.Header.VisiblePosition = 4;
     ultraGridColumn13.Hidden = true;
     ultraGridColumn14.Header.VisiblePosition = 5;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn15.Header.VisiblePosition = 6;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn16.Header.VisiblePosition = 7;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn17.Header.VisiblePosition = 8;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn18.Header.VisiblePosition = 9;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn19.Header.VisiblePosition = 10;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn20.Header.VisiblePosition = 11;
     ultraGridColumn20.Hidden = true;
     ultraGridColumn21.Header.VisiblePosition = 12;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn22.Header.VisiblePosition = 13;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn23.Header.VisiblePosition = 14;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn24.Header.VisiblePosition = 15;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn25.Header.VisiblePosition = 16;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn26.Header.VisiblePosition = 17;
     ultraGridColumn26.Hidden = true;
     ultraGridColumn27.Header.VisiblePosition = 18;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn28.Header.VisiblePosition = 19;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn29.Header.VisiblePosition = 20;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn30.Header.VisiblePosition = 21;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn31.Header.VisiblePosition = 22;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn32.Header.VisiblePosition = 23;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn33.Header.VisiblePosition = 24;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn34.Header.VisiblePosition = 25;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn35.Header.VisiblePosition = 26;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn36.Header.VisiblePosition = 27;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn37.Header.VisiblePosition = 28;
     ultraGridColumn37.Hidden = true;
     ultraGridColumn38.Header.VisiblePosition = 29;
     ultraGridColumn38.Hidden = true;
     ultraGridColumn39.Header.VisiblePosition = 30;
     ultraGridColumn39.Hidden = true;
     ultraGridColumn40.Header.VisiblePosition = 31;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn41.Header.VisiblePosition = 32;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn42.Header.VisiblePosition = 33;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn43.Header.VisiblePosition = 34;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn44.Header.VisiblePosition = 35;
     ultraGridColumn44.Hidden = true;
     ultraGridBand3.Columns.AddRange(new object[] {
     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});
     ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
     appearance24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     appearance24.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.ultraGrid2.DisplayLayout.CaptionAppearance = appearance24;
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 10;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance2;
     appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance3.BackColor2 = System.Drawing.Color.White;
     appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance3.FontData.SizeInPoints = 11F;
     appearance3.FontData.UnderlineAsString = "False";
     appearance3.ForeColor = System.Drawing.Color.Black;
     appearance3.TextHAlignAsString = "Center";
     appearance3.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance3;
     appearance4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance4;
     appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance5.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance5;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance6.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance6;
     this.ultraGrid2.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(177, 495);
     this.ultraGrid2.TabIndex = 4;
     this.ultraGrid2.Text = "计量点信息";
     this.coreBind.SetVerification(this.ultraGrid2, null);
     this.ultraGrid2.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid2_DoubleClickRow);
     //
     // contextMenuStrip1
     //
     this.coreBind.SetDatabasecommand(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1,
     this.toolStripMenuItem2,
     this.toolStripMenuItem3,
     this.toolStripMenuItem4,
     this.toolStripMenuItem5});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(145, 114);
     this.coreBind.SetVerification(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opened += new System.EventHandler(this.contextMenuStrip1_Opened);
     this.contextMenuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.contextMenuStrip1_ItemClicked);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem1.Text = "接管";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem2.Text = "取消";
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem3.Text = "全选(已接管)";
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem4.Text = "全选(未接管)";
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(144, 22);
     this.toolStripMenuItem5.Text = "取消选择";
     //
     // panel8
     //
     this.panel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.panel8.Controls.Add(this.btnRefresh);
     this.panel8.Controls.Add(this.btnJG);
     this.coreBind.SetDatabasecommand(this.panel8, null);
     this.panel8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel8.Location = new System.Drawing.Point(0, 495);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(177, 55);
     this.panel8.TabIndex = 5;
     this.coreBind.SetVerification(this.panel8, null);
     //
     // btnRefresh
     //
     this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnRefresh, null);
     this.btnRefresh.Location = new System.Drawing.Point(97, 14);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(69, 28);
     this.btnRefresh.TabIndex = 6;
     this.btnRefresh.Text = "刷 新";
     this.btnRefresh.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnRefresh, null);
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnJG
     //
     this.btnJG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnJG, null);
     this.btnJG.Location = new System.Drawing.Point(14, 14);
     this.btnJG.Name = "btnJG";
     this.btnJG.Size = new System.Drawing.Size(69, 28);
     this.btnJG.TabIndex = 5;
     this.btnJG.Text = "接 管";
     this.btnJG.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnJG, null);
     this.btnJG.Click += new System.EventHandler(this.btnJG_Click);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.rtuControl1);
     this.ultraGroupBox2.Controls.Add(this.meterControl1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(595, 138);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "仪表参数";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // rtuControl1
     //
     this.rtuControl1.BackColor = System.Drawing.Color.Transparent;
     this.rtuControl1.BackInfreredRadio = YGJZJL.Car.InfraredRadioStatus.Connected;
     this.coreBind.SetDatabasecommand(this.rtuControl1, null);
     this.rtuControl1.FrontInfraredRadio = YGJZJL.Car.InfraredRadioStatus.Connected;
     this.rtuControl1.Light = YGJZJL.Car.LightStatus.Closed;
     this.rtuControl1.Location = new System.Drawing.Point(436, 27);
     this.rtuControl1.Name = "rtuControl1";
     this.rtuControl1.Ring = YGJZJL.Car.RingStatus.Stop;
     this.rtuControl1.ShowRestartControl = true;
     this.rtuControl1.Size = new System.Drawing.Size(389, 96);
     this.rtuControl1.TabIndex = 1;
     this.rtuControl1.TrafficLight = YGJZJL.Car.TrafficLightStatus.Green;
     this.coreBind.SetVerification(this.rtuControl1, null);
     //
     // meterControl1
     //
     this.meterControl1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.meterControl1, null);
     this.meterControl1.Location = new System.Drawing.Point(24, 38);
     this.meterControl1.Name = "meterControl1";
     this.meterControl1.Size = new System.Drawing.Size(383, 72);
     this.meterControl1.Status = YGJZJL.Car.MeterStatus.UnConnect;
     this.meterControl1.TabIndex = 0;
     this.coreBind.SetVerification(this.meterControl1, null);
     this.meterControl1.Weight = 0;
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel4);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.Expanded = false;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(595, 240);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 694);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(595, 24);
     this.ultraExpandableGroupBox1.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel4
     //
     this.ultraExpandableGroupBoxPanel4.Controls.Add(this.panel14);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel4, null);
     this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
     this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(589, 219);
     this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel4, null);
     this.ultraExpandableGroupBoxPanel4.Visible = false;
     //
     // panel14
     //
     this.panel14.Controls.Add(this.ultraTabControl1);
     this.coreBind.SetDatabasecommand(this.panel14, null);
     this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel14.Location = new System.Drawing.Point(0, 0);
     this.panel14.Name = "panel14";
     this.panel14.Size = new System.Drawing.Size(589, 219);
     this.panel14.TabIndex = 0;
     this.coreBind.SetVerification(this.panel14, null);
     //
     // ultraTabControl1
     //
     this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
     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(589, 219);
     this.ultraTabControl1.Style = Infragistics.Win.UltraWinTabControl.UltraTabControlStyle.Flat;
     this.ultraTabControl1.TabIndex = 1;
     ultraTab2.TabPage = this.ultraTabPageControl3;
     ultraTab2.Text = "计量点图像";
     ultraTab3.TabPage = this.ultraTabPageControl2;
     ultraTab3.Text = "重量曲线图";
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text = "计量称重信息";
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab2,
     ultraTab3,
     ultraTab1});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     //
     // 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(587, 198);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.panel9);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(412, 718);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "视频监控区域";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // panel9
     //
     this.panel9.AutoScroll = true;
     this.panel9.BackColor = System.Drawing.SystemColors.Control;
     this.panel9.Controls.Add(this.panel13);
     this.panel9.Controls.Add(this.panel12);
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Controls.Add(this.panel10);
     this.coreBind.SetDatabasecommand(this.panel9, null);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(3, 18);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(406, 697);
     this.panel9.TabIndex = 0;
     this.coreBind.SetVerification(this.panel9, null);
     //
     // panel13
     //
     this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel13.Controls.Add(this.videoChannel4);
     this.coreBind.SetDatabasecommand(this.panel13, null);
     this.panel13.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel13.Location = new System.Drawing.Point(0, 720);
     this.panel13.Name = "panel13";
     this.panel13.Size = new System.Drawing.Size(389, 240);
     this.panel13.TabIndex = 3;
     this.coreBind.SetVerification(this.panel13, null);
     //
     // videoChannel4
     //
     this.videoChannel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel4, null);
     this.videoChannel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel4.Location = new System.Drawing.Point(0, 0);
     this.videoChannel4.Name = "videoChannel4";
     this.videoChannel4.Size = new System.Drawing.Size(387, 238);
     this.videoChannel4.TabIndex = 1;
     this.videoChannel4.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel4, null);
     this.videoChannel4.DoubleClick += new System.EventHandler(this.videoChannel4_DoubleClick);
     //
     // panel12
     //
     this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel12.Controls.Add(this.videoChannel3);
     this.coreBind.SetDatabasecommand(this.panel12, null);
     this.panel12.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel12.Location = new System.Drawing.Point(0, 480);
     this.panel12.Name = "panel12";
     this.panel12.Size = new System.Drawing.Size(389, 240);
     this.panel12.TabIndex = 2;
     this.coreBind.SetVerification(this.panel12, null);
     //
     // videoChannel3
     //
     this.videoChannel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel3, null);
     this.videoChannel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel3.Location = new System.Drawing.Point(0, 0);
     this.videoChannel3.Name = "videoChannel3";
     this.videoChannel3.Size = new System.Drawing.Size(387, 238);
     this.videoChannel3.TabIndex = 1;
     this.videoChannel3.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel3, null);
     this.videoChannel3.DoubleClick += new System.EventHandler(this.videoChannel3_DoubleClick);
     //
     // panel11
     //
     this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel11.Controls.Add(this.videoChannel2);
     this.coreBind.SetDatabasecommand(this.panel11, null);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel11.Location = new System.Drawing.Point(0, 240);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(389, 240);
     this.panel11.TabIndex = 1;
     this.coreBind.SetVerification(this.panel11, null);
     //
     // videoChannel2
     //
     this.videoChannel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel2, null);
     this.videoChannel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel2.Location = new System.Drawing.Point(0, 0);
     this.videoChannel2.Name = "videoChannel2";
     this.videoChannel2.Size = new System.Drawing.Size(387, 238);
     this.videoChannel2.TabIndex = 1;
     this.videoChannel2.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel2, null);
     this.videoChannel2.DoubleClick += new System.EventHandler(this.videoChannel2_DoubleClick);
     //
     // panel10
     //
     this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel10.Controls.Add(this.videoChannel1);
     this.coreBind.SetDatabasecommand(this.panel10, null);
     this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel10.Location = new System.Drawing.Point(0, 0);
     this.panel10.Name = "panel10";
     this.panel10.Size = new System.Drawing.Size(389, 240);
     this.panel10.TabIndex = 0;
     this.coreBind.SetVerification(this.panel10, null);
     //
     // videoChannel1
     //
     this.videoChannel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(217)))), ((int)(((byte)(240)))));
     this.coreBind.SetDatabasecommand(this.videoChannel1, null);
     this.videoChannel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.videoChannel1.Location = new System.Drawing.Point(0, 0);
     this.videoChannel1.Name = "videoChannel1";
     this.videoChannel1.Size = new System.Drawing.Size(387, 238);
     this.videoChannel1.TabIndex = 0;
     this.videoChannel1.TabStop = false;
     this.coreBind.SetVerification(this.videoChannel1, null);
     this.videoChannel1.DoubleClick += new System.EventHandler(this.videoChannel1_DoubleClick);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.numericUpDown1);
     this.panel2.Controls.Add(this.txtZZ);
     this.panel2.Controls.Add(this.ultraCheckEditor1);
     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(1007, 28);
     this.panel2.TabIndex = 0;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.coreBind.SetDatabasecommand(this.numericUpDown1, null);
     this.numericUpDown1.Location = new System.Drawing.Point(589, 3);
     this.numericUpDown1.Maximum = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.numericUpDown1.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     -2147483648});
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.ReadOnly = true;
     this.numericUpDown1.Size = new System.Drawing.Size(40, 21);
     this.numericUpDown1.TabIndex = 11;
     this.numericUpDown1.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.coreBind.SetVerification(this.numericUpDown1, null);
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged_1);
     //
     // txtZZ
     //
     this.coreBind.SetDatabasecommand(this.txtZZ, null);
     this.txtZZ.Location = new System.Drawing.Point(141, 3);
     this.txtZZ.Name = "txtZZ";
     this.txtZZ.ReadOnly = true;
     this.txtZZ.Size = new System.Drawing.Size(51, 21);
     this.txtZZ.TabIndex = 1;
     this.coreBind.SetVerification(this.txtZZ, null);
     //
     // ultraCheckEditor1
     //
     this.ultraCheckEditor1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.ultraCheckEditor1.BackColorInternal = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.coreBind.SetDatabasecommand(this.ultraCheckEditor1, null);
     this.ultraCheckEditor1.Location = new System.Drawing.Point(514, 4);
     this.ultraCheckEditor1.Name = "ultraCheckEditor1";
     this.ultraCheckEditor1.Size = new System.Drawing.Size(72, 20);
     this.ultraCheckEditor1.TabIndex = 10;
     this.ultraCheckEditor1.Text = "自动打印";
     this.coreBind.SetVerification(this.ultraCheckEditor1, 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, 0);
     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;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(392, 382);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(486, 44);
     controlContainerTool3.ControlName = "txtZZ";
     controlContainerTool3.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.InstanceProps.Width = 122;
     buttonTool19.InstanceProps.IsFirstInGroup = true;
     buttonTool20.InstanceProps.IsFirstInGroup = true;
     controlContainerTool1.ControlName = "ultraCheckEditor1";
     controlContainerTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool4.ControlName = "numericUpDown1";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool8,
     controlContainerTool3,
     buttonTool17,
     buttonTool19,
     buttonTool20,
     controlContainerTool1,
     controlContainerTool4,
     buttonTool21,
     buttonTool22});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool23.SharedPropsInternal.Caption = "打开对讲";
     buttonTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool6.ControlName = "txtZZ";
     controlContainerTool6.SharedPropsInternal.Caption = "剩余纸张数";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.SharedPropsInternal.Width = 122;
     buttonTool24.SharedPropsInternal.Caption = "换纸";
     buttonTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool26.SharedPropsInternal.Caption = "切换视频";
     buttonTool26.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool27.SharedPropsInternal.Caption = "查看/关闭一次计量图像";
     buttonTool27.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool28.SharedPropsInternal.Caption = "磅单打印";
     buttonTool28.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool29.SharedPropsInternal.Caption = "校秤";
     buttonTool29.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool30.SharedPropsInternal.Caption = "长期预报查询";
     buttonTool30.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Caption = "ControlContainerTool1";
     controlContainerTool5.ControlName = "ultraCheckEditor1";
     controlContainerTool5.SharedPropsInternal.Caption = "ControlContainerTool2";
     controlContainerTool7.ControlName = "numericUpDown1";
     controlContainerTool7.SharedPropsInternal.Caption = "ControlContainerTool3";
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool23,
     controlContainerTool6,
     buttonTool24,
     buttonTool26,
     buttonTool27,
     buttonTool28,
     buttonTool29,
     buttonTool30,
     controlContainerTool2,
     controlContainerTool5,
     controlContainerTool7});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _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(1007, 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, 0);
     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(1007, 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, 28);
     this._panel2_Toolbars_Dock_Area_Bottom.Name = "_panel2_Toolbars_Dock_Area_Bottom";
     this._panel2_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1007, 0);
     this._panel2_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel2_Toolbars_Dock_Area_Bottom, null);
     //
     // bigVideoChannel
     //
     this.coreBind.SetDatabasecommand(this.bigVideoChannel, null);
     this.bigVideoChannel.Location = new System.Drawing.Point(0, 18);
     this.bigVideoChannel.Name = "bigVideoChannel";
     this.bigVideoChannel.Size = new System.Drawing.Size(20, 21);
     this.bigVideoChannel.TabIndex = 2;
     this.bigVideoChannel.TabStop = false;
     this.coreBind.SetVerification(this.bigVideoChannel, null);
     this.bigVideoChannel.Visible = false;
     this.bigVideoChannel.DoubleClick += new System.EventHandler(this.bigVideoChannel_DoubleClick);
     this.bigVideoChannel.MouseLeave += new System.EventHandler(this.bigVideoChannel_MouseLeave);
     this.bigVideoChannel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.bigVideoChannel_MouseMove);
     this.bigVideoChannel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.bigVideoChannel_MouseDown);
     this.bigVideoChannel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.bigVideoChannel_MouseUp);
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel6);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel1, null);
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(877, 163);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     //
     // panel6
     //
     this.coreBind.SetDatabasecommand(this.panel6, null);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(877, 163);
     this.panel6.TabIndex = 0;
     this.coreBind.SetVerification(this.panel6, null);
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(200, 100);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Visible = false;
     //
     // ultraDockManager1
     //
     this.ultraDockManager1.CompressUnpinnedTabs = false;
     dockAreaPane1.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.TabGroup;
     dockAreaPane1.DockedBefore = new System.Guid("fab36dca-93df-47ae-a661-844c242a30e6");
     dockAreaPane1.FloatingLocation = new System.Drawing.Point(707, 475);
     dockAreaPane1.Size = new System.Drawing.Size(100, 100);
     dockAreaPane2.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.TabGroup;
     dockAreaPane2.DockedBefore = new System.Guid("d4bf97a0-4113-40bb-bf58-1ccec85fb19f");
     dockAreaPane2.FloatingLocation = new System.Drawing.Point(707, 475);
     dockableControlPane1.Control = this.panelYYBF;
     dockableControlPane1.FlyoutSize = new System.Drawing.Size(133, -1);
     dockableControlPane1.OriginalControlBounds = new System.Drawing.Rectangle(271, 38, 136, 579);
     dockableControlPane1.Pinned = false;
     dockableControlPane1.Size = new System.Drawing.Size(100, 100);
     dockableControlPane1.Text = "语音播报";
     dockAreaPane2.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
     dockableControlPane1});
     dockAreaPane2.Size = new System.Drawing.Size(100, 746);
     dockAreaPane3.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.VerticalSplit;
     dockAreaPane3.DockedBefore = new System.Guid("d2d5fb92-0acb-49d3-8207-82e5bb965657");
     dockAreaPane3.FloatingLocation = new System.Drawing.Point(762, 483);
     dockAreaPane3.Size = new System.Drawing.Size(100, 100);
     dockAreaPane4.ChildPaneStyle = Infragistics.Win.UltraWinDock.ChildPaneStyle.VerticalSplit;
     dockAreaPane4.FloatingLocation = new System.Drawing.Point(762, 483);
     dockableControlPane2.Control = this.panelSPKZ;
     dockableControlPane2.FlyoutSize = new System.Drawing.Size(132, -1);
     dockableControlPane2.OriginalControlBounds = new System.Drawing.Rectangle(161, 33, 131, 579);
     dockableControlPane2.Pinned = false;
     dockableControlPane2.Size = new System.Drawing.Size(100, 100);
     dockableControlPane2.Text = "视频控制";
     dockAreaPane4.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
     dockableControlPane2});
     dockAreaPane4.Size = new System.Drawing.Size(100, 746);
     this.ultraDockManager1.DockAreas.AddRange(new Infragistics.Win.UltraWinDock.DockAreaPane[] {
     dockAreaPane1,
     dockAreaPane2,
     dockAreaPane3,
     dockAreaPane4});
     this.ultraDockManager1.HostControl = this;
     this.ultraDockManager1.WindowStyle = Infragistics.Win.UltraWinDock.WindowStyle.Office2003;
     //
     // _FrmBaseUnpinnedTabAreaLeft
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaLeft, null);
     this._FrmBaseUnpinnedTabAreaLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this._FrmBaseUnpinnedTabAreaLeft.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaLeft.Location = new System.Drawing.Point(0, 0);
     this._FrmBaseUnpinnedTabAreaLeft.Name = "_FrmBaseUnpinnedTabAreaLeft";
     this._FrmBaseUnpinnedTabAreaLeft.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaLeft.Size = new System.Drawing.Size(0, 746);
     this._FrmBaseUnpinnedTabAreaLeft.TabIndex = 3;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaLeft, null);
     //
     // _FrmBaseUnpinnedTabAreaRight
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaRight, null);
     this._FrmBaseUnpinnedTabAreaRight.Dock = System.Windows.Forms.DockStyle.Right;
     this._FrmBaseUnpinnedTabAreaRight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaRight.Location = new System.Drawing.Point(1007, 0);
     this._FrmBaseUnpinnedTabAreaRight.Name = "_FrmBaseUnpinnedTabAreaRight";
     this._FrmBaseUnpinnedTabAreaRight.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaRight.Size = new System.Drawing.Size(21, 746);
     this._FrmBaseUnpinnedTabAreaRight.TabIndex = 4;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaRight, null);
     //
     // _FrmBaseUnpinnedTabAreaTop
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaTop, null);
     this._FrmBaseUnpinnedTabAreaTop.Dock = System.Windows.Forms.DockStyle.Top;
     this._FrmBaseUnpinnedTabAreaTop.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaTop.Location = new System.Drawing.Point(0, 0);
     this._FrmBaseUnpinnedTabAreaTop.Name = "_FrmBaseUnpinnedTabAreaTop";
     this._FrmBaseUnpinnedTabAreaTop.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaTop.Size = new System.Drawing.Size(1007, 0);
     this._FrmBaseUnpinnedTabAreaTop.TabIndex = 5;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaTop, null);
     //
     // _FrmBaseUnpinnedTabAreaBottom
     //
     this.coreBind.SetDatabasecommand(this._FrmBaseUnpinnedTabAreaBottom, null);
     this._FrmBaseUnpinnedTabAreaBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this._FrmBaseUnpinnedTabAreaBottom.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseUnpinnedTabAreaBottom.Location = new System.Drawing.Point(0, 746);
     this._FrmBaseUnpinnedTabAreaBottom.Name = "_FrmBaseUnpinnedTabAreaBottom";
     this._FrmBaseUnpinnedTabAreaBottom.Owner = this.ultraDockManager1;
     this._FrmBaseUnpinnedTabAreaBottom.Size = new System.Drawing.Size(1007, 0);
     this._FrmBaseUnpinnedTabAreaBottom.TabIndex = 6;
     this.coreBind.SetVerification(this._FrmBaseUnpinnedTabAreaBottom, null);
     //
     // _FrmBaseAutoHideControl
     //
     this._FrmBaseAutoHideControl.Controls.Add(this.dockableWindow1);
     this._FrmBaseAutoHideControl.Controls.Add(this.dockableWindow2);
     this.coreBind.SetDatabasecommand(this._FrmBaseAutoHideControl, null);
     this._FrmBaseAutoHideControl.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._FrmBaseAutoHideControl.Location = new System.Drawing.Point(989, 0);
     this._FrmBaseAutoHideControl.Name = "_FrmBaseAutoHideControl";
     this._FrmBaseAutoHideControl.Owner = this.ultraDockManager1;
     this._FrmBaseAutoHideControl.Size = new System.Drawing.Size(18, 746);
     this._FrmBaseAutoHideControl.TabIndex = 7;
     this.coreBind.SetVerification(this._FrmBaseAutoHideControl, null);
     //
     // dockableWindow1
     //
     this.dockableWindow1.Controls.Add(this.panelYYBF);
     this.coreBind.SetDatabasecommand(this.dockableWindow1, null);
     this.dockableWindow1.Location = new System.Drawing.Point(5, 0);
     this.dockableWindow1.Name = "dockableWindow1";
     this.dockableWindow1.Owner = this.ultraDockManager1;
     this.dockableWindow1.Size = new System.Drawing.Size(133, 746);
     this.dockableWindow1.TabIndex = 10;
     this.coreBind.SetVerification(this.dockableWindow1, null);
     //
     // dockableWindow2
     //
     this.dockableWindow2.Controls.Add(this.panelSPKZ);
     this.coreBind.SetDatabasecommand(this.dockableWindow2, null);
     this.dockableWindow2.Location = new System.Drawing.Point(-10000, 0);
     this.dockableWindow2.Name = "dockableWindow2";
     this.dockableWindow2.Owner = this.ultraDockManager1;
     this.dockableWindow2.Size = new System.Drawing.Size(132, 746);
     this.dockableWindow2.TabIndex = 11;
     this.coreBind.SetVerification(this.dockableWindow2, null);
     //
     // windowDockingArea3
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea3, null);
     this.windowDockingArea3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.windowDockingArea3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea3.Location = new System.Drawing.Point(4, 4);
     this.windowDockingArea3.Name = "windowDockingArea3";
     this.windowDockingArea3.Owner = this.ultraDockManager1;
     this.windowDockingArea3.Size = new System.Drawing.Size(100, 100);
     this.windowDockingArea3.TabIndex = 0;
     this.coreBind.SetVerification(this.windowDockingArea3, null);
     //
     // windowDockingArea4
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea4, null);
     this.windowDockingArea4.Dock = System.Windows.Forms.DockStyle.Right;
     this.windowDockingArea4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea4.Location = new System.Drawing.Point(1144, 0);
     this.windowDockingArea4.Name = "windowDockingArea4";
     this.windowDockingArea4.Owner = this.ultraDockManager1;
     this.windowDockingArea4.Size = new System.Drawing.Size(105, 746);
     this.windowDockingArea4.TabIndex = 9;
     this.coreBind.SetVerification(this.windowDockingArea4, null);
     //
     // windowDockingArea2
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea2, null);
     this.windowDockingArea2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.windowDockingArea2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea2.Location = new System.Drawing.Point(1165, 0);
     this.windowDockingArea2.Name = "windowDockingArea2";
     this.windowDockingArea2.Owner = this.ultraDockManager1;
     this.windowDockingArea2.Size = new System.Drawing.Size(100, 100);
     this.windowDockingArea2.TabIndex = 8;
     this.coreBind.SetVerification(this.windowDockingArea2, null);
     //
     // windowDockingArea1
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea1, null);
     this.windowDockingArea1.Dock = System.Windows.Forms.DockStyle.Right;
     this.windowDockingArea1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea1.Location = new System.Drawing.Point(4, 4);
     this.windowDockingArea1.Name = "windowDockingArea1";
     this.windowDockingArea1.Owner = this.ultraDockManager1;
     this.windowDockingArea1.Size = new System.Drawing.Size(105, 746);
     this.windowDockingArea1.TabIndex = 0;
     this.coreBind.SetVerification(this.windowDockingArea1, null);
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 60000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // CarWeigh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1028, 746);
     this.Controls.Add(this._FrmBaseAutoHideControl);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bigVideoChannel);
     this.Controls.Add(this.windowDockingArea4);
     this.Controls.Add(this.windowDockingArea1);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaTop);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaBottom);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaLeft);
     this.Controls.Add(this._FrmBaseUnpinnedTabAreaRight);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "CarWeigh";
     this.Tag = "CarWeigh";
     this.Text = "CarWeigh";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.CarWeigh_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CarWeigh_FormClosing);
     this.ultraTabPageControl3.ResumeLayout(false);
     this.panelYCSP.ResumeLayout(false);
     this.panel16.ResumeLayout(false);
     this.panel20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel8)).EndInit();
     this.panel15.ResumeLayout(false);
     this.panel19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel7)).EndInit();
     this.panel22.ResumeLayout(false);
     this.panel18.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel6)).EndInit();
     this.panel21.ResumeLayout(false);
     this.panel17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel5)).EndInit();
     this.ultraTabPageControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picHT)).EndInit();
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     this.panelYYBF.ResumeLayout(false);
     this.panel23.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).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.dataTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
     this.panelSPKZ.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     this.ultraGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
     this.ultraExpandableGroupBox2.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.panel8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
     this.panel14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     this.panel13.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel4)).EndInit();
     this.panel12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel3)).EndInit();
     this.panel11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel2)).EndInit();
     this.panel10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.videoChannel1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bigVideoChannel)).EndInit();
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDockManager1)).EndInit();
     this._FrmBaseAutoHideControl.ResumeLayout(false);
     this.dockableWindow1.ResumeLayout(false);
     this.dockableWindow2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.Appearance appearance1 = 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_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SUPPLIERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNAME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUNDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BILLNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERIDCARD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YCSFYC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FIRSTLABELID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTITEM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 3115188);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 3115189);
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool5 = new Infragistics.Win.UltraWinToolbars.LabelTool("查询时间");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool14 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool7 = new Infragistics.Win.UltraWinToolbars.LabelTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool9 = new Infragistics.Win.UltraWinToolbars.LabelTool("车号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool10 = new Infragistics.Win.UltraWinToolbars.LabelTool("物料");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool4");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool6 = new Infragistics.Win.UltraWinToolbars.LabelTool("查询时间");
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool8 = new Infragistics.Win.UltraWinToolbars.LabelTool("至");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool11 = new Infragistics.Win.UltraWinToolbars.LabelTool("车号");
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool12 = new Infragistics.Win.UltraWinToolbars.LabelTool("物料");
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool4");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid3 = 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.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.dataColumn29 = 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.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.label15 = new System.Windows.Forms.Label();
     this.tbBZ = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.cbProvider = new System.Windows.Forms.ComboBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbReceiver = new System.Windows.Forms.ComboBox();
     this.label12 = new System.Windows.Forms.Label();
     this.cbSender = new System.Windows.Forms.ComboBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cbTrans = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.cbFlow = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cbMaterial = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tbReceiverPlace = new System.Windows.Forms.TextBox();
     this.tbSenderPlace = new System.Windows.Forms.TextBox();
     this.tbWeight = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.tbCardNo = new System.Windows.Forms.TextBox();
     this.tbCarNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.cbBF = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cbxMaterial = new System.Windows.Forms.ComboBox();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     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.panel2 = new System.Windows.Forms.Panel();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
     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, 26);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(992, 450);
     this.ultraPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(992, 450);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid3.DisplayLayout.Appearance = appearance1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn6.Header.VisiblePosition = 6;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn7.Header.VisiblePosition = 8;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 36;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn8.Header.VisiblePosition = 9;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn9.Header.VisiblePosition = 5;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn10.Header.VisiblePosition = 10;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.Header.VisiblePosition = 11;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn12.Header.VisiblePosition = 12;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 13;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn14.Header.VisiblePosition = 14;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn15.Header.VisiblePosition = 15;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn16.Header.VisiblePosition = 17;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn17.Header.VisiblePosition = 18;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn18.Header.VisiblePosition = 19;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn19.Header.VisiblePosition = 21;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn20.Header.VisiblePosition = 22;
     ultraGridColumn20.Hidden = true;
     ultraGridColumn21.Header.VisiblePosition = 23;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn21.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 20;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn22.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 24;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn23.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 25;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.Header.VisiblePosition = 26;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn26.Header.VisiblePosition = 27;
     ultraGridColumn26.Hidden = true;
     ultraGridColumn27.Header.VisiblePosition = 28;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn28.Header.VisiblePosition = 29;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn29.Header.VisiblePosition = 30;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn30.Header.VisiblePosition = 31;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn31.Header.VisiblePosition = 32;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn32.Header.VisiblePosition = 33;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn33.Header.VisiblePosition = 34;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn34.Header.VisiblePosition = 35;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn35.Header.VisiblePosition = 36;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn36.Header.VisiblePosition = 37;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn37.Header.VisiblePosition = 38;
     ultraGridColumn37.Hidden = true;
     ultraGridColumn38.Header.VisiblePosition = 39;
     ultraGridColumn38.Hidden = true;
     ultraGridColumn39.Header.VisiblePosition = 40;
     ultraGridColumn39.Hidden = true;
     ultraGridColumn40.Header.VisiblePosition = 41;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn41.Header.VisiblePosition = 7;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn42.Header.VisiblePosition = 16;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 50);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn43.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 43;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn44.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.Header.VisiblePosition = 44;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn45.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.Header.VisiblePosition = 45;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn46.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn46.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,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46});
     ultraGridGroup1.Header.Caption = "卸货";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 12;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup2.Header.Caption = "复磅";
     ultraGridGroup2.Key = "NewGroup1";
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 20;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance2;
     this.ultraGrid3.DisplayLayout.Override.FilterClearButtonLocation = Infragistics.Win.UltraWinGrid.FilterClearButtonLocation.Row;
     this.ultraGrid3.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance3.BackColor2 = System.Drawing.Color.White;
     appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance3.FontData.SizeInPoints = 11F;
     appearance3.FontData.UnderlineAsString = "False";
     appearance3.ForeColor = System.Drawing.Color.Black;
     appearance3.TextHAlignAsString = "Center";
     appearance3.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance3;
     appearance4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance4;
     appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance5.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance5;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance6.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance6;
     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.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(986, 429);
     this.ultraGrid3.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid3_DoubleClickRow);
     //
     // 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.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.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46});
     this.dataTable1.TableName = "汽车衡计量表";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "车证卡号";
     this.dataColumn2.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "车号";
     this.dataColumn3.ColumnName = "FS_CARNO";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "物料名称";
     this.dataColumn4.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "发货单位";
     this.dataColumn5.ColumnName = "FS_SUPPLIERNAME";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "收货单位";
     this.dataColumn6.ColumnName = "FS_RECEIVER";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "发货地点";
     this.dataColumn7.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "收货地点";
     this.dataColumn8.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "承运单位";
     this.dataColumn9.ColumnName = "FS_TRANSNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "计量类型";
     this.dataColumn10.ColumnName = "FS_TYPENAME";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "计量点";
     this.dataColumn11.ColumnName = "FS_POINTNAME";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "重量";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量员";
     this.dataColumn13.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "计量时间";
     this.dataColumn14.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "标识";
     this.dataColumn15.ColumnName = "FS_MEMO";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "卸货人";
     this.dataColumn21.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "卸货点";
     this.dataColumn22.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "卸货时间";
     this.dataColumn23.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "卸货确认";
     this.dataColumn24.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_YKL";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FS_YKBL";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_BILLNUMBER";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FS_YCSFYC";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "FS_STOVENO";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FN_COUNT";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FS_SHIFT";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "供应单位";
     this.dataColumn41.ColumnName = "FS_PROVIDERNAME";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "备注";
     this.dataColumn42.ColumnName = "FS_BZ";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.label15);
     this.ultraGroupBox1.Controls.Add(this.tbBZ);
     this.ultraGroupBox1.Controls.Add(this.label14);
     this.ultraGroupBox1.Controls.Add(this.cbProvider);
     this.ultraGroupBox1.Controls.Add(this.label13);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.label4);
     this.ultraGroupBox1.Controls.Add(this.label7);
     this.ultraGroupBox1.Controls.Add(this.label6);
     this.ultraGroupBox1.Controls.Add(this.cbReceiver);
     this.ultraGroupBox1.Controls.Add(this.label12);
     this.ultraGroupBox1.Controls.Add(this.cbSender);
     this.ultraGroupBox1.Controls.Add(this.label11);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.cbTrans);
     this.ultraGroupBox1.Controls.Add(this.label10);
     this.ultraGroupBox1.Controls.Add(this.cbFlow);
     this.ultraGroupBox1.Controls.Add(this.label9);
     this.ultraGroupBox1.Controls.Add(this.cbMaterial);
     this.ultraGroupBox1.Controls.Add(this.label8);
     this.ultraGroupBox1.Controls.Add(this.tbReceiverPlace);
     this.ultraGroupBox1.Controls.Add(this.tbSenderPlace);
     this.ultraGroupBox1.Controls.Add(this.tbWeight);
     this.ultraGroupBox1.Controls.Add(this.dateTimePicker1);
     this.ultraGroupBox1.Controls.Add(this.tbCardNo);
     this.ultraGroupBox1.Controls.Add(this.tbCarNo);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.cbBF);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 190);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "数据操作";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.Location = new System.Drawing.Point(911, 45);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(11, 12);
     this.label15.TabIndex = 735;
     this.label15.Text = "T";
     this.coreBind.SetVerification(this.label15, null);
     //
     // tbBZ
     //
     this.coreBind.SetDatabasecommand(this.tbBZ, null);
     this.tbBZ.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbBZ.Location = new System.Drawing.Point(350, 140);
     this.tbBZ.Name = "tbBZ";
     this.tbBZ.Size = new System.Drawing.Size(154, 21);
     this.tbBZ.TabIndex = 734;
     this.coreBind.SetVerification(this.tbBZ, null);
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location = new System.Drawing.Point(284, 137);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(58, 24);
     this.label14.TabIndex = 733;
     this.label14.Text = "备注";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     //
     // cbProvider
     //
     this.cbProvider.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbProvider, null);
     this.cbProvider.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbProvider.FormattingEnabled = true;
     this.cbProvider.Location = new System.Drawing.Point(130, 141);
     this.cbProvider.Name = "cbProvider";
     this.cbProvider.Size = new System.Drawing.Size(140, 20);
     this.cbProvider.TabIndex = 732;
     this.coreBind.SetVerification(this.cbProvider, null);
     this.cbProvider.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.Location = new System.Drawing.Point(63, 146);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(53, 12);
     this.label13.TabIndex = 731;
     this.label13.Text = "供应单位";
     this.coreBind.SetVerification(this.label13, null);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(728, 46);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 12);
     this.label5.TabIndex = 730;
     this.label5.Text = "二次重量";
     this.coreBind.SetVerification(this.label5, 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(728, 79);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(53, 12);
     this.label4.TabIndex = 729;
     this.label4.Text = "二次时间";
     this.coreBind.SetVerification(this.label4, 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(728, 107);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(53, 12);
     this.label7.TabIndex = 728;
     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(507, 107);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 12);
     this.label6.TabIndex = 727;
     this.label6.Text = "发货地点";
     this.coreBind.SetVerification(this.label6, null);
     //
     // cbReceiver
     //
     this.cbReceiver.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbReceiver, null);
     this.cbReceiver.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbReceiver.FormattingEnabled = true;
     this.cbReceiver.Location = new System.Drawing.Point(350, 105);
     this.cbReceiver.Name = "cbReceiver";
     this.cbReceiver.Size = new System.Drawing.Size(140, 20);
     this.cbReceiver.TabIndex = 726;
     this.coreBind.SetVerification(this.cbReceiver, 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("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(287, 110);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(53, 12);
     this.label12.TabIndex = 725;
     this.label12.Text = "收货单位";
     this.coreBind.SetVerification(this.label12, null);
     //
     // cbSender
     //
     this.cbSender.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbSender, null);
     this.cbSender.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbSender.FormattingEnabled = true;
     this.cbSender.Location = new System.Drawing.Point(130, 106);
     this.cbSender.Name = "cbSender";
     this.cbSender.Size = new System.Drawing.Size(140, 20);
     this.cbSender.TabIndex = 724;
     this.coreBind.SetVerification(this.cbSender, null);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(63, 111);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(53, 12);
     this.label11.TabIndex = 723;
     this.label11.Text = "发货单位";
     this.coreBind.SetVerification(this.label11, 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(519, 48);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 722;
     this.label2.Text = "车号";
     this.coreBind.SetVerification(this.label2, null);
     //
     // cbTrans
     //
     this.cbTrans.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbTrans, null);
     this.cbTrans.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbTrans.FormattingEnabled = true;
     this.cbTrans.Location = new System.Drawing.Point(566, 71);
     this.cbTrans.Name = "cbTrans";
     this.cbTrans.Size = new System.Drawing.Size(140, 20);
     this.cbTrans.TabIndex = 721;
     this.coreBind.SetVerification(this.cbTrans, null);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(507, 75);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(53, 12);
     this.label10.TabIndex = 720;
     this.label10.Text = "承运单位";
     this.coreBind.SetVerification(this.label10, null);
     //
     // cbFlow
     //
     this.cbFlow.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbFlow, null);
     this.cbFlow.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbFlow.FormattingEnabled = true;
     this.cbFlow.Location = new System.Drawing.Point(350, 71);
     this.cbFlow.Name = "cbFlow";
     this.cbFlow.Size = new System.Drawing.Size(140, 20);
     this.cbFlow.TabIndex = 719;
     this.coreBind.SetVerification(this.cbFlow, null);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(299, 75);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(29, 12);
     this.label9.TabIndex = 718;
     this.label9.Text = "流向";
     this.coreBind.SetVerification(this.label9, null);
     //
     // cbMaterial
     //
     this.cbMaterial.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     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.Location = new System.Drawing.Point(130, 70);
     this.cbMaterial.Name = "cbMaterial";
     this.cbMaterial.Size = new System.Drawing.Size(140, 20);
     this.cbMaterial.TabIndex = 717;
     this.coreBind.SetVerification(this.cbMaterial, null);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(63, 75);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(53, 12);
     this.label8.TabIndex = 716;
     this.label8.Text = "物料名称";
     this.coreBind.SetVerification(this.label8, null);
     //
     // tbReceiverPlace
     //
     this.coreBind.SetDatabasecommand(this.tbReceiverPlace, null);
     this.tbReceiverPlace.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbReceiverPlace.Location = new System.Drawing.Point(787, 102);
     this.tbReceiverPlace.Name = "tbReceiverPlace";
     this.tbReceiverPlace.Size = new System.Drawing.Size(143, 21);
     this.tbReceiverPlace.TabIndex = 715;
     this.coreBind.SetVerification(this.tbReceiverPlace, null);
     //
     // tbSenderPlace
     //
     this.coreBind.SetDatabasecommand(this.tbSenderPlace, null);
     this.tbSenderPlace.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbSenderPlace.Location = new System.Drawing.Point(566, 102);
     this.tbSenderPlace.Name = "tbSenderPlace";
     this.tbSenderPlace.Size = new System.Drawing.Size(140, 21);
     this.tbSenderPlace.TabIndex = 713;
     this.coreBind.SetVerification(this.tbSenderPlace, null);
     //
     // tbWeight
     //
     this.coreBind.SetDatabasecommand(this.tbWeight, null);
     this.tbWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbWeight.Location = new System.Drawing.Point(786, 41);
     this.tbWeight.Name = "tbWeight";
     this.tbWeight.Size = new System.Drawing.Size(118, 21);
     this.tbWeight.TabIndex = 711;
     this.coreBind.SetVerification(this.tbWeight, null);
     //
     // dateTimePicker1
     //
     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(787, 73);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(143, 21);
     this.dateTimePicker1.TabIndex = 709;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // tbCardNo
     //
     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(350, 40);
     this.tbCardNo.Name = "tbCardNo";
     this.tbCardNo.Size = new System.Drawing.Size(140, 21);
     this.tbCardNo.TabIndex = 706;
     this.coreBind.SetVerification(this.tbCardNo, null);
     //
     // tbCarNo
     //
     this.coreBind.SetDatabasecommand(this.tbCarNo, null);
     this.tbCarNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCarNo.Location = new System.Drawing.Point(566, 41);
     this.tbCarNo.Name = "tbCarNo";
     this.tbCarNo.Size = new System.Drawing.Size(140, 21);
     this.tbCarNo.TabIndex = 705;
     this.coreBind.SetVerification(this.tbCarNo, null);
     //
     // label1
     //
     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(63, 37);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 24);
     this.label1.TabIndex = 704;
     this.label1.Text = "计量磅房";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     //
     // cbBF
     //
     this.cbBF.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cbBF.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.cbBF, null);
     this.cbBF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBF.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbBF.FormattingEnabled = true;
     this.cbBF.Location = new System.Drawing.Point(130, 38);
     this.cbBF.Name = "cbBF";
     this.cbBF.Size = new System.Drawing.Size(140, 20);
     this.cbBF.TabIndex = 703;
     this.coreBind.SetVerification(this.cbBF, null);
     this.cbBF.SelectedIndexChanged += new System.EventHandler(this.cbBF_SelectedIndexChanged);
     //
     // label3
     //
     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(287, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(58, 24);
     this.label3.TabIndex = 696;
     this.label3.Text = "卡号";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     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.Bottom;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 476);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 190);
     this.ultraPanel2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // EndTime
     //
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Location = new System.Drawing.Point(268, 2);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(143, 21);
     this.EndTime.TabIndex = 717;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Location = new System.Drawing.Point(82, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(143, 21);
     this.BeginTime.TabIndex = 716;
     this.coreBind.SetVerification(this.BeginTime, null);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cbxMaterial);
     this.panel1.Controls.Add(this.txtCarNo);
     this.panel1.Controls.Add(this.EndTime);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.BeginTime);
     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 = 2;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // cbxMaterial
     //
     this.coreBind.SetDatabasecommand(this.cbxMaterial, null);
     this.cbxMaterial.FormattingEnabled = true;
     this.cbxMaterial.Location = new System.Drawing.Point(596, 3);
     this.cbxMaterial.Name = "cbxMaterial";
     this.cbxMaterial.Size = new System.Drawing.Size(78, 20);
     this.cbxMaterial.TabIndex = 8;
     this.coreBind.SetVerification(this.cbxMaterial, null);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(466, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(75, 21);
     this.txtCarNo.TabIndex = 8;
     this.coreBind.SetVerification(this.txtCarNo, 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.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.Office2007;
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 0;
     controlContainerTool14.ControlName = "BeginTime";
     controlContainerTool18.ControlName = "EndTime";
     controlContainerTool19.ControlName = "txtCarNo";
     controlContainerTool19.InstanceProps.Width = 75;
     controlContainerTool20.ControlName = "cbxMaterial";
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool5,
     controlContainerTool14,
     labelTool7,
     controlContainerTool18,
     labelTool9,
     controlContainerTool19,
     labelTool10,
     controlContainerTool20,
     buttonTool1,
     buttonTool2});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar2});
     appearance21.TextHAlignAsString = "Center";
     appearance21.TextVAlignAsString = "Middle";
     labelTool6.SharedPropsInternal.AppearancesLarge.Appearance = appearance21;
     appearance22.TextHAlignAsString = "Center";
     appearance22.TextVAlignAsString = "Middle";
     labelTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance22;
     labelTool6.SharedPropsInternal.Caption = "查询时间";
     controlContainerTool16.ControlName = "BeginTime";
     controlContainerTool16.SharedPropsInternal.Caption = "ControlContainerTool1";
     appearance29.TextHAlignAsString = "Center";
     appearance29.TextVAlignAsString = "Middle";
     labelTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
     labelTool8.SharedPropsInternal.Caption = "至";
     controlContainerTool21.ControlName = "EndTime";
     controlContainerTool21.SharedPropsInternal.Caption = "ControlContainerTool2";
     appearance30.TextHAlignAsString = "Center";
     appearance30.TextVAlignAsString = "Middle";
     labelTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
     labelTool11.SharedPropsInternal.Caption = "车号";
     controlContainerTool22.ControlName = "txtCarNo";
     controlContainerTool22.SharedPropsInternal.Caption = "ControlContainerTool3";
     appearance31.TextHAlignAsString = "Center";
     appearance31.TextVAlignAsString = "Middle";
     labelTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance31;
     labelTool12.SharedPropsInternal.Caption = "物料";
     labelTool12.SharedPropsInternal.Visible = false;
     controlContainerTool23.ControlName = "cbxMaterial";
     controlContainerTool23.SharedPropsInternal.Caption = "ControlContainerTool4";
     controlContainerTool23.SharedPropsInternal.Visible = false;
     buttonTool3.SharedPropsInternal.Caption = "查询";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool4.SharedPropsInternal.Caption = "保存";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool6,
     controlContainerTool16,
     labelTool8,
     controlContainerTool21,
     labelTool11,
     controlContainerTool22,
     labelTool12,
     controlContainerTool23,
     buttonTool3,
     buttonTool4});
     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)(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.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)(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.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)(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.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // panel2
     //
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(992, 666);
     this.panel2.TabIndex = 1;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "复磅确认";
     this.dataColumn43.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "复磅确认时间";
     this.dataColumn44.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "复磅确认地点";
     this.dataColumn45.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "复磅确认员";
     this.dataColumn46.ColumnName = "FS_REWEIGHTPERSON";
     //
     // HandRecordSecondWeight
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 666);
     this.Controls.Add(this.ultraPanel1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.ultraPanel2);
     this.Controls.Add(this.panel2);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "HandRecordSecondWeight";
     this.Text = "二次计量数据手工录入";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.HandRecordFirstWeight_Load);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     this.trackCustomers                = new System.Windows.Forms.TrackBar();
     this.cmdPrintPreview               = new System.Windows.Forms.Button();
     this.cmdPageSettings               = new System.Windows.Forms.Button();
     this.cmdPrint                      = new System.Windows.Forms.Button();
     this.ultraCombo1                   = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.ultraExpandableGroupBox1      = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ultraGrid1                    = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraExpandableGroupBox2      = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ultraGrid2                    = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.btnProduct                    = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.trackCustomers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
     this.ultraExpandableGroupBox2.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     this.SuspendLayout();
     //
     // trackCustomers
     //
     this.trackCustomers.Location = new System.Drawing.Point(40, 104);
     this.trackCustomers.Maximum  = 128;
     this.trackCustomers.Name     = "trackCustomers";
     this.trackCustomers.Size     = new System.Drawing.Size(448, 42);
     this.trackCustomers.TabIndex = 0;
     this.trackCustomers.Value    = 1;
     this.trackCustomers.Scroll  += new System.EventHandler(this.trackCustomers_Scroll);
     //
     // cmdPrintPreview
     //
     this.cmdPrintPreview.Location = new System.Drawing.Point(56, 184);
     this.cmdPrintPreview.Name     = "cmdPrintPreview";
     this.cmdPrintPreview.Size     = new System.Drawing.Size(96, 23);
     this.cmdPrintPreview.TabIndex = 1;
     this.cmdPrintPreview.Text     = "PrintPreview ";
     this.cmdPrintPreview.Click   += new System.EventHandler(this.cmdPrintPreview_Click);
     //
     // cmdPageSettings
     //
     this.cmdPageSettings.Location = new System.Drawing.Point(176, 184);
     this.cmdPageSettings.Name     = "cmdPageSettings";
     this.cmdPageSettings.Size     = new System.Drawing.Size(96, 23);
     this.cmdPageSettings.TabIndex = 2;
     this.cmdPageSettings.Text     = "PageSettings ";
     this.cmdPageSettings.Click   += new System.EventHandler(this.cmdPageSettings_Click);
     //
     // cmdPrint
     //
     this.cmdPrint.Location = new System.Drawing.Point(304, 184);
     this.cmdPrint.Name     = "cmdPrint";
     this.cmdPrint.TabIndex = 3;
     this.cmdPrint.Text     = "Print ";
     this.cmdPrint.Click   += new System.EventHandler(this.cmdPrint_Click);
     //
     // ultraCombo1
     //
     this.ultraCombo1.CharacterCasing                                 = System.Windows.Forms.CharacterCasing.Normal;
     appearance1.BackColor                                            = System.Drawing.SystemColors.Window;
     appearance1.BorderColor                                          = System.Drawing.SystemColors.InactiveCaption;
     this.ultraCombo1.DisplayLayout.Appearance                        = appearance1;
     this.ultraCombo1.DisplayLayout.BorderStyle                       = Infragistics.Win.UIElementBorderStyle.Solid;
     this.ultraCombo1.DisplayLayout.CaptionVisible                    = Infragistics.Win.DefaultableBoolean.False;
     appearance2.BackColor                                            = System.Drawing.SystemColors.ActiveBorder;
     appearance2.BackColor2                                           = System.Drawing.SystemColors.ControlDark;
     appearance2.BackGradientStyle                                    = Infragistics.Win.GradientStyle.Vertical;
     appearance2.BorderColor                                          = System.Drawing.SystemColors.Window;
     this.ultraCombo1.DisplayLayout.GroupByBox.Appearance             = appearance2;
     appearance3.ForeColor                                            = System.Drawing.SystemColors.GrayText;
     this.ultraCombo1.DisplayLayout.GroupByBox.BandLabelAppearance    = appearance3;
     this.ultraCombo1.DisplayLayout.GroupByBox.BorderStyle            = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance4.BackColor                                            = System.Drawing.SystemColors.ControlLightLight;
     appearance4.BackColor2                                           = System.Drawing.SystemColors.Control;
     appearance4.BackGradientStyle                                    = Infragistics.Win.GradientStyle.Horizontal;
     appearance4.ForeColor                                            = System.Drawing.SystemColors.GrayText;
     this.ultraCombo1.DisplayLayout.GroupByBox.PromptAppearance       = appearance4;
     this.ultraCombo1.DisplayLayout.MaxColScrollRegions               = 1;
     this.ultraCombo1.DisplayLayout.MaxRowScrollRegions               = 1;
     appearance5.BackColor                                            = System.Drawing.SystemColors.Window;
     appearance5.ForeColor                                            = System.Drawing.SystemColors.ControlText;
     this.ultraCombo1.DisplayLayout.Override.ActiveCellAppearance     = appearance5;
     appearance6.BackColor                                            = System.Drawing.SystemColors.Highlight;
     appearance6.ForeColor                                            = System.Drawing.SystemColors.HighlightText;
     this.ultraCombo1.DisplayLayout.Override.ActiveRowAppearance      = appearance6;
     this.ultraCombo1.DisplayLayout.Override.BorderStyleCell          = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.ultraCombo1.DisplayLayout.Override.BorderStyleRow           = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance7.BackColor                                            = System.Drawing.SystemColors.Window;
     this.ultraCombo1.DisplayLayout.Override.CardAreaAppearance       = appearance7;
     appearance8.BorderColor                                          = System.Drawing.Color.Silver;
     appearance8.TextTrimming                                         = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.ultraCombo1.DisplayLayout.Override.CellAppearance           = appearance8;
     this.ultraCombo1.DisplayLayout.Override.CellClickAction          = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraCombo1.DisplayLayout.Override.CellPadding              = 0;
     appearance9.BackColor                                            = System.Drawing.SystemColors.Control;
     appearance9.BackColor2                                           = System.Drawing.SystemColors.ControlDark;
     appearance9.BackGradientAlignment                                = Infragistics.Win.GradientAlignment.Element;
     appearance9.BackGradientStyle                                    = Infragistics.Win.GradientStyle.Horizontal;
     appearance9.BorderColor                                          = System.Drawing.SystemColors.Window;
     this.ultraCombo1.DisplayLayout.Override.GroupByRowAppearance     = appearance9;
     appearance10.TextHAlignAsString                                  = "Left";
     this.ultraCombo1.DisplayLayout.Override.HeaderAppearance         = appearance10;
     this.ultraCombo1.DisplayLayout.Override.HeaderClickAction        = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraCombo1.DisplayLayout.Override.HeaderStyle              = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance11.BackColor                                           = System.Drawing.SystemColors.Window;
     appearance11.BorderColor                                         = System.Drawing.Color.Silver;
     this.ultraCombo1.DisplayLayout.Override.RowAppearance            = appearance11;
     this.ultraCombo1.DisplayLayout.Override.RowSelectors             = Infragistics.Win.DefaultableBoolean.False;
     appearance12.BackColor                                           = System.Drawing.SystemColors.ControlLight;
     this.ultraCombo1.DisplayLayout.Override.TemplateAddRowAppearance = appearance12;
     this.ultraCombo1.DisplayLayout.ScrollBounds                      = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraCombo1.DisplayLayout.ScrollStyle                       = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraCombo1.DisplayLayout.ViewStyleBand                     = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraCombo1.DisplayStyle                                    = Infragistics.Win.EmbeddableElementDisplayStyle.Default;
     this.ultraCombo1.Location                                        = new System.Drawing.Point(488, 144);
     this.ultraCombo1.Name                                            = "ultraCombo1";
     this.ultraCombo1.Size                                            = new System.Drawing.Size(152, 22);
     this.ultraCombo1.TabIndex                                        = 4;
     this.ultraCombo1.Text                                            = "ultraCombo1";
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.ultraExpandableGroupBox1.Expanded     = false;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(304, 200);
     this.ultraExpandableGroupBox1.Location     = new System.Drawing.Point(488, 32);
     this.ultraExpandableGroupBox1.Name         = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size         = new System.Drawing.Size(304, 21);
     this.ultraExpandableGroupBox1.TabIndex     = 5;
     this.ultraExpandableGroupBox1.Text         = "ultraExpandableGroupBox1";
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid1);
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraExpandableGroupBoxPanel1.Name     = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size     = new System.Drawing.Size(298, 178);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.ultraExpandableGroupBoxPanel1.Visible  = false;
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location          = new System.Drawing.Point(32, 24);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(216, 80);
     this.ultraGrid1.TabIndex          = 0;
     this.ultraGrid1.Text              = "ultraGrid1";
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraExpandableGroupBox2
     //
     this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(304, 185);
     this.ultraExpandableGroupBox2.Location     = new System.Drawing.Point(488, 192);
     this.ultraExpandableGroupBox2.Name         = "ultraExpandableGroupBox2";
     this.ultraExpandableGroupBox2.Size         = new System.Drawing.Size(304, 185);
     this.ultraExpandableGroupBox2.TabIndex     = 6;
     this.ultraExpandableGroupBox2.Text         = "ultraExpandableGroupBox2";
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraGrid2);
     this.ultraExpandableGroupBoxPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 19);
     this.ultraExpandableGroupBoxPanel2.Name     = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size     = new System.Drawing.Size(298, 163);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     //
     // ultraGrid2
     //
     this.ultraGrid2.Location          = new System.Drawing.Point(16, 16);
     this.ultraGrid2.Name              = "ultraGrid2";
     this.ultraGrid2.Size              = new System.Drawing.Size(264, 88);
     this.ultraGrid2.TabIndex          = 0;
     this.ultraGrid2.Text              = "ultraGrid2";
     this.ultraGrid2.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid2_InitializeLayout);
     //
     // btnProduct
     //
     this.btnProduct.Location = new System.Drawing.Point(200, 272);
     this.btnProduct.Name     = "btnProduct";
     this.btnProduct.TabIndex = 7;
     this.btnProduct.Text     = "ultraButton1";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(856, 381);
     this.Controls.Add(this.btnProduct);
     this.Controls.Add(this.ultraExpandableGroupBox2);
     this.Controls.Add(this.ultraExpandableGroupBox1);
     this.Controls.Add(this.ultraCombo1);
     this.Controls.Add(this.cmdPrint);
     this.Controls.Add(this.cmdPageSettings);
     this.Controls.Add(this.cmdPrintPreview);
     this.Controls.Add(this.trackCustomers);
     this.Name  = "Form1";
     this.Text  = "Customer Printer";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.trackCustomers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
     this.ultraExpandableGroupBox2.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 39
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager      resources         = new System.ComponentModel.ComponentResourceManager(typeof(FSMTFeederReelWatch));
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("LineCode");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MachineCode");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MachineStationCode");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FeederCode");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FeederLeftCount");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FeederAlterDay");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn7  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ReelNo");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn8  = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ReelLeftQty");
     Infragistics.Win.UltraWinGrid.UltraGridBand         ultraGridBand1    = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn1  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LineCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn2  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MOCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn3  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ErrorType");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn4  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MachineCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn5  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MachineStationCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn6  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReelNo");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn7  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReelLeftQty");
     Infragistics.Win.UltraWinGrid.UltraGridBand         ultraGridBand2    = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn8  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LineCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn9  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MachineCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MachineStationCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FeederCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FeederLeftCount");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FeederAlterDay");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReelNo");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReelLeftQty");
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NextReelNo", 0);
     Infragistics.Win.UltraWinGrid.UltraGridColumn       ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NextReelLeftQty", 1);
     this.panelTop          = new System.Windows.Forms.Panel();
     this.txtReelStopLine   = new UserControl.UCLabelEdit();
     this.txtRefreshInteval = new UserControl.UCLabelEdit();
     this.txtReelAlert      = new UserControl.UCLabelEdit();
     this.btnRefresh        = new UserControl.UCButton();
     this.txtLineCode       = new UserControl.UCLabelEdit();
     this.panelBottom       = new System.Windows.Forms.Panel();
     this.grpAlertLog       = new System.Windows.Forms.GroupBox();
     this.ucMessage         = new UserControl.UCMessage();
     this.grpAlertMusic     = new System.Windows.Forms.GroupBox();
     this.lstAlertMusic     = new System.Windows.Forms.ListBox();
     this.ultraDataSource1  = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
     this.tmrRefresh        = new System.Windows.Forms.Timer(this.components);
     this.panelLineStopMsg  = new System.Windows.Forms.Panel();
     this.gridLineError     = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.lblLineStatus     = new System.Windows.Forms.Label();
     this.lblLineStatusTip  = new System.Windows.Forms.Label();
     this.panelMiddle       = new System.Windows.Forms.Panel();
     this.gridList          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelTop.SuspendLayout();
     this.panelBottom.SuspendLayout();
     this.grpAlertLog.SuspendLayout();
     this.grpAlertMusic.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
     this.panelLineStopMsg.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLineError)).BeginInit();
     this.panelMiddle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridList)).BeginInit();
     this.SuspendLayout();
     //
     // panelTop
     //
     this.panelTop.Controls.Add(this.txtReelStopLine);
     this.panelTop.Controls.Add(this.txtRefreshInteval);
     this.panelTop.Controls.Add(this.txtReelAlert);
     this.panelTop.Controls.Add(this.btnRefresh);
     this.panelTop.Controls.Add(this.txtLineCode);
     this.panelTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelTop.Location = new System.Drawing.Point(0, 0);
     this.panelTop.Name     = "panelTop";
     this.panelTop.Size     = new System.Drawing.Size(835, 52);
     this.panelTop.TabIndex = 0;
     //
     // txtReelStopLine
     //
     this.txtReelStopLine.AllowEditOnlyChecked = true;
     this.txtReelStopLine.AutoUpper            = true;
     this.txtReelStopLine.Caption      = "料卷停线标准(%)";
     this.txtReelStopLine.Checked      = false;
     this.txtReelStopLine.EditType     = UserControl.EditTypes.Number;
     this.txtReelStopLine.Location     = new System.Drawing.Point(627, 15);
     this.txtReelStopLine.MaxLength    = 40;
     this.txtReelStopLine.Multiline    = false;
     this.txtReelStopLine.Name         = "txtReelStopLine";
     this.txtReelStopLine.PasswordChar = '\0';
     this.txtReelStopLine.ReadOnly     = false;
     this.txtReelStopLine.ShowCheckBox = false;
     this.txtReelStopLine.Size         = new System.Drawing.Size(153, 24);
     this.txtReelStopLine.TabIndex     = 8;
     this.txtReelStopLine.TabNext      = true;
     this.txtReelStopLine.Value        = "98";
     this.txtReelStopLine.WidthType    = UserControl.WidthTypes.Tiny;
     this.txtReelStopLine.XAlign       = 730;
     //
     // txtRefreshInteval
     //
     this.txtRefreshInteval.AllowEditOnlyChecked = true;
     this.txtRefreshInteval.AutoUpper            = true;
     this.txtRefreshInteval.Caption         = "刷新频率(分)";
     this.txtRefreshInteval.Checked         = false;
     this.txtRefreshInteval.EditType        = UserControl.EditTypes.Integer;
     this.txtRefreshInteval.Location        = new System.Drawing.Point(473, 15);
     this.txtRefreshInteval.MaxLength       = 40;
     this.txtRefreshInteval.Multiline       = false;
     this.txtRefreshInteval.Name            = "txtRefreshInteval";
     this.txtRefreshInteval.PasswordChar    = '\0';
     this.txtRefreshInteval.ReadOnly        = false;
     this.txtRefreshInteval.ShowCheckBox    = false;
     this.txtRefreshInteval.Size            = new System.Drawing.Size(135, 24);
     this.txtRefreshInteval.TabIndex        = 7;
     this.txtRefreshInteval.TabNext         = true;
     this.txtRefreshInteval.Value           = "2";
     this.txtRefreshInteval.WidthType       = UserControl.WidthTypes.Tiny;
     this.txtRefreshInteval.XAlign          = 558;
     this.txtRefreshInteval.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRefreshInteval_TxtboxKeyPress);
     //
     // txtReelAlert
     //
     this.txtReelAlert.AllowEditOnlyChecked = true;
     this.txtReelAlert.AutoUpper            = true;
     this.txtReelAlert.Caption      = "料卷预警标准(%)";
     this.txtReelAlert.Checked      = false;
     this.txtReelAlert.EditType     = UserControl.EditTypes.Number;
     this.txtReelAlert.Location     = new System.Drawing.Point(301, 15);
     this.txtReelAlert.MaxLength    = 40;
     this.txtReelAlert.Multiline    = false;
     this.txtReelAlert.Name         = "txtReelAlert";
     this.txtReelAlert.PasswordChar = '\0';
     this.txtReelAlert.ReadOnly     = false;
     this.txtReelAlert.ShowCheckBox = false;
     this.txtReelAlert.Size         = new System.Drawing.Size(153, 24);
     this.txtReelAlert.TabIndex     = 6;
     this.txtReelAlert.TabNext      = true;
     this.txtReelAlert.Value        = "90";
     this.txtReelAlert.WidthType    = UserControl.WidthTypes.Tiny;
     this.txtReelAlert.XAlign       = 404;
     //
     // btnRefresh
     //
     this.btnRefresh.BackColor       = System.Drawing.SystemColors.Control;
     this.btnRefresh.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRefresh.BackgroundImage")));
     this.btnRefresh.ButtonType      = UserControl.ButtonTypes.None;
     this.btnRefresh.Caption         = "更新";
     this.btnRefresh.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnRefresh.Location        = new System.Drawing.Point(194, 15);
     this.btnRefresh.Name            = "btnRefresh";
     this.btnRefresh.Size            = new System.Drawing.Size(88, 22);
     this.btnRefresh.TabIndex        = 4;
     this.btnRefresh.Click          += new System.EventHandler(this.btnRefresh_Click);
     //
     // txtLineCode
     //
     this.txtLineCode.AllowEditOnlyChecked = true;
     this.txtLineCode.AutoUpper            = true;
     this.txtLineCode.Caption      = "产线编号";
     this.txtLineCode.Checked      = false;
     this.txtLineCode.EditType     = UserControl.EditTypes.String;
     this.txtLineCode.Location     = new System.Drawing.Point(15, 15);
     this.txtLineCode.MaxLength    = 40;
     this.txtLineCode.Multiline    = false;
     this.txtLineCode.Name         = "txtLineCode";
     this.txtLineCode.PasswordChar = '\0';
     this.txtLineCode.ReadOnly     = true;
     this.txtLineCode.ShowCheckBox = false;
     this.txtLineCode.Size         = new System.Drawing.Size(161, 24);
     this.txtLineCode.TabIndex     = 1;
     this.txtLineCode.TabNext      = true;
     this.txtLineCode.Value        = "";
     this.txtLineCode.WidthType    = UserControl.WidthTypes.Small;
     this.txtLineCode.XAlign       = 76;
     //
     // panelBottom
     //
     this.panelBottom.Controls.Add(this.grpAlertLog);
     this.panelBottom.Controls.Add(this.grpAlertMusic);
     this.panelBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location = new System.Drawing.Point(0, 301);
     this.panelBottom.Name     = "panelBottom";
     this.panelBottom.Size     = new System.Drawing.Size(835, 119);
     this.panelBottom.TabIndex = 1;
     //
     // grpAlertLog
     //
     this.grpAlertLog.Controls.Add(this.ucMessage);
     this.grpAlertLog.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.grpAlertLog.Location = new System.Drawing.Point(0, 0);
     this.grpAlertLog.Name     = "grpAlertLog";
     this.grpAlertLog.Size     = new System.Drawing.Size(655, 119);
     this.grpAlertLog.TabIndex = 1;
     this.grpAlertLog.TabStop  = false;
     this.grpAlertLog.Text     = "预警记录";
     //
     // ucMessage
     //
     this.ucMessage.BackColor     = System.Drawing.Color.Gainsboro;
     this.ucMessage.ButtonVisible = false;
     this.ucMessage.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.ucMessage.Location      = new System.Drawing.Point(3, 17);
     this.ucMessage.Name          = "ucMessage";
     this.ucMessage.Size          = new System.Drawing.Size(649, 99);
     this.ucMessage.TabIndex      = 1;
     //
     // grpAlertMusic
     //
     this.grpAlertMusic.Controls.Add(this.lstAlertMusic);
     this.grpAlertMusic.Dock     = System.Windows.Forms.DockStyle.Right;
     this.grpAlertMusic.Location = new System.Drawing.Point(655, 0);
     this.grpAlertMusic.Name     = "grpAlertMusic";
     this.grpAlertMusic.Size     = new System.Drawing.Size(180, 119);
     this.grpAlertMusic.TabIndex = 0;
     this.grpAlertMusic.TabStop  = false;
     this.grpAlertMusic.Text     = "预警提示音";
     //
     // lstAlertMusic
     //
     this.lstAlertMusic.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lstAlertMusic.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.lstAlertMusic.ItemHeight  = 12;
     this.lstAlertMusic.Location    = new System.Drawing.Point(3, 17);
     this.lstAlertMusic.Name        = "lstAlertMusic";
     this.lstAlertMusic.Size        = new System.Drawing.Size(174, 96);
     this.lstAlertMusic.TabIndex    = 0;
     //
     // ultraDataSource1
     //
     this.ultraDataSource1.Band.Columns.AddRange(new object[] {
         ultraDataColumn1,
         ultraDataColumn2,
         ultraDataColumn3,
         ultraDataColumn4,
         ultraDataColumn5,
         ultraDataColumn6,
         ultraDataColumn7,
         ultraDataColumn8
     });
     //
     // tmrRefresh
     //
     this.tmrRefresh.Interval = 5000;
     this.tmrRefresh.Tick    += new System.EventHandler(this.tmrRefresh_Tick);
     //
     // panelLineStopMsg
     //
     this.panelLineStopMsg.Controls.Add(this.gridLineError);
     this.panelLineStopMsg.Controls.Add(this.lblLineStatus);
     this.panelLineStopMsg.Controls.Add(this.lblLineStatusTip);
     this.panelLineStopMsg.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panelLineStopMsg.ForeColor = System.Drawing.Color.Green;
     this.panelLineStopMsg.Location  = new System.Drawing.Point(0, 420);
     this.panelLineStopMsg.Name      = "panelLineStopMsg";
     this.panelLineStopMsg.Padding   = new System.Windows.Forms.Padding(80, 0, 0, 0);
     this.panelLineStopMsg.Size      = new System.Drawing.Size(835, 89);
     this.panelLineStopMsg.TabIndex  = 2;
     //
     // gridLineError
     //
     this.gridLineError.Cursor               = System.Windows.Forms.Cursors.Default;
     ultraGridColumn1.Header.Caption         = "产线代码";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Width                  = 82;
     ultraGridColumn2.Header.Caption         = "工单代码";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Width                  = 80;
     ultraGridColumn3.Header.Caption         = "停线描述";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.Width                  = 180;
     ultraGridColumn4.Header.Caption         = "机台";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.Width                  = 44;
     ultraGridColumn5.Header.Caption         = "站位";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.Width                  = 69;
     ultraGridColumn6.Header.Caption         = "料卷编号";
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.Width                  = 93;
     ultraGridColumn7.Header.Caption         = "料卷剩余数量";
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridBand1.Columns.AddRange(new object[] {
         ultraGridColumn1,
         ultraGridColumn2,
         ultraGridColumn3,
         ultraGridColumn4,
         ultraGridColumn5,
         ultraGridColumn6,
         ultraGridColumn7
     });
     this.gridLineError.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.gridLineError.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridLineError.Location = new System.Drawing.Point(80, 0);
     this.gridLineError.Name     = "gridLineError";
     this.gridLineError.Size     = new System.Drawing.Size(755, 89);
     this.gridLineError.TabIndex = 2;
     //
     // lblLineStatus
     //
     this.lblLineStatus.AutoSize  = true;
     this.lblLineStatus.Font      = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblLineStatus.ForeColor = System.Drawing.Color.Green;
     this.lblLineStatus.Location  = new System.Drawing.Point(7, 30);
     this.lblLineStatus.Name      = "lblLineStatus";
     this.lblLineStatus.Size      = new System.Drawing.Size(56, 22);
     this.lblLineStatus.TabIndex  = 1;
     this.lblLineStatus.Text      = "正常";
     //
     // lblLineStatusTip
     //
     this.lblLineStatusTip.AutoSize  = true;
     this.lblLineStatusTip.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblLineStatusTip.Location  = new System.Drawing.Point(7, 7);
     this.lblLineStatusTip.Name      = "lblLineStatusTip";
     this.lblLineStatusTip.Size      = new System.Drawing.Size(65, 12);
     this.lblLineStatusTip.TabIndex  = 0;
     this.lblLineStatusTip.Text      = "产线状态:";
     //
     // panelMiddle
     //
     this.panelMiddle.Controls.Add(this.gridList);
     this.panelMiddle.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelMiddle.Location = new System.Drawing.Point(0, 52);
     this.panelMiddle.Name     = "panelMiddle";
     this.panelMiddle.Size     = new System.Drawing.Size(835, 249);
     this.panelMiddle.TabIndex = 3;
     //
     // gridList
     //
     this.gridList.Cursor                     = System.Windows.Forms.Cursors.Hand;
     this.gridList.DataSource                 = this.ultraDataSource1;
     ultraGridColumn8.AutoCompleteMode        = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn8.Header.Caption          = "产线编号";
     ultraGridColumn8.Header.VisiblePosition  = 0;
     ultraGridColumn8.Width                   = 41;
     ultraGridColumn9.AutoCompleteMode        = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn9.Header.Caption          = "机台代码";
     ultraGridColumn9.Header.VisiblePosition  = 1;
     ultraGridColumn9.Width                   = 86;
     ultraGridColumn10.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn10.Header.Caption         = "站位";
     ultraGridColumn10.Header.VisiblePosition = 2;
     ultraGridColumn10.Width                  = 70;
     ultraGridColumn11.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn11.Header.Caption         = "Feeder代码";
     ultraGridColumn11.Header.VisiblePosition = 3;
     ultraGridColumn11.Width                  = 128;
     ultraGridColumn12.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn12.Header.Caption         = "Feeder剩余次数";
     ultraGridColumn12.Header.VisiblePosition = 4;
     ultraGridColumn12.Width                  = 105;
     ultraGridColumn13.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn13.Header.Caption         = "保养剩余天数";
     ultraGridColumn13.Header.VisiblePosition = 5;
     ultraGridColumn14.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn14.Header.Caption         = "料卷编号";
     ultraGridColumn14.Header.VisiblePosition = 6;
     ultraGridColumn14.Width                  = 125;
     ultraGridColumn15.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn15.Header.Caption         = "料卷剩余数量";
     ultraGridColumn15.Header.VisiblePosition = 7;
     ultraGridColumn15.Width                  = 92;
     ultraGridColumn16.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn16.Header.Caption         = "下一料卷编号";
     ultraGridColumn16.Header.VisiblePosition = 8;
     ultraGridColumn17.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn17.Header.Caption         = "下一料卷剩余数量";
     ultraGridColumn17.Header.VisiblePosition = 9;
     ultraGridBand2.Columns.AddRange(new object[] {
         ultraGridColumn8,
         ultraGridColumn9,
         ultraGridColumn10,
         ultraGridColumn11,
         ultraGridColumn12,
         ultraGridColumn13,
         ultraGridColumn14,
         ultraGridColumn15,
         ultraGridColumn16,
         ultraGridColumn17
     });
     this.gridList.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.gridList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridList.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.gridList.Location = new System.Drawing.Point(0, 0);
     this.gridList.Name     = "gridList";
     this.gridList.Size     = new System.Drawing.Size(835, 249);
     this.gridList.TabIndex = 0;
     //
     // FSMTFeederReelWatch
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(835, 509);
     this.Controls.Add(this.panelMiddle);
     this.Controls.Add(this.panelBottom);
     this.Controls.Add(this.panelLineStopMsg);
     this.Controls.Add(this.panelTop);
     this.Name     = "FSMTFeederReelWatch";
     this.Text     = "SMT机台监控";
     this.Load    += new System.EventHandler(this.FSMTFeederReelWatch_Load);
     this.Closed  += new System.EventHandler(this.FSMTFeederReelWatch_Closed);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.FSMTFeederReelWatch_Closing);
     this.panelTop.ResumeLayout(false);
     this.panelBottom.ResumeLayout(false);
     this.grpAlertLog.ResumeLayout(false);
     this.grpAlertMusic.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
     this.panelLineStopMsg.ResumeLayout(false);
     this.panelLineStopMsg.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLineError)).EndInit();
     this.panelMiddle.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridList)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 40
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FInvShipImp));
     this.panelTop         = new System.Windows.Forms.Panel();
     this.btnRead          = new UserControl.UCButton();
     this.btnBrowse        = new UserControl.UCButton();
     this.txtFileName      = new UserControl.UCLabelEdit();
     this.panelBottom      = new System.Windows.Forms.Panel();
     this.btnExit          = new UserControl.UCButton();
     this.btnSave          = new UserControl.UCButton();
     this.panelMiddle      = new System.Windows.Forms.Panel();
     this.ultraGridContent = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.fileDialog       = new System.Windows.Forms.OpenFileDialog();
     this.panelTop.SuspendLayout();
     this.panelBottom.SuspendLayout();
     this.panelMiddle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridContent)).BeginInit();
     this.SuspendLayout();
     //
     // panelTop
     //
     this.panelTop.Controls.Add(this.btnRead);
     this.panelTop.Controls.Add(this.btnBrowse);
     this.panelTop.Controls.Add(this.txtFileName);
     this.panelTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelTop.Location = new System.Drawing.Point(0, 0);
     this.panelTop.Name     = "panelTop";
     this.panelTop.Size     = new System.Drawing.Size(734, 37);
     this.panelTop.TabIndex = 0;
     //
     // btnRead
     //
     this.btnRead.BackColor       = System.Drawing.SystemColors.Control;
     this.btnRead.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRead.BackgroundImage")));
     this.btnRead.ButtonType      = UserControl.ButtonTypes.None;
     this.btnRead.Caption         = "读取文件内容";
     this.btnRead.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnRead.Location        = new System.Drawing.Point(578, 7);
     this.btnRead.Name            = "btnRead";
     this.btnRead.Size            = new System.Drawing.Size(88, 22);
     this.btnRead.TabIndex        = 2;
     this.btnRead.Click          += new System.EventHandler(this.btnRead_Click);
     //
     // btnBrowse
     //
     this.btnBrowse.BackColor       = System.Drawing.SystemColors.Control;
     this.btnBrowse.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnBrowse.BackgroundImage")));
     this.btnBrowse.ButtonType      = UserControl.ButtonTypes.None;
     this.btnBrowse.Caption         = "浏览";
     this.btnBrowse.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnBrowse.Location        = new System.Drawing.Point(484, 7);
     this.btnBrowse.Name            = "btnBrowse";
     this.btnBrowse.Size            = new System.Drawing.Size(88, 22);
     this.btnBrowse.TabIndex        = 1;
     this.btnBrowse.Click          += new System.EventHandler(this.btnBrowse_Click);
     //
     // txtFileName
     //
     this.txtFileName.AllowEditOnlyChecked = true;
     this.txtFileName.Caption      = "导入文件名";
     this.txtFileName.Checked      = false;
     this.txtFileName.EditType     = UserControl.EditTypes.String;
     this.txtFileName.Location     = new System.Drawing.Point(5, 7);
     this.txtFileName.MaxLength    = 40;
     this.txtFileName.Multiline    = false;
     this.txtFileName.Name         = "txtFileName";
     this.txtFileName.PasswordChar = '\0';
     this.txtFileName.ReadOnly     = false;
     this.txtFileName.ShowCheckBox = false;
     this.txtFileName.Size         = new System.Drawing.Size(473, 23);
     this.txtFileName.TabIndex     = 0;
     this.txtFileName.TabNext      = true;
     this.txtFileName.Value        = "";
     this.txtFileName.WidthType    = UserControl.WidthTypes.TooLong;
     this.txtFileName.XAlign       = 78;
     //
     // panelBottom
     //
     this.panelBottom.Controls.Add(this.btnExit);
     this.panelBottom.Controls.Add(this.btnSave);
     this.panelBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location = new System.Drawing.Point(0, 240);
     this.panelBottom.Name     = "panelBottom";
     this.panelBottom.Size     = new System.Drawing.Size(734, 33);
     this.panelBottom.TabIndex = 1;
     //
     // btnExit
     //
     this.btnExit.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.btnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnExit.BackgroundImage")));
     this.btnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.btnExit.Caption         = "退出";
     this.btnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnExit.Location        = new System.Drawing.Point(631, 7);
     this.btnExit.Name            = "btnExit";
     this.btnExit.Size            = new System.Drawing.Size(88, 22);
     this.btnExit.TabIndex        = 1;
     //
     // btnSave
     //
     this.btnSave.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.BackColor       = System.Drawing.SystemColors.Control;
     this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
     this.btnSave.ButtonType      = UserControl.ButtonTypes.None;
     this.btnSave.Caption         = "保存";
     this.btnSave.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnSave.Location        = new System.Drawing.Point(537, 7);
     this.btnSave.Name            = "btnSave";
     this.btnSave.Size            = new System.Drawing.Size(88, 22);
     this.btnSave.TabIndex        = 0;
     this.btnSave.Click          += new System.EventHandler(this.btnSave_Click);
     //
     // panelMiddle
     //
     this.panelMiddle.Controls.Add(this.ultraGridContent);
     this.panelMiddle.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelMiddle.Location = new System.Drawing.Point(0, 37);
     this.panelMiddle.Name     = "panelMiddle";
     this.panelMiddle.Size     = new System.Drawing.Size(734, 203);
     this.panelMiddle.TabIndex = 2;
     //
     // ultraGridContent
     //
     this.ultraGridContent.Cursor            = System.Windows.Forms.Cursors.Default;
     this.ultraGridContent.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.ultraGridContent.Location          = new System.Drawing.Point(0, 0);
     this.ultraGridContent.Name              = "ultraGridContent";
     this.ultraGridContent.Size              = new System.Drawing.Size(734, 203);
     this.ultraGridContent.TabIndex          = 9;
     this.ultraGridContent.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGridContent_InitializeLayout);
     //
     // fileDialog
     //
     this.fileDialog.Filter = "CSV文件|*.csv";
     //
     // FInvShipImp
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(734, 273);
     this.Controls.Add(this.panelMiddle);
     this.Controls.Add(this.panelBottom);
     this.Controls.Add(this.panelTop);
     this.Name    = "FInvShipImp";
     this.Text    = "出货单导入";
     this.Load   += new System.EventHandler(this.FInvShipImp_Load);
     this.Closed += new System.EventHandler(this.FInvShipImp_Closed);
     this.panelTop.ResumeLayout(false);
     this.panelBottom.ResumeLayout(false);
     this.panelMiddle.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridContent)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 41
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.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SUPPLIERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_HELPCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SETTLEMENTNAME");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_HELPCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SETTLEMENTNAME");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     this.ultraGridRowEditTemplate1 = new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate();
     this.ugcpFS_SETTLEMENTNAME = new Infragistics.Win.UltraWinGrid.UltraGridCellProxy();
     this.lblFS_SETTLEMENTNAME = new Infragistics.Win.Misc.UltraLabel();
     this.btnTemplateOk = new Infragistics.Win.Misc.UltraButton();
     this.btnTemplateCancel = new Infragistics.Win.Misc.UltraButton();
     this.ultraGridRowEditTemplate2 = new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate();
     this.ugcpFS_SETTLEMENTNAME1 = new Infragistics.Win.UltraWinGrid.UltraGridCellProxy();
     this.lblFS_SETTLEMENTNAME1 = new Infragistics.Win.Misc.UltraLabel();
     this.btnTemplateOk1 = new Infragistics.Win.Misc.UltraButton();
     this.btnTemplateCancel1 = new Infragistics.Win.Misc.UltraButton();
     this.SettleMentManager_Fill_Panel = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.ultraGroupBox1 = 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.dataTable2 = new System.Data.DataTable();
     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.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     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();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridRowEditTemplate1)).BeginInit();
     this.ultraGridRowEditTemplate1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridRowEditTemplate2)).BeginInit();
     this.ultraGridRowEditTemplate2.SuspendLayout();
     this.SettleMentManager_Fill_Panel.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel1_Fill_Panel.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.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.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGridRowEditTemplate1
     //
     appearance13.BackColor = System.Drawing.Color.SkyBlue;
     this.ultraGridRowEditTemplate1.Appearance = appearance13;
     this.ultraGridRowEditTemplate1.AutoScroll = true;
     this.ultraGridRowEditTemplate1.BackColor = System.Drawing.Color.SkyBlue;
     this.ultraGridRowEditTemplate1.BandHierarchyLevel = 0;
     this.ultraGridRowEditTemplate1.BandKey = "Table1";
     this.ultraGridRowEditTemplate1.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_GY", typeof(string), "Table1", 0));
     this.ultraGridRowEditTemplate1.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_SUPPLIERNAME", typeof(string), "Table1", 0));
     this.ultraGridRowEditTemplate1.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_HELPCODE", typeof(string), "Table1", 0));
     this.ultraGridRowEditTemplate1.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_SETTLEMENTNAME", typeof(string), "Table1", 0));
     this.ultraGridRowEditTemplate1.Controls.Add(this.ugcpFS_SETTLEMENTNAME);
     this.ultraGridRowEditTemplate1.Controls.Add(this.lblFS_SETTLEMENTNAME);
     this.ultraGridRowEditTemplate1.Controls.Add(this.btnTemplateOk);
     this.ultraGridRowEditTemplate1.Controls.Add(this.btnTemplateCancel);
     this.ultraGridRowEditTemplate1.DialogSettings.AcceptButton = this.btnTemplateOk;
     this.ultraGridRowEditTemplate1.DialogSettings.CancelButton = this.btnTemplateCancel;
     this.ultraGridRowEditTemplate1.Location = new System.Drawing.Point(136, 74);
     this.ultraGridRowEditTemplate1.Name = "ultraGridRowEditTemplate1";
     this.ultraGridRowEditTemplate1.Size = new System.Drawing.Size(255, 77);
     this.ultraGridRowEditTemplate1.TabIndex = 3;
     this.ultraGridRowEditTemplate1.Visible = false;
     //
     // ugcpFS_SETTLEMENTNAME
     //
     this.ugcpFS_SETTLEMENTNAME.ColumnKey = "FS_SETTLEMENTNAME";
     this.ugcpFS_SETTLEMENTNAME.Location = new System.Drawing.Point(71, 5);
     this.ugcpFS_SETTLEMENTNAME.Name = "ugcpFS_SETTLEMENTNAME";
     this.ugcpFS_SETTLEMENTNAME.Size = new System.Drawing.Size(159, 20);
     this.ugcpFS_SETTLEMENTNAME.TabIndex = 1;
     this.ugcpFS_SETTLEMENTNAME.Text = "FS_SETTLEMENTNAME";
     //
     // lblFS_SETTLEMENTNAME
     //
     this.lblFS_SETTLEMENTNAME.AutoSize = true;
     this.lblFS_SETTLEMENTNAME.Location = new System.Drawing.Point(5, 5);
     this.lblFS_SETTLEMENTNAME.Name = "lblFS_SETTLEMENTNAME";
     this.lblFS_SETTLEMENTNAME.Size = new System.Drawing.Size(60, 16);
     this.lblFS_SETTLEMENTNAME.TabIndex = 0;
     this.lblFS_SETTLEMENTNAME.Tag = "FS_SETTLEMENTNAME";
     this.lblFS_SETTLEMENTNAME.Text = "结算单位:";
     //
     // btnTemplateOk
     //
     this.btnTemplateOk.Location = new System.Drawing.Point(73, 36);
     this.btnTemplateOk.Name = "btnTemplateOk";
     this.btnTemplateOk.Size = new System.Drawing.Size(75, 23);
     this.btnTemplateOk.TabIndex = 2;
     this.btnTemplateOk.Text = "&更新";
     this.btnTemplateOk.Click += new System.EventHandler(this.btnTemplateOk_Click);
     //
     // btnTemplateCancel
     //
     this.btnTemplateCancel.Location = new System.Drawing.Point(153, 36);
     this.btnTemplateCancel.Name = "btnTemplateCancel";
     this.btnTemplateCancel.Size = new System.Drawing.Size(75, 23);
     this.btnTemplateCancel.TabIndex = 3;
     this.btnTemplateCancel.Text = "&取消";
     this.btnTemplateCancel.Click += new System.EventHandler(this.btnTemplateCancel_Click);
     //
     // ultraGridRowEditTemplate2
     //
     appearance14.BackColor = System.Drawing.Color.SkyBlue;
     this.ultraGridRowEditTemplate2.Appearance = appearance14;
     this.ultraGridRowEditTemplate2.AutoScroll = true;
     this.ultraGridRowEditTemplate2.BackColor = System.Drawing.Color.SkyBlue;
     this.ultraGridRowEditTemplate2.BandHierarchyLevel = 0;
     this.ultraGridRowEditTemplate2.BandKey = "Table2";
     this.ultraGridRowEditTemplate2.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_FH", typeof(string), "Table2", 0));
     this.ultraGridRowEditTemplate2.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_MEMO", typeof(string), "Table2", 0));
     this.ultraGridRowEditTemplate2.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_HELPCODE", typeof(string), "Table2", 0));
     this.ultraGridRowEditTemplate2.ColumnData.Add(new Infragistics.Win.UltraWinGrid.UltraGridRowEditTemplate.ColumnDescriptorData("FS_SETTLEMENTNAME", typeof(string), "Table2", 0));
     this.ultraGridRowEditTemplate2.Controls.Add(this.ugcpFS_SETTLEMENTNAME1);
     this.ultraGridRowEditTemplate2.Controls.Add(this.lblFS_SETTLEMENTNAME1);
     this.ultraGridRowEditTemplate2.Controls.Add(this.btnTemplateOk1);
     this.ultraGridRowEditTemplate2.Controls.Add(this.btnTemplateCancel1);
     this.ultraGridRowEditTemplate2.DialogSettings.AcceptButton = this.btnTemplateOk1;
     this.ultraGridRowEditTemplate2.DialogSettings.CancelButton = this.btnTemplateCancel1;
     this.ultraGridRowEditTemplate2.Location = new System.Drawing.Point(139, 74);
     this.ultraGridRowEditTemplate2.Name = "ultraGridRowEditTemplate2";
     this.ultraGridRowEditTemplate2.Size = new System.Drawing.Size(255, 77);
     this.ultraGridRowEditTemplate2.TabIndex = 2;
     this.ultraGridRowEditTemplate2.Visible = false;
     //
     // ugcpFS_SETTLEMENTNAME1
     //
     this.ugcpFS_SETTLEMENTNAME1.ColumnKey = "FS_SETTLEMENTNAME";
     this.ugcpFS_SETTLEMENTNAME1.Location = new System.Drawing.Point(64, 5);
     this.ugcpFS_SETTLEMENTNAME1.Name = "ugcpFS_SETTLEMENTNAME1";
     this.ugcpFS_SETTLEMENTNAME1.Size = new System.Drawing.Size(166, 20);
     this.ugcpFS_SETTLEMENTNAME1.TabIndex = 1;
     this.ugcpFS_SETTLEMENTNAME1.Text = "FS_SETTLEMENTNAME";
     //
     // lblFS_SETTLEMENTNAME1
     //
     this.lblFS_SETTLEMENTNAME1.Location = new System.Drawing.Point(5, 5);
     this.lblFS_SETTLEMENTNAME1.Name = "lblFS_SETTLEMENTNAME1";
     this.lblFS_SETTLEMENTNAME1.Size = new System.Drawing.Size(100, 20);
     this.lblFS_SETTLEMENTNAME1.TabIndex = 0;
     this.lblFS_SETTLEMENTNAME1.Tag = "FS_SETTLEMENTNAME";
     this.lblFS_SETTLEMENTNAME1.Text = "结算单位:";
     //
     // btnTemplateOk1
     //
     this.btnTemplateOk1.Location = new System.Drawing.Point(75, 36);
     this.btnTemplateOk1.Name = "btnTemplateOk1";
     this.btnTemplateOk1.Size = new System.Drawing.Size(75, 23);
     this.btnTemplateOk1.TabIndex = 2;
     this.btnTemplateOk1.Text = "&更新";
     this.btnTemplateOk1.Click += new System.EventHandler(this.btnTemplateOk1_Click);
     //
     // btnTemplateCancel1
     //
     this.btnTemplateCancel1.Location = new System.Drawing.Point(155, 36);
     this.btnTemplateCancel1.Name = "btnTemplateCancel1";
     this.btnTemplateCancel1.Size = new System.Drawing.Size(75, 23);
     this.btnTemplateCancel1.TabIndex = 3;
     this.btnTemplateCancel1.Text = "&取消";
     this.btnTemplateCancel1.Click += new System.EventHandler(this.btnTemplateCancel1_Click);
     //
     // SettleMentManager_Fill_Panel
     //
     this.SettleMentManager_Fill_Panel.Controls.Add(this.panel1);
     this.SettleMentManager_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.SettleMentManager_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.SettleMentManager_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.SettleMentManager_Fill_Panel.Name = "SettleMentManager_Fill_Panel";
     this.SettleMentManager_Fill_Panel.Size = new System.Drawing.Size(1002, 587);
     this.SettleMentManager_Fill_Panel.TabIndex = 0;
     //
     // 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.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(1002, 587);
     this.panel1.TabIndex = 0;
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Controls.Add(this.splitContainer1);
     this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 28);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1002, 559);
     this.panel1_Fill_Panel.TabIndex = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox2);
     this.splitContainer1.Size = new System.Drawing.Size(1002, 559);
     this.splitContainer1.SplitterDistance = 544;
     this.splitContainer1.TabIndex = 3;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGridRowEditTemplate1);
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(544, 559);
     this.ultraGroupBox1.TabIndex = 3;
     this.ultraGroupBox1.Text = "供应商(双击行更新结算单位)";
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     appearance7.BackColor = System.Drawing.Color.White;
     appearance7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid1.DisplayLayout.Appearance = appearance7;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4});
     ultraGridBand1.RowEditTemplate = this.ultraGridRowEditTemplate1;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid1.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
     appearance8.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance8;
     this.ultraGrid1.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance9.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance9.ForeColor = System.Drawing.Color.White;
     appearance9.TextHAlignAsString = "Left";
     appearance9.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance9;
     appearance10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance10;
     this.ultraGrid1.DisplayLayout.Override.RowEditTemplateUIType = Infragistics.Win.UltraWinGrid.RowEditTemplateUIType.OnDoubleClickRow;
     appearance11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance11;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance12.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance12;
     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.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(538, 538);
     this.ultraGrid1.TabIndex = 1;
     this.ultraGrid1.AfterRowEditTemplateDisplayed += new Infragistics.Win.UltraWinGrid.AfterRowEditTemplateDisplayedEventHandler(this.ultraGrid1_AfterRowEditTemplateDisplayed);
     //
     // 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.dataColumn3,
     this.dataColumn4});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "供应商编码";
     this.dataColumn1.ColumnName = "FS_GY";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "供应商";
     this.dataColumn2.ColumnName = "FS_SUPPLIERNAME";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "拼音助记码";
     this.dataColumn3.ColumnName = "FS_HELPCODE";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "结算单位";
     this.dataColumn4.ColumnName = "FS_SETTLEMENTNAME";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "发货单位编码";
     this.dataColumn5.ColumnName = "FS_FH";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "发货单位";
     this.dataColumn6.ColumnName = "FS_MEMO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "拼音助记码";
     this.dataColumn7.ColumnName = "FS_HELPCODE";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "结算单位";
     this.dataColumn8.ColumnName = "FS_SETTLEMENTNAME";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGridRowEditTemplate2);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid2);
     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(454, 559);
     this.ultraGroupBox2.TabIndex = 4;
     this.ultraGroupBox2.Text = "发货单位(双击行更新结算单位)";
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid2
     //
     this.ultraGrid2.DataMember = "Table2";
     this.ultraGrid2.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid2.DisplayLayout.Appearance = appearance1;
     ultraGridColumn5.Header.VisiblePosition = 0;
     ultraGridColumn6.Header.VisiblePosition = 1;
     ultraGridColumn7.Header.VisiblePosition = 2;
     ultraGridColumn8.Header.VisiblePosition = 3;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8});
     ultraGridBand2.RowEditTemplate = this.ultraGridRowEditTemplate2;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid2.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance2;
     this.ultraGrid2.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid2.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance3.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance3.ForeColor = System.Drawing.Color.White;
     appearance3.TextHAlignAsString = "Left";
     appearance3.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance3;
     appearance4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance4;
     this.ultraGrid2.DisplayLayout.Override.RowEditTemplateUIType = Infragistics.Win.UltraWinGrid.RowEditTemplateUIType.OnDoubleClickRow;
     appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance5.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance5;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance6.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance6;
     this.ultraGrid2.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(448, 538);
     this.ultraGrid2.TabIndex = 1;
     this.ultraGrid2.AfterRowEditTemplateDisplayed += new Infragistics.Win.UltraWinGrid.AfterRowEditTemplateDisplayedEventHandler(this.ultraGrid2_AfterRowEditTemplateDisplayed);
     //
     // _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._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, 28);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 559);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     buttonTool1});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     buttonTool2.SharedPropsInternal.Caption = "查询";
     buttonTool2.SharedPropsInternal.CustomizerCaption = "查询";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     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)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(1002, 28);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 559);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     //
     // _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._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(1002, 28);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     //
     // _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._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, 587);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1002, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     //
     // SettleMentManager
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1002, 587);
     this.Controls.Add(this.SettleMentManager_Fill_Panel);
     this.Name = "SettleMentManager";
     this.Text = "SettleMentManager";
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridRowEditTemplate1)).EndInit();
     this.ultraGridRowEditTemplate1.ResumeLayout(false);
     this.ultraGridRowEditTemplate1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridRowEditTemplate2)).EndInit();
     this.ultraGridRowEditTemplate2.ResumeLayout(false);
     this.SettleMentManager_Fill_Panel.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1_Fill_Panel.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.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.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车证卡号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("增加");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("导入");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车证卡号");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("黄色表示已启用的预报");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("增加");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("导入");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("汽车衡计量预报表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTITEM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERFACTORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUNDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OVERTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLETCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TERM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STATUS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TIMES");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHTTIMES");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANUSER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANTEL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LEVEL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFSAMPLING");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFACCEPT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERIDCARD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERREMARK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STARTSIGN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("11");
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PLANCODE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTITEM", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERFACTORY", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIAL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTTYPE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUNDTYPE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_OVERTIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_BILLETCOUNT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POINT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DATETIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHIFT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TERM", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STATUS", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_TIMES", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_WEIGHTTIMES", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PLANUSER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PLANTEL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LEVEL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POINTNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFSAMPLING", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFACCEPT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERIDCARD", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERREMARK", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STARTSIGN", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POINTID", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDER", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.txt_HTH = new System.Windows.Forms.TextBox();
     this.dateBegin = new System.Windows.Forms.DateTimePicker();
     this.dateEnd = new System.Windows.Forms.DateTimePicker();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     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.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.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.dataColumn29 = 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.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.MeasureDataQuery_Fill_Panel = new System.Windows.Forms.Panel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label17 = new System.Windows.Forms.Label();
     this.txt_jhcs = new System.Windows.Forms.TextBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.cb_JQPLAN = new System.Windows.Forms.CheckBox();
     this.checkBox3 = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtYBZZ = new System.Windows.Forms.TextBox();
     this.txtYBPZ = new System.Windows.Forms.TextBox();
     this.button5 = new System.Windows.Forms.Button();
     this.cbProvider = new System.Windows.Forms.ComboBox();
     this.label32 = new System.Windows.Forms.Label();
     this.cbReceiverStore = new System.Windows.Forms.ComboBox();
     this.label31 = new System.Windows.Forms.Label();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.txtJSYSFZ = new System.Windows.Forms.ComboBox();
     this.txtJSYXM = new System.Windows.Forms.ComboBox();
     this.label30 = new System.Windows.Forms.Label();
     this.txtBZ = new System.Windows.Forms.TextBox();
     this.txtHTXMH = new System.Windows.Forms.ComboBox();
     this.txtHTH = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.txtYBJZ = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.cbBF = new System.Windows.Forms.ComboBox();
     this.label12 = new System.Windows.Forms.Label();
     this.cbCH2 = new System.Windows.Forms.ComboBox();
     this.cbCH1 = new System.Windows.Forms.ComboBox();
     this.cbFHDWKCD = new System.Windows.Forms.ComboBox();
     this.label23 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.cbWLMC = new System.Windows.Forms.ComboBox();
     this.cbSHDW = new System.Windows.Forms.ComboBox();
     this.cbCYDW = new System.Windows.Forms.ComboBox();
     this.cbFHDW = new System.Windows.Forms.ComboBox();
     this.cbLX = new System.Windows.Forms.ComboBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtCZH = new System.Windows.Forms.TextBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.btnXZYB = new System.Windows.Forms.Button();
     this.label29 = new System.Windows.Forms.Label();
     this.txtYBWJ = new System.Windows.Forms.TextBox();
     this.cbYBLXDH = new System.Windows.Forms.ComboBox();
     this.cbYXJ = new System.Windows.Forms.ComboBox();
     this.cbYBLXR = new System.Windows.Forms.ComboBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.cbBC = new System.Windows.Forms.ComboBox();
     this.label25 = new System.Windows.Forms.Label();
     this.cbSHDWKCD = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.dateDQSJ = new System.Windows.Forms.DateTimePicker();
     this.label2 = new System.Windows.Forms.Label();
     this.txtYJLCS = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtYBH = new System.Windows.Forms.TextBox();
     this.txtZS = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtLH = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtJHCS = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.MeasureDataQuery_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.txt_HTH);
     this.panel1.Controls.Add(this.dateBegin);
     this.panel1.Controls.Add(this.dateEnd);
     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);
     //
     // txt_HTH
     //
     this.coreBind.SetDatabasecommand(this.txt_HTH, null);
     this.txt_HTH.Location = new System.Drawing.Point(337, 2);
     this.txt_HTH.MaxLength = 5;
     this.txt_HTH.Name = "txt_HTH";
     this.txt_HTH.Size = new System.Drawing.Size(110, 21);
     this.txt_HTH.TabIndex = 606;
     this.coreBind.SetVerification(this.txt_HTH, null);
     //
     // dateBegin
     //
     this.coreBind.SetDatabasecommand(this.dateBegin, null);
     this.dateBegin.Location = new System.Drawing.Point(36, 2);
     this.dateBegin.Name = "dateBegin";
     this.dateBegin.Size = new System.Drawing.Size(110, 21);
     this.dateBegin.TabIndex = 599;
     this.coreBind.SetVerification(this.dateBegin, null);
     //
     // dateEnd
     //
     this.coreBind.SetDatabasecommand(this.dateEnd, null);
     this.dateEnd.Location = new System.Drawing.Point(168, 2);
     this.dateEnd.Name = "dateEnd";
     this.dateEnd.Size = new System.Drawing.Size(110, 21);
     this.dateEnd.TabIndex = 600;
     this.coreBind.SetVerification(this.dateEnd, 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)(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, 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.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;
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 0;
     controlContainerTool3.ControlName = "dateBegin";
     controlContainerTool5.ControlName = "dateEnd";
     controlContainerTool4.ControlName = "txt_HTH";
     controlContainerTool4.InstanceProps.Width = 169;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     buttonTool6.InstanceProps.IsFirstInGroup = true;
     buttonTool7.InstanceProps.IsFirstInGroup = true;
     buttonTool8.InstanceProps.IsFirstInGroup = true;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool3,
     controlContainerTool5,
     controlContainerTool4,
     buttonTool4,
     buttonTool6,
     buttonTool7,
     buttonTool8,
     buttonTool1});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar2});
     controlContainerTool1.ControlName = "dateBegin";
     controlContainerTool1.SharedPropsInternal.Caption = "日期";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.ControlName = "txt_HTH";
     controlContainerTool2.SharedPropsInternal.Caption = "车证卡号";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Width = 169;
     controlContainerTool6.ControlName = "dateEnd";
     controlContainerTool6.SharedPropsInternal.Caption = "至";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     labelTool1.SharedPropsInternal.Caption = "黄色表示已启用的预报";
     labelTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool5.SharedPropsInternal.Caption = "查询";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool9.SharedPropsInternal.Caption = "增加";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool11.SharedPropsInternal.Caption = "删除";
     buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Caption = "修改";
     buttonTool10.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[] {
     controlContainerTool1,
     controlContainerTool2,
     controlContainerTool6,
     labelTool1,
     buttonTool5,
     buttonTool9,
     buttonTool11,
     buttonTool10,
     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(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.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(992, 26);
     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, 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.ultraToolbarsManager1;
     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.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.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41});
     this.dataTable1.TableName = "汽车衡计量预报表";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "预报号";
     this.dataColumn1.ColumnName = "FS_PLANCODE";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "车证卡号";
     this.dataColumn2.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "车号";
     this.dataColumn3.ColumnName = "FS_CARNO";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "合同号";
     this.dataColumn4.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "合同项目编号";
     this.dataColumn5.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "收货单位";
     this.dataColumn6.ColumnName = "FS_RECEIVERFACTORY";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "发货地点";
     this.dataColumn7.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "物资代码";
     this.dataColumn8.ColumnName = "FS_MATERIAL";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "物料名称";
     this.dataColumn9.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "收货单位";
     this.dataColumn10.ColumnName = "FS_RECEIVER";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "卸货地点";
     this.dataColumn11.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "承运单位";
     this.dataColumn12.ColumnName = "FS_TRANSNO";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "流向";
     this.dataColumn13.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "磅房编号";
     this.dataColumn14.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "到期时间";
     this.dataColumn15.ColumnName = "FS_OVERTIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "预报总重";
     this.dataColumn16.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "预报皮重";
     this.dataColumn17.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "预报净量";
     this.dataColumn18.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "炉号";
     this.dataColumn19.ColumnName = "FS_STOVENO";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "支数";
     this.dataColumn20.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "录入员";
     this.dataColumn21.ColumnName = "FS_PERSON";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "录入点";
     this.dataColumn22.ColumnName = "FS_POINT";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "录入时间";
     this.dataColumn23.ColumnName = "FS_DATETIME";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "班次";
     this.dataColumn24.ColumnName = "FS_SHIFT";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "班组";
     this.dataColumn25.ColumnName = "FS_TERM";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "状态";
     this.dataColumn26.ColumnName = "FS_STATUS";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "有效次数";
     this.dataColumn27.ColumnName = "FN_TIMES";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "已使用次数";
     this.dataColumn28.ColumnName = "FN_WEIGHTTIMES";
     //
     // dataColumn29
     //
     this.dataColumn29.Caption = "预报联系人";
     this.dataColumn29.ColumnName = "FS_PLANUSER";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "预报联系电话";
     this.dataColumn30.ColumnName = "FS_PLANTEL";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "是否卸货确认";
     this.dataColumn31.ColumnName = "FS_LEVEL";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "磅房";
     this.dataColumn32.ColumnName = "FS_POINTNAME";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "是否使用期限皮重";
     this.dataColumn33.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "是否需要验收";
     this.dataColumn34.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "驾驶员姓名";
     this.dataColumn35.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "驾驶员身份证";
     this.dataColumn36.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "备注";
     this.dataColumn37.ColumnName = "FS_DRIVERREMARK";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "启用标志";
     this.dataColumn38.ColumnName = "FS_STARTSIGN";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "供应单位";
     this.dataColumn39.ColumnName = "FS_PROVIDER";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "可选编号";
     this.dataColumn40.ColumnName = "FS_POINTID";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "发货单位";
     this.dataColumn41.ColumnName = "FS_SENDER";
     //
     // MeasureDataQuery_Fill_Panel
     //
     this.MeasureDataQuery_Fill_Panel.Controls.Add(this.ultraGroupBox1);
     this.MeasureDataQuery_Fill_Panel.Controls.Add(this.ultraExpandableGroupBox1);
     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(992, 666);
     this.MeasureDataQuery_Fill_Panel.TabIndex = 1;
     this.coreBind.SetVerification(this.MeasureDataQuery_Fill_Panel, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 318);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 348);
     this.ultraGroupBox1.TabIndex = 39;
     this.ultraGroupBox1.Text = "预报信息";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2003;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "汽车衡计量预报表";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.Header.VisiblePosition = 4;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn5.Header.VisiblePosition = 5;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 48;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.Header.VisiblePosition = 6;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.Header.VisiblePosition = 8;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.Header.VisiblePosition = 9;
     ultraGridColumn8.Hidden = true;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.Header.VisiblePosition = 11;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.Header.VisiblePosition = 10;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.Header.VisiblePosition = 12;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 13;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.Header.VisiblePosition = 14;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.Header.VisiblePosition = 15;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 16;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 17;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 18;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 19;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.VisiblePosition = 1;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn20.Header.VisiblePosition = 7;
     ultraGridColumn20.Hidden = true;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.Hidden = true;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 36;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 52;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 54;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 62;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 50;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.Hidden = true;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.Hidden = true;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.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,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41});
     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;
     rowLayoutColumnInfo19.OriginX = 0;
     rowLayoutColumnInfo19.OriginY = 0;
     rowLayoutColumnInfo19.PreferredCellSize = new System.Drawing.Size(60, 0);
     rowLayoutColumnInfo19.SpanX = 1;
     rowLayoutColumnInfo19.SpanY = 1;
     rowLayoutColumnInfo20.OriginX = 5;
     rowLayoutColumnInfo20.OriginY = 0;
     rowLayoutColumnInfo20.PreferredCellSize = new System.Drawing.Size(60, 0);
     rowLayoutColumnInfo20.SpanX = 1;
     rowLayoutColumnInfo20.SpanY = 1;
     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});
     rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
     rowLayout1});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance1.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance1;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance2;
     appearance3.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance3;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance4.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance4.TextHAlignAsString = "Center";
     appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance4;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance5.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance5;
     appearance6.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance6;
     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;
     appearance7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance7.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance7;
     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("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(2, 20);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(988, 326);
     this.ultraGrid1.TabIndex = 13;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid1_DoubleClickRow);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(992, 292);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 26);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(992, 292);
     this.ultraExpandableGroupBox1.TabIndex = 38;
     this.ultraExpandableGroupBox1.Text = "数据编辑区";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2003;
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel2);
     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, 268);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel1, null);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Controls.Add(this.cbYBLXDH);
     this.panel2.Controls.Add(this.cbYXJ);
     this.panel2.Controls.Add(this.cbYBLXR);
     this.panel2.Controls.Add(this.label26);
     this.panel2.Controls.Add(this.label27);
     this.panel2.Controls.Add(this.label28);
     this.panel2.Controls.Add(this.cbBC);
     this.panel2.Controls.Add(this.label25);
     this.panel2.Controls.Add(this.cbSHDWKCD);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.dateDQSJ);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.txtYJLCS);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.txtYBH);
     this.panel2.Controls.Add(this.txtZS);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.txtLH);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.txtJHCS);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(988, 268);
     this.panel2.TabIndex = 0;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.txt_jhcs);
     this.groupBox2.Controls.Add(this.checkBox1);
     this.groupBox2.Controls.Add(this.comboBox1);
     this.groupBox2.Controls.Add(this.cb_JQPLAN);
     this.groupBox2.Controls.Add(this.checkBox3);
     this.coreBind.SetDatabasecommand(this.groupBox2, null);
     this.groupBox2.Location = new System.Drawing.Point(836, 60);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(142, 206);
     this.groupBox2.TabIndex = 656;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "勾选区";
     this.coreBind.SetVerification(this.groupBox2, null);
     //
     // label17
     //
     this.coreBind.SetDatabasecommand(this.label17, null);
     this.label17.Location = new System.Drawing.Point(6, 135);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(56, 24);
     this.label17.TabIndex = 700;
     this.label17.Text = "有效次数";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label17, null);
     //
     // txt_jhcs
     //
     this.txt_jhcs.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txt_jhcs, null);
     this.txt_jhcs.Font = new System.Drawing.Font("宋体", 11F);
     this.txt_jhcs.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txt_jhcs.Location = new System.Drawing.Point(72, 138);
     this.txt_jhcs.MaxLength = 8;
     this.txt_jhcs.Multiline = true;
     this.txt_jhcs.Name = "txt_jhcs";
     this.txt_jhcs.Size = new System.Drawing.Size(58, 20);
     this.txt_jhcs.TabIndex = 701;
     this.coreBind.SetVerification(this.txt_jhcs, null);
     //
     // checkBox1
     //
     this.coreBind.SetDatabasecommand(this.checkBox1, null);
     this.checkBox1.Location = new System.Drawing.Point(12, 65);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(124, 31);
     this.checkBox1.TabIndex = 23;
     this.checkBox1.Text = "是否使用期限皮重";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.checkBox1, null);
     //
     // comboBox1
     //
     this.coreBind.SetDatabasecommand(this.comboBox1, null);
     this.comboBox1.Enabled = false;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "",
     "1#",
     "2#",
     "3#",
     "4#",
     "5#",
     "6#",
     "7#",
     "8#",
     "9#",
     "10#",
     "11#",
     "12#",
     "13#",
     "14#",
     "15#"});
     this.comboBox1.Location = new System.Drawing.Point(79, 106);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(51, 20);
     this.comboBox1.TabIndex = 22;
     this.coreBind.SetVerification(this.comboBox1, null);
     this.comboBox1.Visible = false;
     //
     // cb_JQPLAN
     //
     this.cb_JQPLAN.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cb_JQPLAN, null);
     this.cb_JQPLAN.Location = new System.Drawing.Point(12, 109);
     this.cb_JQPLAN.Name = "cb_JQPLAN";
     this.cb_JQPLAN.Size = new System.Drawing.Size(72, 16);
     this.cb_JQPLAN.TabIndex = 21;
     this.cb_JQPLAN.Text = "可选预报";
     this.cb_JQPLAN.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.cb_JQPLAN, null);
     this.cb_JQPLAN.Visible = false;
     this.cb_JQPLAN.CheckedChanged += new System.EventHandler(this.cb_JQPLAN_CheckedChanged);
     //
     // checkBox3
     //
     this.coreBind.SetDatabasecommand(this.checkBox3, null);
     this.checkBox3.Location = new System.Drawing.Point(12, 20);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(124, 31);
     this.checkBox3.TabIndex = 20;
     this.checkBox3.Text = "是否需要卸货确认";
     this.checkBox3.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.checkBox3, null);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtYBZZ);
     this.groupBox1.Controls.Add(this.txtYBPZ);
     this.groupBox1.Controls.Add(this.button5);
     this.groupBox1.Controls.Add(this.cbProvider);
     this.groupBox1.Controls.Add(this.label32);
     this.groupBox1.Controls.Add(this.cbReceiverStore);
     this.groupBox1.Controls.Add(this.label31);
     this.groupBox1.Controls.Add(this.button4);
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Controls.Add(this.button2);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.txtJSYSFZ);
     this.groupBox1.Controls.Add(this.txtJSYXM);
     this.groupBox1.Controls.Add(this.label30);
     this.groupBox1.Controls.Add(this.txtBZ);
     this.groupBox1.Controls.Add(this.txtHTXMH);
     this.groupBox1.Controls.Add(this.txtHTH);
     this.groupBox1.Controls.Add(this.label22);
     this.groupBox1.Controls.Add(this.label19);
     this.groupBox1.Controls.Add(this.txtYBJZ);
     this.groupBox1.Controls.Add(this.label18);
     this.groupBox1.Controls.Add(this.label24);
     this.groupBox1.Controls.Add(this.cbBF);
     this.groupBox1.Controls.Add(this.label12);
     this.groupBox1.Controls.Add(this.cbCH2);
     this.groupBox1.Controls.Add(this.cbCH1);
     this.groupBox1.Controls.Add(this.cbFHDWKCD);
     this.groupBox1.Controls.Add(this.label23);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.cbWLMC);
     this.groupBox1.Controls.Add(this.cbSHDW);
     this.groupBox1.Controls.Add(this.cbCYDW);
     this.groupBox1.Controls.Add(this.cbFHDW);
     this.groupBox1.Controls.Add(this.cbLX);
     this.groupBox1.Controls.Add(this.label16);
     this.groupBox1.Controls.Add(this.label14);
     this.groupBox1.Controls.Add(this.label15);
     this.groupBox1.Controls.Add(this.label11);
     this.groupBox1.Controls.Add(this.label13);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.txtCZH);
     this.coreBind.SetDatabasecommand(this.groupBox1, null);
     this.groupBox1.Location = new System.Drawing.Point(10, 60);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(820, 206);
     this.groupBox1.TabIndex = 655;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "选择录入区";
     this.coreBind.SetVerification(this.groupBox1, null);
     //
     // txtYBZZ
     //
     this.txtYBZZ.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtYBZZ, null);
     this.txtYBZZ.Font = new System.Drawing.Font("宋体", 11F);
     this.txtYBZZ.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtYBZZ.Location = new System.Drawing.Point(292, 181);
     this.txtYBZZ.MaxLength = 8;
     this.txtYBZZ.Multiline = true;
     this.txtYBZZ.Name = "txtYBZZ";
     this.txtYBZZ.Size = new System.Drawing.Size(23, 21);
     this.txtYBZZ.TabIndex = 699;
     this.coreBind.SetVerification(this.txtYBZZ, null);
     this.txtYBZZ.Visible = false;
     //
     // txtYBPZ
     //
     this.txtYBPZ.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtYBPZ, null);
     this.txtYBPZ.Font = new System.Drawing.Font("宋体", 11F);
     this.txtYBPZ.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtYBPZ.Location = new System.Drawing.Point(245, 181);
     this.txtYBPZ.MaxLength = 8;
     this.txtYBPZ.Multiline = true;
     this.txtYBPZ.Name = "txtYBPZ";
     this.txtYBPZ.Size = new System.Drawing.Size(25, 21);
     this.txtYBPZ.TabIndex = 698;
     this.coreBind.SetVerification(this.txtYBPZ, null);
     this.txtYBPZ.Visible = false;
     //
     // button5
     //
     this.button5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button5, null);
     this.button5.Location = new System.Drawing.Point(130, 180);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(30, 21);
     this.button5.TabIndex = 697;
     this.button5.Tag = "Provider";
     this.button5.Text = "..";
     this.button5.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button5, null);
     this.button5.Visible = false;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // cbProvider
     //
     this.cbProvider.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbProvider, null);
     this.cbProvider.FormattingEnabled = true;
     this.cbProvider.Location = new System.Drawing.Point(74, 180);
     this.cbProvider.Name = "cbProvider";
     this.cbProvider.Size = new System.Drawing.Size(43, 20);
     this.cbProvider.TabIndex = 696;
     this.coreBind.SetVerification(this.cbProvider, null);
     this.cbProvider.Visible = false;
     this.cbProvider.Leave += new System.EventHandler(this.cbProvider_Leave);
     this.cbProvider.TextChanged += new System.EventHandler(this.cbProvider_TextChanged);
     //
     // label32
     //
     this.coreBind.SetDatabasecommand(this.label32, null);
     this.label32.Location = new System.Drawing.Point(7, 179);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(58, 24);
     this.label32.TabIndex = 695;
     this.label32.Text = "供应单位";
     this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label32, null);
     this.label32.Visible = false;
     //
     // cbReceiverStore
     //
     this.coreBind.SetDatabasecommand(this.cbReceiverStore, null);
     this.cbReceiverStore.FormattingEnabled = true;
     this.cbReceiverStore.Location = new System.Drawing.Point(316, 108);
     this.cbReceiverStore.Name = "cbReceiverStore";
     this.cbReceiverStore.Size = new System.Drawing.Size(157, 20);
     this.cbReceiverStore.TabIndex = 694;
     this.coreBind.SetVerification(this.cbReceiverStore, null);
     //
     // label31
     //
     this.coreBind.SetDatabasecommand(this.label31, null);
     this.label31.Location = new System.Drawing.Point(250, 105);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(58, 24);
     this.label31.TabIndex = 693;
     this.label31.Text = "卸货地点";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label31, null);
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button4, null);
     this.button4.Location = new System.Drawing.Point(764, 81);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(30, 21);
     this.button4.TabIndex = 692;
     this.button4.Tag = "Trans";
     this.button4.Text = "..";
     this.button4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button4, null);
     this.button4.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button3, null);
     this.button3.Location = new System.Drawing.Point(479, 78);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(30, 21);
     this.button3.TabIndex = 691;
     this.button3.Tag = "Receiver";
     this.button3.Text = "..";
     this.button3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button3, null);
     this.button3.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button2, null);
     this.button2.Location = new System.Drawing.Point(764, 50);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(30, 21);
     this.button2.TabIndex = 690;
     this.button2.Tag = "Sender";
     this.button2.Text = "..";
     this.button2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button2, null);
     this.button2.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button1, null);
     this.button1.Location = new System.Drawing.Point(479, 49);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(30, 21);
     this.button1.TabIndex = 689;
     this.button1.Tag = "Material";
     this.button1.Text = "..";
     this.button1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button1, null);
     this.button1.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // txtJSYSFZ
     //
     this.coreBind.SetDatabasecommand(this.txtJSYSFZ, null);
     this.txtJSYSFZ.FormattingEnabled = true;
     this.txtJSYSFZ.Location = new System.Drawing.Point(316, 140);
     this.txtJSYSFZ.MaxLength = 18;
     this.txtJSYSFZ.Name = "txtJSYSFZ";
     this.txtJSYSFZ.Size = new System.Drawing.Size(157, 20);
     this.txtJSYSFZ.TabIndex = 688;
     this.coreBind.SetVerification(this.txtJSYSFZ, null);
     //
     // txtJSYXM
     //
     this.coreBind.SetDatabasecommand(this.txtJSYXM, null);
     this.txtJSYXM.FormattingEnabled = true;
     this.txtJSYXM.Location = new System.Drawing.Point(74, 139);
     this.txtJSYXM.MaxLength = 4;
     this.txtJSYXM.Name = "txtJSYXM";
     this.txtJSYXM.Size = new System.Drawing.Size(157, 20);
     this.txtJSYXM.TabIndex = 687;
     this.coreBind.SetVerification(this.txtJSYXM, null);
     this.txtJSYXM.Leave += new System.EventHandler(this.comboBox1_Leave);
     //
     // label30
     //
     this.coreBind.SetDatabasecommand(this.label30, null);
     this.label30.Location = new System.Drawing.Point(546, 138);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(45, 24);
     this.label30.TabIndex = 686;
     this.label30.Text = "备注";
     this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label30, null);
     //
     // txtBZ
     //
     this.txtBZ.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtBZ, null);
     this.txtBZ.Font = new System.Drawing.Font("宋体", 11F);
     this.txtBZ.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtBZ.Location = new System.Drawing.Point(601, 141);
     this.txtBZ.MaxLength = 200;
     this.txtBZ.Name = "txtBZ";
     this.txtBZ.Size = new System.Drawing.Size(157, 24);
     this.txtBZ.TabIndex = 685;
     this.coreBind.SetVerification(this.txtBZ, null);
     //
     // txtHTXMH
     //
     this.txtHTXMH.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.txtHTXMH, null);
     this.txtHTXMH.FormattingEnabled = true;
     this.txtHTXMH.Location = new System.Drawing.Point(721, 15);
     this.txtHTXMH.MaxLength = 5;
     this.txtHTXMH.Name = "txtHTXMH";
     this.txtHTXMH.Size = new System.Drawing.Size(84, 20);
     this.txtHTXMH.TabIndex = 6;
     this.coreBind.SetVerification(this.txtHTXMH, null);
     this.txtHTXMH.TextChanged += new System.EventHandler(this.txtHTXMH_TextChanged);
     //
     // txtHTH
     //
     this.txtHTH.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtHTH, null);
     this.txtHTH.Font = new System.Drawing.Font("宋体", 11F);
     this.txtHTH.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtHTH.Location = new System.Drawing.Point(535, 15);
     this.txtHTH.MaxLength = 10;
     this.txtHTH.Multiline = true;
     this.txtHTH.Name = "txtHTH";
     this.txtHTH.Size = new System.Drawing.Size(112, 21);
     this.txtHTH.TabIndex = 5;
     this.coreBind.SetVerification(this.txtHTH, null);
     this.txtHTH.Leave += new System.EventHandler(this.txtHTH_Leave);
     //
     // label22
     //
     this.coreBind.SetDatabasecommand(this.label22, null);
     this.label22.Location = new System.Drawing.Point(770, 113);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(18, 24);
     this.label22.TabIndex = 684;
     this.label22.Text = "T";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label22, null);
     //
     // label19
     //
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.Location = new System.Drawing.Point(534, 110);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(58, 24);
     this.label19.TabIndex = 681;
     this.label19.Text = "预报净重";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label19, null);
     //
     // txtYBJZ
     //
     this.txtYBJZ.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtYBJZ, null);
     this.txtYBJZ.Font = new System.Drawing.Font("宋体", 11F);
     this.txtYBJZ.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtYBJZ.Location = new System.Drawing.Point(601, 112);
     this.txtYBJZ.MaxLength = 8;
     this.txtYBJZ.Multiline = true;
     this.txtYBJZ.Name = "txtYBJZ";
     this.txtYBJZ.Size = new System.Drawing.Size(157, 20);
     this.txtYBJZ.TabIndex = 16;
     this.coreBind.SetVerification(this.txtYBJZ, null);
     //
     // label18
     //
     this.coreBind.SetDatabasecommand(this.label18, null);
     this.label18.Location = new System.Drawing.Point(181, 181);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(58, 24);
     this.label18.TabIndex = 680;
     this.label18.Text = "预报皮重";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label18, null);
     this.label18.Visible = false;
     //
     // label24
     //
     this.coreBind.SetDatabasecommand(this.label24, null);
     this.label24.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label24.Location = new System.Drawing.Point(259, 137);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(45, 32);
     this.label24.TabIndex = 642;
     this.label24.Text = "驾驶员身份证";
     this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label24, null);
     //
     // cbBF
     //
     this.cbBF.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbBF, null);
     this.cbBF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBF.FormattingEnabled = true;
     this.cbBF.Location = new System.Drawing.Point(316, 18);
     this.cbBF.Name = "cbBF";
     this.cbBF.Size = new System.Drawing.Size(157, 20);
     this.cbBF.TabIndex = 4;
     this.coreBind.SetVerification(this.cbBF, null);
     this.cbBF.SelectedIndexChanged += new System.EventHandler(this.cbBF_SelectedIndexChanged);
     //
     // label12
     //
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label12.Location = new System.Drawing.Point(252, 16);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(58, 24);
     this.label12.TabIndex = 678;
     this.label12.Text = "磅房";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label12, null);
     //
     // cbCH2
     //
     this.coreBind.SetDatabasecommand(this.cbCH2, null);
     this.cbCH2.FormattingEnabled = true;
     this.cbCH2.Location = new System.Drawing.Point(130, 48);
     this.cbCH2.Name = "cbCH2";
     this.cbCH2.Size = new System.Drawing.Size(101, 20);
     this.cbCH2.TabIndex = 8;
     this.coreBind.SetVerification(this.cbCH2, null);
     this.cbCH2.Leave += new System.EventHandler(this.cbCH2_Leave);
     this.cbCH2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cbCH2_KeyPress);
     //
     // cbCH1
     //
     this.coreBind.SetDatabasecommand(this.cbCH1, null);
     this.cbCH1.FormattingEnabled = true;
     this.cbCH1.Items.AddRange(new object[] {
     "",
     "云A",
     "云G",
     "云B",
     "云F"});
     this.cbCH1.Location = new System.Drawing.Point(74, 48);
     this.cbCH1.Name = "cbCH1";
     this.cbCH1.Size = new System.Drawing.Size(56, 20);
     this.cbCH1.TabIndex = 7;
     this.coreBind.SetVerification(this.cbCH1, null);
     this.cbCH1.Leave += new System.EventHandler(this.cbCH1_Leave);
     this.cbCH1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cbCH1_KeyPress);
     //
     // cbFHDWKCD
     //
     this.coreBind.SetDatabasecommand(this.cbFHDWKCD, null);
     this.cbFHDWKCD.FormattingEnabled = true;
     this.cbFHDWKCD.Location = new System.Drawing.Point(74, 106);
     this.cbFHDWKCD.Name = "cbFHDWKCD";
     this.cbFHDWKCD.Size = new System.Drawing.Size(157, 20);
     this.cbFHDWKCD.TabIndex = 625;
     this.coreBind.SetVerification(this.cbFHDWKCD, null);
     //
     // label23
     //
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label23.Location = new System.Drawing.Point(19, 137);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(52, 32);
     this.label23.TabIndex = 640;
     this.label23.Text = "驾驶员姓名";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label23, null);
     //
     // label3
     //
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Location = new System.Drawing.Point(16, 105);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(58, 24);
     this.label3.TabIndex = 624;
     this.label3.Text = "发货地点";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // cbWLMC
     //
     this.cbWLMC.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbWLMC, null);
     this.cbWLMC.FormattingEnabled = true;
     this.cbWLMC.Location = new System.Drawing.Point(316, 50);
     this.cbWLMC.Name = "cbWLMC";
     this.cbWLMC.Size = new System.Drawing.Size(157, 20);
     this.cbWLMC.TabIndex = 9;
     this.coreBind.SetVerification(this.cbWLMC, null);
     this.cbWLMC.Leave += new System.EventHandler(this.cbWLMC_Leave);
     this.cbWLMC.TextChanged += new System.EventHandler(this.cbWLMC_TextChanged);
     //
     // cbSHDW
     //
     this.coreBind.SetDatabasecommand(this.cbSHDW, null);
     this.cbSHDW.FormattingEnabled = true;
     this.cbSHDW.Location = new System.Drawing.Point(316, 78);
     this.cbSHDW.Name = "cbSHDW";
     this.cbSHDW.Size = new System.Drawing.Size(157, 20);
     this.cbSHDW.TabIndex = 12;
     this.coreBind.SetVerification(this.cbSHDW, null);
     this.cbSHDW.Leave += new System.EventHandler(this.cbSHDW_Leave);
     this.cbSHDW.TextChanged += new System.EventHandler(this.cbSHDW_TextChanged);
     //
     // cbCYDW
     //
     this.coreBind.SetDatabasecommand(this.cbCYDW, null);
     this.cbCYDW.FormattingEnabled = true;
     this.cbCYDW.Location = new System.Drawing.Point(601, 82);
     this.cbCYDW.Name = "cbCYDW";
     this.cbCYDW.Size = new System.Drawing.Size(157, 20);
     this.cbCYDW.TabIndex = 13;
     this.coreBind.SetVerification(this.cbCYDW, null);
     this.cbCYDW.Leave += new System.EventHandler(this.cbCYDW_Leave);
     this.cbCYDW.TextChanged += new System.EventHandler(this.cbCYDW_TextChanged);
     //
     // cbFHDW
     //
     this.cbFHDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbFHDW, null);
     this.cbFHDW.FormattingEnabled = true;
     this.cbFHDW.Location = new System.Drawing.Point(601, 51);
     this.cbFHDW.Name = "cbFHDW";
     this.cbFHDW.Size = new System.Drawing.Size(157, 20);
     this.cbFHDW.TabIndex = 11;
     this.coreBind.SetVerification(this.cbFHDW, null);
     this.cbFHDW.Leave += new System.EventHandler(this.cbFHDW_Leave);
     this.cbFHDW.TextChanged += new System.EventHandler(this.cbFHDW_TextChanged);
     //
     // cbLX
     //
     this.cbLX.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbLX, null);
     this.cbLX.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbLX.FormattingEnabled = true;
     this.cbLX.Location = new System.Drawing.Point(74, 76);
     this.cbLX.Name = "cbLX";
     this.cbLX.Size = new System.Drawing.Size(157, 20);
     this.cbLX.TabIndex = 10;
     this.coreBind.SetVerification(this.cbLX, null);
     //
     // label16
     //
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label16.Location = new System.Drawing.Point(534, 79);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(58, 24);
     this.label16.TabIndex = 677;
     this.label16.Text = "承运单位";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label16, null);
     //
     // label14
     //
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label14.Location = new System.Drawing.Point(252, 76);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(56, 24);
     this.label14.TabIndex = 676;
     this.label14.Text = "收货单位";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     //
     // label15
     //
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label15.Location = new System.Drawing.Point(534, 49);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(58, 24);
     this.label15.TabIndex = 675;
     this.label15.Text = "发货单位";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label15, null);
     //
     // label11
     //
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label11.Location = new System.Drawing.Point(8, 76);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(66, 24);
     this.label11.TabIndex = 674;
     this.label11.Text = "流向";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label11, null);
     //
     // label13
     //
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label13.Location = new System.Drawing.Point(252, 47);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(56, 24);
     this.label13.TabIndex = 673;
     this.label13.Text = "物料名称";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label13, null);
     //
     // label7
     //
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(653, 12);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 24);
     this.label7.TabIndex = 672;
     this.label7.Text = "合同项目号";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label7, null);
     //
     // label8
     //
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Location = new System.Drawing.Point(479, 16);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(45, 24);
     this.label8.TabIndex = 670;
     this.label8.Text = "合同号";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label8, null);
     //
     // label6
     //
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label6.Location = new System.Drawing.Point(16, 47);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(58, 24);
     this.label6.TabIndex = 669;
     this.label6.Text = "车号";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label6, null);
     //
     // label5
     //
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label5.Location = new System.Drawing.Point(16, 15);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 24);
     this.label5.TabIndex = 668;
     this.label5.Text = "卡号";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label5, null);
     //
     // txtCZH
     //
     this.txtCZH.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtCZH, null);
     this.txtCZH.Font = new System.Drawing.Font("宋体", 11F);
     this.txtCZH.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtCZH.Location = new System.Drawing.Point(74, 15);
     this.txtCZH.MaxLength = 5;
     this.txtCZH.Name = "txtCZH";
     this.txtCZH.Size = new System.Drawing.Size(157, 24);
     this.txtCZH.TabIndex = 3;
     this.coreBind.SetVerification(this.txtCZH, null);
     this.txtCZH.Leave += new System.EventHandler(this.txtCZH_Leave);
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel3.Controls.Add(this.btnXZYB);
     this.panel3.Controls.Add(this.label29);
     this.panel3.Controls.Add(this.txtYBWJ);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Location = new System.Drawing.Point(10, 9);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(968, 49);
     this.panel3.TabIndex = 653;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // btnXZYB
     //
     this.btnXZYB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnXZYB, null);
     this.btnXZYB.Location = new System.Drawing.Point(824, 7);
     this.btnXZYB.Name = "btnXZYB";
     this.btnXZYB.Size = new System.Drawing.Size(130, 32);
     this.btnXZYB.TabIndex = 2;
     this.btnXZYB.Text = "选择预报Excel文件";
     this.btnXZYB.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnXZYB, null);
     this.btnXZYB.Click += new System.EventHandler(this.btnXZYB_Click);
     //
     // label29
     //
     this.coreBind.SetDatabasecommand(this.label29, null);
     this.label29.Location = new System.Drawing.Point(13, 11);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(58, 24);
     this.label29.TabIndex = 656;
     this.label29.Text = "预报导入";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label29, null);
     //
     // txtYBWJ
     //
     this.txtYBWJ.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtYBWJ, null);
     this.txtYBWJ.Enabled = false;
     this.txtYBWJ.Font = new System.Drawing.Font("宋体", 11F);
     this.txtYBWJ.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtYBWJ.Location = new System.Drawing.Point(71, 11);
     this.txtYBWJ.MaxLength = 8;
     this.txtYBWJ.Name = "txtYBWJ";
     this.txtYBWJ.ReadOnly = true;
     this.txtYBWJ.Size = new System.Drawing.Size(747, 24);
     this.txtYBWJ.TabIndex = 1;
     this.coreBind.SetVerification(this.txtYBWJ, null);
     //
     // cbYBLXDH
     //
     this.coreBind.SetDatabasecommand(this.cbYBLXDH, null);
     this.cbYBLXDH.FormattingEnabled = true;
     this.cbYBLXDH.Location = new System.Drawing.Point(351, 318);
     this.cbYBLXDH.Name = "cbYBLXDH";
     this.cbYBLXDH.Size = new System.Drawing.Size(157, 20);
     this.cbYBLXDH.TabIndex = 651;
     this.coreBind.SetVerification(this.cbYBLXDH, null);
     this.cbYBLXDH.Visible = false;
     //
     // cbYXJ
     //
     this.coreBind.SetDatabasecommand(this.cbYXJ, null);
     this.cbYXJ.FormattingEnabled = true;
     this.cbYXJ.Location = new System.Drawing.Point(590, 318);
     this.cbYXJ.Name = "cbYXJ";
     this.cbYXJ.Size = new System.Drawing.Size(162, 20);
     this.cbYXJ.TabIndex = 649;
     this.coreBind.SetVerification(this.cbYXJ, null);
     this.cbYXJ.Visible = false;
     //
     // cbYBLXR
     //
     this.coreBind.SetDatabasecommand(this.cbYBLXR, null);
     this.cbYBLXR.FormattingEnabled = true;
     this.cbYBLXR.Location = new System.Drawing.Point(106, 319);
     this.cbYBLXR.Name = "cbYBLXR";
     this.cbYBLXR.Size = new System.Drawing.Size(157, 20);
     this.cbYBLXR.TabIndex = 650;
     this.coreBind.SetVerification(this.cbYBLXR, null);
     this.cbYBLXR.Visible = false;
     //
     // label26
     //
     this.coreBind.SetDatabasecommand(this.label26, null);
     this.label26.Location = new System.Drawing.Point(522, 317);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(68, 24);
     this.label26.TabIndex = 648;
     this.label26.Text = "优先级";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label26, null);
     this.label26.Visible = false;
     //
     // label27
     //
     this.coreBind.SetDatabasecommand(this.label27, null);
     this.label27.Location = new System.Drawing.Point(269, 317);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(82, 24);
     this.label27.TabIndex = 647;
     this.label27.Text = "预报联系电话";
     this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label27, null);
     this.label27.Visible = false;
     //
     // label28
     //
     this.coreBind.SetDatabasecommand(this.label28, null);
     this.label28.Location = new System.Drawing.Point(38, 318);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(68, 24);
     this.label28.TabIndex = 646;
     this.label28.Text = "预报联系人";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label28, null);
     this.label28.Visible = false;
     //
     // cbBC
     //
     this.coreBind.SetDatabasecommand(this.cbBC, null);
     this.cbBC.FormattingEnabled = true;
     this.cbBC.Location = new System.Drawing.Point(590, 294);
     this.cbBC.Name = "cbBC";
     this.cbBC.Size = new System.Drawing.Size(162, 20);
     this.cbBC.TabIndex = 645;
     this.coreBind.SetVerification(this.cbBC, null);
     this.cbBC.Visible = false;
     //
     // label25
     //
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.Location = new System.Drawing.Point(526, 293);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(64, 24);
     this.label25.TabIndex = 644;
     this.label25.Text = "班次";
     this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label25, null);
     this.label25.Visible = false;
     //
     // cbSHDWKCD
     //
     this.coreBind.SetDatabasecommand(this.cbSHDWKCD, null);
     this.cbSHDWKCD.FormattingEnabled = true;
     this.cbSHDWKCD.Location = new System.Drawing.Point(351, 270);
     this.cbSHDWKCD.Name = "cbSHDWKCD";
     this.cbSHDWKCD.Size = new System.Drawing.Size(157, 20);
     this.cbSHDWKCD.TabIndex = 627;
     this.coreBind.SetVerification(this.cbSHDWKCD, null);
     this.cbSHDWKCD.Visible = false;
     //
     // label4
     //
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Location = new System.Drawing.Point(295, 269);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 24);
     this.label4.TabIndex = 626;
     this.label4.Text = "收货单位库存点";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label4, null);
     this.label4.Visible = false;
     //
     // dateDQSJ
     //
     this.dateDQSJ.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dateDQSJ, null);
     this.dateDQSJ.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateDQSJ.Location = new System.Drawing.Point(366, 342);
     this.dateDQSJ.Name = "dateDQSJ";
     this.dateDQSJ.Size = new System.Drawing.Size(162, 21);
     this.dateDQSJ.TabIndex = 623;
     this.coreBind.SetVerification(this.dateDQSJ, null);
     this.dateDQSJ.Visible = false;
     //
     // label2
     //
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(300, 341);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(66, 24);
     this.label2.TabIndex = 622;
     this.label2.Text = "到期时间";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label2, null);
     this.label2.Visible = false;
     //
     // txtYJLCS
     //
     this.txtYJLCS.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtYJLCS, null);
     this.txtYJLCS.Font = new System.Drawing.Font("宋体", 11F);
     this.txtYJLCS.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtYJLCS.Location = new System.Drawing.Point(158, 291);
     this.txtYJLCS.MaxLength = 18;
     this.txtYJLCS.Name = "txtYJLCS";
     this.txtYJLCS.Size = new System.Drawing.Size(91, 24);
     this.txtYJLCS.TabIndex = 641;
     this.coreBind.SetVerification(this.txtYJLCS, null);
     this.txtYJLCS.Visible = false;
     //
     // label1
     //
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Location = new System.Drawing.Point(620, 267);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 24);
     this.label1.TabIndex = 621;
     this.label1.Text = "预报号";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     this.label1.Visible = false;
     //
     // txtYBH
     //
     this.txtYBH.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtYBH, null);
     this.txtYBH.Font = new System.Drawing.Font("宋体", 11F);
     this.txtYBH.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtYBH.Location = new System.Drawing.Point(678, 267);
     this.txtYBH.MaxLength = 8;
     this.txtYBH.Name = "txtYBH";
     this.txtYBH.Size = new System.Drawing.Size(157, 24);
     this.txtYBH.TabIndex = 620;
     this.coreBind.SetVerification(this.txtYBH, null);
     this.txtYBH.Visible = false;
     //
     // txtZS
     //
     this.txtZS.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtZS, null);
     this.txtZS.Font = new System.Drawing.Font("宋体", 11F);
     this.txtZS.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtZS.Location = new System.Drawing.Point(559, 269);
     this.txtZS.MaxLength = 8;
     this.txtZS.Name = "txtZS";
     this.txtZS.Size = new System.Drawing.Size(54, 24);
     this.txtZS.TabIndex = 606;
     this.coreBind.SetVerification(this.txtZS, null);
     this.txtZS.Visible = false;
     //
     // label10
     //
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Location = new System.Drawing.Point(69, 342);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 24);
     this.label10.TabIndex = 605;
     this.label10.Text = "炉号";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label10, null);
     this.label10.Visible = false;
     //
     // txtLH
     //
     this.txtLH.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtLH, null);
     this.txtLH.Font = new System.Drawing.Font("宋体", 11F);
     this.txtLH.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtLH.Location = new System.Drawing.Point(127, 342);
     this.txtLH.MaxLength = 8;
     this.txtLH.Name = "txtLH";
     this.txtLH.Size = new System.Drawing.Size(157, 24);
     this.txtLH.TabIndex = 604;
     this.coreBind.SetVerification(this.txtLH, null);
     this.txtLH.Visible = false;
     //
     // label9
     //
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Location = new System.Drawing.Point(526, 269);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 24);
     this.label9.TabIndex = 607;
     this.label9.Text = "支数";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label9, null);
     this.label9.Visible = false;
     //
     // txtJHCS
     //
     this.txtJHCS.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.txtJHCS, null);
     this.txtJHCS.Font = new System.Drawing.Font("宋体", 11F);
     this.txtJHCS.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtJHCS.Location = new System.Drawing.Point(13, 291);
     this.txtJHCS.MaxLength = 8;
     this.txtJHCS.Name = "txtJHCS";
     this.txtJHCS.Size = new System.Drawing.Size(139, 24);
     this.txtJHCS.TabIndex = 639;
     this.coreBind.SetVerification(this.txtJHCS, null);
     this.txtJHCS.Visible = false;
     //
     // PredictInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 666);
     this.Controls.Add(this.MeasureDataQuery_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.KeyPreview = true;
     this.Name = "PredictInfo";
     this.Tag = "Predict";
     this.Text = "预报信息";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.PredictInfo_Load);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.PredictInfo_KeyPress);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PredictInfo_FormClosing);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.MeasureDataQuery_Fill_Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 43
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.LabelTool labelTool1 = new Infragistics.Win.UltraWinToolbars.LabelTool("钢种:");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("钢种:");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STANDARD");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     this.panel1 = new System.Windows.Forms.Panel();
     this.tbx_Qsteeltype = new System.Windows.Forms.TextBox();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ClientArea_Fill_Panel = new System.Windows.Forms.Panel();
     this._ClientArea_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_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.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.FrmBase_Fill_Panel_Fill_Panel = new System.Windows.Forms.Panel();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = 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.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tbx_steeltype = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tbx_standard = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     this.panel1_Fill_Panel.SuspendLayout();
     this.panel1_Fill_Panel_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.FrmBase_Fill_Panel_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     this.ultraPanel4.ClientArea.SuspendLayout();
     this.ultraPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.ultraPanel3.ClientArea.SuspendLayout();
     this.ultraPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tbx_Qsteeltype);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(994, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // tbx_Qsteeltype
     //
     this.coreBind.SetDatabasecommand(this.tbx_Qsteeltype, null);
     this.tbx_Qsteeltype.Location = new System.Drawing.Point(60, 3);
     this.tbx_Qsteeltype.Name = "tbx_Qsteeltype";
     this.tbx_Qsteeltype.Size = new System.Drawing.Size(100, 21);
     this.tbx_Qsteeltype.TabIndex = 5;
     this.coreBind.SetVerification(this.tbx_Qsteeltype, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Controls.Add(this.panel1_Fill_Panel_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, 0);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(994, 26);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // panel1_Fill_Panel_Fill_Panel
     //
     this.panel1_Fill_Panel_Fill_Panel.Controls.Add(this.panel1_Fill_Panel_Fill_Panel_Fill_Panel);
     this.panel1_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel_Fill_Panel, null);
     this.panel1_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.panel1_Fill_Panel_Fill_Panel.Name = "panel1_Fill_Panel_Fill_Panel";
     this.panel1_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(994, 26);
     this.panel1_Fill_Panel_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel_Fill_Panel, null);
     //
     // panel1_Fill_Panel_Fill_Panel_Fill_Panel
     //
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.panel1_Fill_Panel_Fill_Panel_Fill_Panel, null);
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel.Name = "panel1_Fill_Panel_Fill_Panel_Fill_Panel";
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(994, 26);
     this.panel1_Fill_Panel_Fill_Panel_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel_Fill_Panel_Fill_Panel, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.ultraPanel1.ClientArea;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     ultraToolbar1.FloatingLocation = new System.Drawing.Point(13, 183);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(498, 22);
     labelTool1.InstanceProps.Width = 51;
     controlContainerTool1.ControlName = "tbx_Qsteeltype";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool1,
     controlContainerTool1,
     buttonTool2,
     buttonTool3,
     buttonTool4,
     buttonTool5});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     labelTool2.SharedPropsInternal.Caption = "钢种:";
     labelTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool2.ControlName = "tbx_Qsteeltype";
     controlContainerTool2.SharedPropsInternal.Caption = "ControlContainerTool1";
     buttonTool7.SharedPropsInternal.Caption = "查询";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool8.SharedPropsInternal.Caption = "新增";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool9.SharedPropsInternal.Caption = "修改";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Caption = "删除";
     buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     labelTool2,
     controlContainerTool2,
     buttonTool7,
     buttonTool8,
     buttonTool9,
     buttonTool10});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ClientArea_Fill_Panel);
     this.ultraPanel1.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Left);
     this.ultraPanel1.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Right);
     this.ultraPanel1.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Top);
     this.ultraPanel1.ClientArea.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Bottom);
     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.Top;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(994, 26);
     this.ultraPanel1.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ClientArea_Fill_Panel
     //
     this.ClientArea_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.ClientArea_Fill_Panel, null);
     this.ClientArea_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ClientArea_Fill_Panel.Location = new System.Drawing.Point(0, 28);
     this.ClientArea_Fill_Panel.Name = "ClientArea_Fill_Panel";
     this.ClientArea_Fill_Panel.Size = new System.Drawing.Size(994, 0);
     this.ClientArea_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.ClientArea_Fill_Panel, 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, 28);
     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.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Left, null);
     //
     // _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(994, 28);
     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.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_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, 0);
     this._ClientArea_Toolbars_Dock_Area_Top.Name = "_ClientArea_Toolbars_Dock_Area_Top";
     this._ClientArea_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(994, 28);
     this._ClientArea_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     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, 26);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_Bottom";
     this._ClientArea_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(994, 0);
     this._ClientArea_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Bottom, null);
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.FrmBase_Fill_Panel_Fill_Panel);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(994, 663);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // FrmBase_Fill_Panel_Fill_Panel
     //
     this.FrmBase_Fill_Panel_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel_Fill_Panel.Controls.Add(this.ultraPanel1);
     this.FrmBase_Fill_Panel_Fill_Panel.Controls.Add(this.panel1);
     this.FrmBase_Fill_Panel_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel_Fill_Panel, null);
     this.FrmBase_Fill_Panel_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel_Fill_Panel.Name = "FrmBase_Fill_Panel_Fill_Panel";
     this.FrmBase_Fill_Panel_Fill_Panel.Size = new System.Drawing.Size(994, 663);
     this.FrmBase_Fill_Panel_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel_Fill_Panel, null);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraPanel4);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraPanel3);
     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, 26);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(994, 637);
     this.ultraPanel2.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraPanel4
     //
     //
     // ultraPanel4.ClientArea
     //
     this.ultraPanel4.ClientArea.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraPanel4.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel4.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel4, null);
     this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel4.Location = new System.Drawing.Point(0, 34);
     this.ultraPanel4.Name = "ultraPanel4";
     this.ultraPanel4.Size = new System.Drawing.Size(994, 603);
     this.ultraPanel4.TabIndex = 6;
     this.coreBind.SetVerification(this.ultraPanel4, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(994, 603);
     this.ultraGroupBox1.TabIndex = 3;
     this.ultraGroupBox1.Text = "标准信息";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid1.DisplayLayout.Appearance = appearance1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 38);
     ultraGridColumn2.Header.VisiblePosition = 2;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 38);
     ultraGridColumn3.Header.VisiblePosition = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 38);
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 10;
     appearance2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance2;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance3.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance3;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance4.BackColor2 = System.Drawing.Color.White;
     appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance4.FontData.SizeInPoints = 11F;
     appearance4.ForeColor = System.Drawing.Color.Black;
     appearance4.TextHAlignAsString = "Center";
     appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance4;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance5;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance6;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.VisibleIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 30;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance7.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance7.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance7;
     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.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.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(988, 582);
     this.ultraGrid1.TabIndex = 0;
     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});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "ID";
     this.dataColumn1.ColumnName = "FN_ID";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "钢种";
     this.dataColumn2.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "标准";
     this.dataColumn3.ColumnName = "FS_STANDARD";
     //
     // ultraPanel3
     //
     //
     // ultraPanel3.ClientArea
     //
     this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox2);
     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(994, 34);
     this.ultraPanel3.TabIndex = 5;
     this.coreBind.SetVerification(this.ultraPanel3, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.label1);
     this.ultraGroupBox2.Controls.Add(this.tbx_steeltype);
     this.ultraGroupBox2.Controls.Add(this.label2);
     this.ultraGroupBox2.Controls.Add(this.tbx_standard);
     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(994, 34);
     this.ultraGroupBox2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // 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(22, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 12);
     this.label1.TabIndex = 1;
     this.label1.Text = "钢种:";
     this.coreBind.SetVerification(this.label1, null);
     //
     // tbx_steeltype
     //
     this.coreBind.SetDatabasecommand(this.tbx_steeltype, null);
     this.tbx_steeltype.Location = new System.Drawing.Point(69, 4);
     this.tbx_steeltype.Name = "tbx_steeltype";
     this.tbx_steeltype.Size = new System.Drawing.Size(100, 21);
     this.tbx_steeltype.TabIndex = 2;
     this.coreBind.SetVerification(this.tbx_steeltype, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(182, 12);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(41, 12);
     this.label2.TabIndex = 3;
     this.label2.Text = "标准:";
     this.coreBind.SetVerification(this.label2, null);
     //
     // tbx_standard
     //
     this.coreBind.SetDatabasecommand(this.tbx_standard, null);
     this.tbx_standard.Location = new System.Drawing.Point(229, 4);
     this.tbx_standard.Name = "tbx_standard";
     this.tbx_standard.Size = new System.Drawing.Size(146, 21);
     this.tbx_standard.TabIndex = 4;
     this.coreBind.SetVerification(this.tbx_standard, null);
     //
     // StandardInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(994, 663);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "StandardInfo";
     this.Text = "高线标准维护";
     this.coreBind.SetVerification(this, null);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel1_Fill_Panel.ResumeLayout(false);
     this.panel1_Fill_Panel_Fill_Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel_Fill_Panel.ResumeLayout(false);
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     this.ultraPanel4.ClientArea.ResumeLayout(false);
     this.ultraPanel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.ultraPanel3.ClientArea.ResumeLayout(false);
     this.ultraPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 44
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 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);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGAOrder));
     this.ProductID      = new Signature.Windows.Forms.ColumnSetting();
     this.Description    = new Signature.Windows.Forms.ColumnSetting();
     this.Price          = new Signature.Windows.Forms.ColumnSetting();
     this.Quantity       = new Signature.Windows.Forms.ColumnSetting();
     this.columnSetting1 = new Signature.Windows.Forms.ColumnSetting();
     this.columnSetting2 = new Signature.Windows.Forms.ColumnSetting();
     this.columnSetting3 = new Signature.Windows.Forms.ColumnSetting();
     this.columnSetting4 = new Signature.Windows.Forms.ColumnSetting();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.label1         = new System.Windows.Forms.Label();
     this.txtShipDate    = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.txtName        = new Infragistics.Win.Misc.UltraLabel();
     this.txtCustomerID  = new Signature.Windows.Forms.MaskedEdit();
     this.label9         = new System.Windows.Forms.Label();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.gKits          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.bCancel        = new System.Windows.Forms.Button();
     this.bSubmit        = new System.Windows.Forms.Button();
     this.label2         = new System.Windows.Forms.Label();
     this.cbKit          = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gKits)).BeginInit();
     this.SuspendLayout();
     //
     // ProductID
     //
     this.ProductID.ButtonWidth = 25;
     this.ProductID.IsEditable  = false;
     //
     // Description
     //
     this.Description.ButtonWidth = 25;
     this.Description.IsEditable  = false;
     //
     // Price
     //
     this.Price.ButtonWidth = 25;
     this.Price.IsEditable  = false;
     //
     // Quantity
     //
     this.Quantity.ButtonWidth = 25;
     //
     // columnSetting1
     //
     this.columnSetting1.ButtonWidth = 25;
     //
     // columnSetting2
     //
     this.columnSetting2.ButtonWidth = 25;
     //
     // columnSetting3
     //
     this.columnSetting3.ButtonWidth = 25;
     //
     // columnSetting4
     //
     this.columnSetting4.ButtonWidth = 25;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cbKit);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.txtShipDate);
     this.ultraGroupBox1.Controls.Add(this.txtName);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerID);
     this.ultraGroupBox1.Controls.Add(this.label9);
     this.ultraGroupBox1.Location  = new System.Drawing.Point(9, 20);
     this.ultraGroupBox1.Name      = "ultraGroupBox1";
     this.ultraGroupBox1.Size      = new System.Drawing.Size(436, 69);
     this.ultraGroupBox1.TabIndex  = 12;
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(230, 11);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(86, 19);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Delivery Date:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtShipDate
     //
     this.txtShipDate.Location = new System.Drawing.Point(335, 11);
     this.txtShipDate.Name     = "txtShipDate";
     this.txtShipDate.Size     = new System.Drawing.Size(84, 21);
     this.txtShipDate.TabIndex = 15;
     this.txtShipDate.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // txtName
     //
     appearance1.BackColor    = System.Drawing.Color.Transparent;
     appearance1.BackColor2   = System.Drawing.Color.Black;
     this.txtName.Appearance  = appearance1;
     this.txtName.Location    = new System.Drawing.Point(22, 37);
     this.txtName.Name        = "txtName";
     this.txtName.Size        = new System.Drawing.Size(261, 20);
     this.txtName.TabIndex    = 14;
     this.txtName.UseOsThemes = Infragistics.Win.DefaultableBoolean.True;
     //
     // txtCustomerID
     //
     this.txtCustomerID.AllowDrop = true;
     this.txtCustomerID.Location  = new System.Drawing.Point(88, 11);
     this.txtCustomerID.Name      = "txtCustomerID";
     this.txtCustomerID.Size      = new System.Drawing.Size(52, 20);
     this.txtCustomerID.TabIndex  = 12;
     this.txtCustomerID.KeyUp    += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // label9
     //
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Location  = new System.Drawing.Point(6, 11);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(63, 19);
     this.label9.TabIndex  = 13;
     this.label9.Text      = "School ID:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.gKits);
     this.ultraGroupBox2.Location  = new System.Drawing.Point(12, 103);
     this.ultraGroupBox2.Name      = "ultraGroupBox2";
     this.ultraGroupBox2.Size      = new System.Drawing.Size(433, 245);
     this.ultraGroupBox2.TabIndex  = 13;
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // gKits
     //
     appearance2.BackColor                                      = System.Drawing.Color.Transparent;
     appearance2.BackColor2                                     = System.Drawing.Color.Transparent;
     appearance2.BackGradientStyle                              = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.gKits.DisplayLayout.Appearance                        = appearance2;
     this.gKits.DisplayLayout.BorderStyle                       = Infragistics.Win.UIElementBorderStyle.None;
     this.gKits.DisplayLayout.CaptionVisible                    = Infragistics.Win.DefaultableBoolean.False;
     appearance3.BackColor                                      = System.Drawing.SystemColors.ActiveBorder;
     appearance3.BackColor2                                     = System.Drawing.SystemColors.ControlDark;
     appearance3.BackGradientStyle                              = Infragistics.Win.GradientStyle.Vertical;
     appearance3.BorderColor                                    = System.Drawing.SystemColors.Window;
     this.gKits.DisplayLayout.GroupByBox.Appearance             = appearance3;
     appearance4.ForeColor                                      = System.Drawing.SystemColors.GrayText;
     this.gKits.DisplayLayout.GroupByBox.BandLabelAppearance    = appearance4;
     this.gKits.DisplayLayout.GroupByBox.BorderStyle            = Infragistics.Win.UIElementBorderStyle.Solid;
     this.gKits.DisplayLayout.GroupByBox.Hidden                 = true;
     appearance5.BackColor                                      = System.Drawing.SystemColors.ControlLightLight;
     appearance5.BackColor2                                     = System.Drawing.SystemColors.Control;
     appearance5.BackGradientStyle                              = Infragistics.Win.GradientStyle.Horizontal;
     appearance5.ForeColor                                      = System.Drawing.SystemColors.GrayText;
     this.gKits.DisplayLayout.GroupByBox.PromptAppearance       = appearance5;
     this.gKits.DisplayLayout.InterBandSpacing                  = 10;
     this.gKits.DisplayLayout.MaxColScrollRegions               = 1;
     this.gKits.DisplayLayout.MaxRowScrollRegions               = 1;
     appearance6.BackColor                                      = System.Drawing.SystemColors.Window;
     appearance6.ForeColor                                      = System.Drawing.SystemColors.ControlText;
     this.gKits.DisplayLayout.Override.ActiveCellAppearance     = appearance6;
     appearance7.BackColor                                      = System.Drawing.SystemColors.Highlight;
     appearance7.ForeColor                                      = System.Drawing.SystemColors.HighlightText;
     this.gKits.DisplayLayout.Override.ActiveRowAppearance      = appearance7;
     this.gKits.DisplayLayout.Override.BorderStyleCell          = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.gKits.DisplayLayout.Override.BorderStyleRow           = Infragistics.Win.UIElementBorderStyle.Dotted;
     appearance8.BackColor                                      = System.Drawing.Color.Transparent;
     this.gKits.DisplayLayout.Override.CardAreaAppearance       = appearance8;
     appearance9.BorderColor                                    = System.Drawing.Color.Silver;
     appearance9.TextTrimming                                   = Infragistics.Win.TextTrimming.EllipsisCharacter;
     this.gKits.DisplayLayout.Override.CellAppearance           = appearance9;
     this.gKits.DisplayLayout.Override.CellClickAction          = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.gKits.DisplayLayout.Override.CellPadding              = 0;
     appearance10.BackColor                                     = System.Drawing.SystemColors.Control;
     appearance10.BackColor2                                    = System.Drawing.SystemColors.ControlDark;
     appearance10.BackGradientAlignment                         = Infragistics.Win.GradientAlignment.Element;
     appearance10.BackGradientStyle                             = Infragistics.Win.GradientStyle.Horizontal;
     appearance10.BorderColor                                   = System.Drawing.SystemColors.Window;
     this.gKits.DisplayLayout.Override.GroupByRowAppearance     = appearance10;
     appearance11.BackColor                                     = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance11.BackColor2                                    = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance11.BackGradientStyle                             = Infragistics.Win.GradientStyle.Vertical;
     appearance11.ForeColor                                     = System.Drawing.Color.White;
     appearance11.TextHAlignAsString                            = "Left";
     appearance11.ThemedElementAlpha                            = Infragistics.Win.Alpha.Transparent;
     this.gKits.DisplayLayout.Override.HeaderAppearance         = appearance11;
     this.gKits.DisplayLayout.Override.HeaderClickAction        = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.gKits.DisplayLayout.Override.HeaderStyle              = Infragistics.Win.HeaderStyle.WindowsXPCommand;
     appearance12.BorderColor                                   = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.gKits.DisplayLayout.Override.RowAppearance            = appearance12;
     appearance13.BackColor                                     = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance13.BackColor2                                    = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance13.BackGradientStyle                             = Infragistics.Win.GradientStyle.Vertical;
     this.gKits.DisplayLayout.Override.RowSelectorAppearance    = appearance13;
     this.gKits.DisplayLayout.Override.RowSelectors             = Infragistics.Win.DefaultableBoolean.False;
     this.gKits.DisplayLayout.Override.RowSelectorWidth         = 12;
     this.gKits.DisplayLayout.Override.RowSpacingBefore         = 2;
     appearance14.BackColor                                     = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance14.BackColor2                                    = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance14.BackGradientStyle                             = Infragistics.Win.GradientStyle.Vertical;
     appearance14.ForeColor                                     = System.Drawing.Color.Black;
     this.gKits.DisplayLayout.Override.SelectedRowAppearance    = appearance14;
     appearance15.BackColor                                     = System.Drawing.SystemColors.ControlLight;
     this.gKits.DisplayLayout.Override.TemplateAddRowAppearance = appearance15;
     this.gKits.DisplayLayout.RowConnectorColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.gKits.DisplayLayout.RowConnectorStyle                 = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.gKits.DisplayLayout.ScrollBounds                      = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.gKits.DisplayLayout.ScrollStyle                       = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.gKits.DisplayLayout.ViewStyleBand                     = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.gKits.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gKits.Location = new System.Drawing.Point(15, 22);
     this.gKits.Name     = "gKits";
     this.gKits.Size     = new System.Drawing.Size(401, 209);
     this.gKits.TabIndex = 29;
     this.gKits.Text     = "nm,n,n";
     this.gKits.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.gKits_KeyUp);
     //
     // bCancel
     //
     this.bCancel.Location = new System.Drawing.Point(47, 360);
     this.bCancel.Name     = "bCancel";
     this.bCancel.Size     = new System.Drawing.Size(124, 26);
     this.bCancel.TabIndex = 14;
     this.bCancel.Text     = "Cancel";
     this.bCancel.UseVisualStyleBackColor = true;
     this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
     //
     // bSubmit
     //
     this.bSubmit.Location = new System.Drawing.Point(288, 360);
     this.bSubmit.Name     = "bSubmit";
     this.bSubmit.Size     = new System.Drawing.Size(124, 26);
     this.bSubmit.TabIndex = 15;
     this.bSubmit.Text     = "Submit and  Save";
     this.bSubmit.UseVisualStyleBackColor = true;
     this.bSubmit.Click += new System.EventHandler(this.bSubmit_Click);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(199, 37);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(117, 19);
     this.label2.TabIndex  = 17;
     this.label2.Text      = "Kit ?:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cbKit
     //
     this.cbKit.AutoSize = true;
     this.cbKit.Location = new System.Drawing.Point(335, 39);
     this.cbKit.Name     = "cbKit";
     this.cbKit.Size     = new System.Drawing.Size(15, 14);
     this.cbKit.TabIndex = 18;
     this.cbKit.UseVisualStyleBackColor = true;
     //
     // frmGAOrder
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.AliceBlue;
     this.ClientSize        = new System.Drawing.Size(454, 398);
     this.Controls.Add(this.bSubmit);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "frmGAOrder";
     this.ShowInTaskbar = false;
     this.Text          = "GA Order";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.frmOrder_Closing);
     this.Load         += new System.EventHandler(this.frmOrder_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gKits)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.tbMaterialCode = new System.Windows.Forms.TextBox();
     this.tbMaterialName = new System.Windows.Forms.TextBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox1);
     this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(736, 62);
     this.ultraPanel1.TabIndex = 0;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.button2);
     this.ultraGroupBox1.Controls.Add(this.button1);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.tbMaterialCode);
     this.ultraGroupBox1.Controls.Add(this.tbMaterialName);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(736, 62);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "数据录入";
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(600, 19);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 5;
     this.button2.Text = "取  消";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(504, 19);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 4;
     this.button1.Text = "确  定";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location = new System.Drawing.Point(300, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(53, 12);
     this.label2.TabIndex = 3;
     this.label2.Text = "物料代码";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(84, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 2;
     this.label1.Text = "物料名称";
     //
     // tbMaterialCode
     //
     this.tbMaterialCode.Location = new System.Drawing.Point(359, 21);
     this.tbMaterialCode.Name = "tbMaterialCode";
     this.tbMaterialCode.ReadOnly = true;
     this.tbMaterialCode.Size = new System.Drawing.Size(100, 21);
     this.tbMaterialCode.TabIndex = 1;
     //
     // tbMaterialName
     //
     this.tbMaterialName.Location = new System.Drawing.Point(143, 21);
     this.tbMaterialName.Name = "tbMaterialName";
     this.tbMaterialName.Size = new System.Drawing.Size(100, 21);
     this.tbMaterialName.TabIndex = 0;
     this.tbMaterialName.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 62);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(736, 417);
     this.ultraPanel2.TabIndex = 1;
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     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(736, 417);
     this.ultraGroupBox2.TabIndex = 1;
     this.ultraGroupBox2.Text = "数据查询";
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     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.ultraGrid1.DisplayLayout.Appearance = appearance13;
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance14;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance15.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance15.ForeColor = System.Drawing.Color.White;
     appearance15.TextHAlignAsString = "Left";
     appearance15.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance15;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance16;
     appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance17;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance18.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance18.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance18;
     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.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.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(730, 396);
     this.ultraGrid1.TabIndex = 0;
     this.ultraGrid1.Click += new System.EventHandler(this.ultraGrid1_Click);
     //
     // MoreBaseInfo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(736, 479);
     this.Controls.Add(this.ultraPanel2);
     this.Controls.Add(this.ultraPanel1);
     this.MaximizeBox = false;
     this.Name = "MoreBaseInfo";
     this.Text = "MoreBaseInfo";
     this.Load += new System.EventHandler(this.MoreBaseInfo_Load);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 47
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("CHECKED", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLETCOUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MINDIFFERENTRATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MAXDIFFERENTRATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BUNDLEWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BUNDLEMINWWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BUNDLEMAXWWEIGHT");
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance8 = 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 controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("LabelTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("TextBoxTool1");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool42 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = 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(TheoryWeightInfo_BC));
     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 buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("LabelTool1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("LabelTool2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("TextBoxTool1");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.tbqueryFN_BILLETCOUNT = new System.Windows.Forms.TextBox();
     this.tbqueryFN_WEIGHT = new System.Windows.Forms.TextBox();
     this.tbqueryFS_SPEC = new System.Windows.Forms.TextBox();
     this.tbqueryFN_LENGTH = new System.Windows.Forms.TextBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.tbFS_MAXDIFFERENTRATE = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.tbFS_MINDIFFERENTRATE = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tbFS_BUNDLEWEIGHT = new System.Windows.Forms.TextBox();
     this.tbFN_BILLETCOUNT = new System.Windows.Forms.TextBox();
     this.tbFN_ID = new System.Windows.Forms.TextBox();
     this.tbFS_BUNDLEMAXWWEIGHT = new System.Windows.Forms.TextBox();
     this.tbFS_SPEC = new System.Windows.Forms.TextBox();
     this.tbFS_BUNDLEMINWWEIGHT = new System.Windows.Forms.TextBox();
     this.tbFN_WEIGHT = new System.Windows.Forms.TextBox();
     this.tbFN_LENGTH = new System.Windows.Forms.TextBox();
     this.ultraGroupBox1 = 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.dataColumn1 = 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._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.tbqueryFN_BILLETCOUNT);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbqueryFN_WEIGHT);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbqueryFS_SPEC);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbqueryFN_LENGTH);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1008, 594);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // tbqueryFN_BILLETCOUNT
     //
     this.tbqueryFN_BILLETCOUNT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbqueryFN_BILLETCOUNT, null);
     this.tbqueryFN_BILLETCOUNT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbqueryFN_BILLETCOUNT.Location = new System.Drawing.Point(405, 3);
     this.tbqueryFN_BILLETCOUNT.Name = "tbqueryFN_BILLETCOUNT";
     this.tbqueryFN_BILLETCOUNT.Size = new System.Drawing.Size(58, 21);
     this.tbqueryFN_BILLETCOUNT.TabIndex = 1;
     this.coreBind.SetVerification(this.tbqueryFN_BILLETCOUNT, null);
     //
     // tbqueryFN_WEIGHT
     //
     this.tbqueryFN_WEIGHT.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbqueryFN_WEIGHT, null);
     this.tbqueryFN_WEIGHT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbqueryFN_WEIGHT.Location = new System.Drawing.Point(264, 3);
     this.tbqueryFN_WEIGHT.Name = "tbqueryFN_WEIGHT";
     this.tbqueryFN_WEIGHT.Size = new System.Drawing.Size(57, 21);
     this.tbqueryFN_WEIGHT.TabIndex = 2;
     this.coreBind.SetVerification(this.tbqueryFN_WEIGHT, null);
     //
     // tbqueryFS_SPEC
     //
     this.coreBind.SetDatabasecommand(this.tbqueryFS_SPEC, null);
     this.tbqueryFS_SPEC.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbqueryFS_SPEC.Location = new System.Drawing.Point(36, 3);
     this.tbqueryFS_SPEC.Name = "tbqueryFS_SPEC";
     this.tbqueryFS_SPEC.Size = new System.Drawing.Size(57, 21);
     this.tbqueryFS_SPEC.TabIndex = 0;
     this.coreBind.SetVerification(this.tbqueryFS_SPEC, null);
     //
     // tbqueryFN_LENGTH
     //
     this.tbqueryFN_LENGTH.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbqueryFN_LENGTH, null);
     this.tbqueryFN_LENGTH.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbqueryFN_LENGTH.Location = new System.Drawing.Point(127, 3);
     this.tbqueryFN_LENGTH.Name = "tbqueryFN_LENGTH";
     this.tbqueryFN_LENGTH.Size = new System.Drawing.Size(53, 21);
     this.tbqueryFN_LENGTH.TabIndex = 0;
     this.coreBind.SetVerification(this.tbqueryFN_LENGTH, null);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.groupBox1);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     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, 28);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1008, 566);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.tbFS_MAXDIFFERENTRATE);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.tbFS_MINDIFFERENTRATE);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.tbFS_BUNDLEWEIGHT);
     this.groupBox1.Controls.Add(this.tbFN_BILLETCOUNT);
     this.groupBox1.Controls.Add(this.tbFN_ID);
     this.groupBox1.Controls.Add(this.tbFS_BUNDLEMAXWWEIGHT);
     this.groupBox1.Controls.Add(this.tbFS_SPEC);
     this.groupBox1.Controls.Add(this.tbFS_BUNDLEMINWWEIGHT);
     this.groupBox1.Controls.Add(this.tbFN_WEIGHT);
     this.groupBox1.Controls.Add(this.tbFN_LENGTH);
     this.coreBind.SetDatabasecommand(this.groupBox1, null);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 503);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(1008, 63);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "���ݱ༭��";
     this.coreBind.SetVerification(this.groupBox1, null);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Location = new System.Drawing.Point(280, 45);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(125, 12);
     this.label10.TabIndex = 5;
     this.label10.Text = "����������������(KG)";
     this.coreBind.SetVerification(this.label10, null);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Location = new System.Drawing.Point(202, 19);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 12);
     this.label4.TabIndex = 5;
     this.label4.Text = "����(m)";
     this.coreBind.SetVerification(this.label4, null);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Location = new System.Drawing.Point(566, 45);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(125, 12);
     this.label9.TabIndex = 5;
     this.label9.Text = "����������������(KG)";
     this.coreBind.SetVerification(this.label9, null);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Location = new System.Drawing.Point(25, 45);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(101, 12);
     this.label8.TabIndex = 5;
     this.label8.Text = "������������(KG)";
     this.coreBind.SetVerification(this.label8, null);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Location = new System.Drawing.Point(304, 19);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(101, 12);
     this.label3.TabIndex = 5;
     this.label3.Text = "��֧��������(KG)";
     this.coreBind.SetVerification(this.label3, null);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(25, 19);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(17, 12);
     this.label7.TabIndex = 5;
     this.label7.Text = "ID";
     this.coreBind.SetVerification(this.label7, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(78, 19);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(53, 12);
     this.label2.TabIndex = 5;
     this.label2.Text = "���(mm)";
     this.coreBind.SetVerification(this.label2, null);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Location = new System.Drawing.Point(755, 19);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(89, 12);
     this.label6.TabIndex = 5;
     this.label6.Text = "��������������";
     this.coreBind.SetVerification(this.label6, null);
     //
     // tbFS_MAXDIFFERENTRATE
     //
     this.coreBind.SetDatabasecommand(this.tbFS_MAXDIFFERENTRATE, null);
     this.tbFS_MAXDIFFERENTRATE.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFS_MAXDIFFERENTRATE.Location = new System.Drawing.Point(846, 15);
     this.tbFS_MAXDIFFERENTRATE.Name = "tbFS_MAXDIFFERENTRATE";
     this.tbFS_MAXDIFFERENTRATE.Size = new System.Drawing.Size(57, 21);
     this.tbFS_MAXDIFFERENTRATE.TabIndex = 4;
     this.coreBind.SetVerification(this.tbFS_MAXDIFFERENTRATE, null);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Location = new System.Drawing.Point(602, 19);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(89, 12);
     this.label5.TabIndex = 5;
     this.label5.Text = "��������������";
     this.coreBind.SetVerification(this.label5, null);
     //
     // tbFS_MINDIFFERENTRATE
     //
     this.coreBind.SetDatabasecommand(this.tbFS_MINDIFFERENTRATE, null);
     this.tbFS_MINDIFFERENTRATE.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFS_MINDIFFERENTRATE.Location = new System.Drawing.Point(694, 15);
     this.tbFS_MINDIFFERENTRATE.Name = "tbFS_MINDIFFERENTRATE";
     this.tbFS_MINDIFFERENTRATE.Size = new System.Drawing.Size(57, 21);
     this.tbFS_MINDIFFERENTRATE.TabIndex = 4;
     this.coreBind.SetVerification(this.tbFS_MINDIFFERENTRATE, null);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Location = new System.Drawing.Point(470, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(77, 12);
     this.label1.TabIndex = 5;
     this.label1.Text = "������װ֧��";
     this.coreBind.SetVerification(this.label1, null);
     //
     // tbFS_BUNDLEWEIGHT
     //
     this.coreBind.SetDatabasecommand(this.tbFS_BUNDLEWEIGHT, null);
     this.tbFS_BUNDLEWEIGHT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFS_BUNDLEWEIGHT.Location = new System.Drawing.Point(131, 39);
     this.tbFS_BUNDLEWEIGHT.Name = "tbFS_BUNDLEWEIGHT";
     this.tbFS_BUNDLEWEIGHT.Size = new System.Drawing.Size(61, 21);
     this.tbFS_BUNDLEWEIGHT.TabIndex = 3;
     this.coreBind.SetVerification(this.tbFS_BUNDLEWEIGHT, null);
     //
     // tbFN_BILLETCOUNT
     //
     this.coreBind.SetDatabasecommand(this.tbFN_BILLETCOUNT, null);
     this.tbFN_BILLETCOUNT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFN_BILLETCOUNT.Location = new System.Drawing.Point(550, 15);
     this.tbFN_BILLETCOUNT.Name = "tbFN_BILLETCOUNT";
     this.tbFN_BILLETCOUNT.Size = new System.Drawing.Size(48, 21);
     this.tbFN_BILLETCOUNT.TabIndex = 4;
     this.coreBind.SetVerification(this.tbFN_BILLETCOUNT, null);
     //
     // tbFN_ID
     //
     this.tbFN_ID.BackColor = System.Drawing.SystemColors.ControlDark;
     this.coreBind.SetDatabasecommand(this.tbFN_ID, null);
     this.tbFN_ID.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFN_ID.Location = new System.Drawing.Point(44, 15);
     this.tbFN_ID.Name = "tbFN_ID";
     this.tbFN_ID.ReadOnly = true;
     this.tbFN_ID.Size = new System.Drawing.Size(31, 21);
     this.tbFN_ID.TabIndex = 3;
     this.coreBind.SetVerification(this.tbFN_ID, null);
     //
     // tbFS_BUNDLEMAXWWEIGHT
     //
     this.coreBind.SetDatabasecommand(this.tbFS_BUNDLEMAXWWEIGHT, null);
     this.tbFS_BUNDLEMAXWWEIGHT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFS_BUNDLEMAXWWEIGHT.Location = new System.Drawing.Point(694, 39);
     this.tbFS_BUNDLEMAXWWEIGHT.Name = "tbFS_BUNDLEMAXWWEIGHT";
     this.tbFS_BUNDLEMAXWWEIGHT.Size = new System.Drawing.Size(57, 21);
     this.tbFS_BUNDLEMAXWWEIGHT.TabIndex = 2;
     this.coreBind.SetVerification(this.tbFS_BUNDLEMAXWWEIGHT, null);
     //
     // tbFS_SPEC
     //
     this.coreBind.SetDatabasecommand(this.tbFS_SPEC, null);
     this.tbFS_SPEC.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFS_SPEC.Location = new System.Drawing.Point(131, 15);
     this.tbFS_SPEC.Name = "tbFS_SPEC";
     this.tbFS_SPEC.Size = new System.Drawing.Size(61, 21);
     this.tbFS_SPEC.TabIndex = 3;
     this.coreBind.SetVerification(this.tbFS_SPEC, null);
     //
     // tbFS_BUNDLEMINWWEIGHT
     //
     this.coreBind.SetDatabasecommand(this.tbFS_BUNDLEMINWWEIGHT, null);
     this.tbFS_BUNDLEMINWWEIGHT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFS_BUNDLEMINWWEIGHT.Location = new System.Drawing.Point(408, 39);
     this.tbFS_BUNDLEMINWWEIGHT.Name = "tbFS_BUNDLEMINWWEIGHT";
     this.tbFS_BUNDLEMINWWEIGHT.Size = new System.Drawing.Size(57, 21);
     this.tbFS_BUNDLEMINWWEIGHT.TabIndex = 1;
     this.coreBind.SetVerification(this.tbFS_BUNDLEMINWWEIGHT, null);
     //
     // tbFN_WEIGHT
     //
     this.coreBind.SetDatabasecommand(this.tbFN_WEIGHT, null);
     this.tbFN_WEIGHT.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFN_WEIGHT.Location = new System.Drawing.Point(408, 15);
     this.tbFN_WEIGHT.Name = "tbFN_WEIGHT";
     this.tbFN_WEIGHT.Size = new System.Drawing.Size(57, 21);
     this.tbFN_WEIGHT.TabIndex = 2;
     this.coreBind.SetVerification(this.tbFN_WEIGHT, null);
     //
     // tbFN_LENGTH
     //
     this.coreBind.SetDatabasecommand(this.tbFN_LENGTH, null);
     this.tbFN_LENGTH.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbFN_LENGTH.Location = new System.Drawing.Point(251, 15);
     this.tbFN_LENGTH.Name = "tbFN_LENGTH";
     this.tbFN_LENGTH.Size = new System.Drawing.Size(50, 21);
     this.tbFN_LENGTH.TabIndex = 1;
     this.coreBind.SetVerification(this.tbFN_LENGTH, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1008, 503);
     this.ultraGroupBox1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance1.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn1.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11});
     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;
     appearance4.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance4;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance5.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance5;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance6.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance6.TextHAlignAsString = "Center";
     appearance6.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance6;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance7.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance7;
     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;
     appearance8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance8.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance8.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance8.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance8;
     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.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Top;
     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, 0);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1002, 497);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterCellUpdate += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_AfterCellUpdate);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     this.ultraGrid1.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_CellChange);
     //
     // 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.dataColumn1,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "ѡ��";
     this.dataColumn2.ColumnName = "CHECKED";
     this.dataColumn2.DataType = typeof(bool);
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "���(mm)";
     this.dataColumn1.ColumnName = "FS_SPEC";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "����(m)";
     this.dataColumn3.ColumnName = "FN_LENGTH";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "��֧��������(KG)";
     this.dataColumn4.ColumnName = "FN_WEIGHT";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "������װ֧��";
     this.dataColumn5.ColumnName = "FN_BILLETCOUNT";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "ID";
     this.dataColumn6.ColumnName = "FN_ID";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "��������������";
     this.dataColumn7.ColumnName = "FS_MINDIFFERENTRATE";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "��������������";
     this.dataColumn8.ColumnName = "FS_MAXDIFFERENTRATE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "������������(KG)";
     this.dataColumn9.ColumnName = "FS_BUNDLEWEIGHT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "����������������(KG)";
     this.dataColumn10.ColumnName = "FS_BUNDLEMINWWEIGHT";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "����������������(KG)";
     this.dataColumn11.ColumnName = "FS_BUNDLEMAXWWEIGHT";
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 566);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool19.ControlName = "tbqueryFS_SPEC";
     controlContainerTool19.InstanceProps.Width = 91;
     controlContainerTool21.ControlName = "tbqueryFN_LENGTH";
     controlContainerTool21.InstanceProps.Width = 87;
     controlContainerTool1.ControlName = "tbqueryFN_WEIGHT";
     controlContainerTool1.InstanceProps.Width = 141;
     controlContainerTool3.ControlName = "tbqueryFN_BILLETCOUNT";
     controlContainerTool3.InstanceProps.Width = 142;
     buttonTool39.InstanceProps.IsFirstInGroup = true;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     buttonTool42.InstanceProps.IsFirstInGroup = true;
     buttonTool5.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool19,
     controlContainerTool21,
     controlContainerTool1,
     controlContainerTool3,
     buttonTool39,
     buttonTool1,
     buttonTool42,
     buttonTool5});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "tbqueryFS_SPEC";
     controlContainerTool22.SharedPropsInternal.Caption = "���";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 91;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.ControlName = "tbqueryFN_LENGTH";
     controlContainerTool24.SharedPropsInternal.Caption = "����";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Width = 87;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "�޸�";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance124.Image = ((object)(resources.GetObject("appearance124.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance124;
     buttonTool4.SharedPropsInternal.Caption = "ɾ��";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance12.Image = ((object)(resources.GetObject("appearance12.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
     buttonTool6.SharedPropsInternal.Caption = "����";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     labelTool2.SharedPropsInternal.Caption = "������װ֧��";
     labelTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool2.ControlName = "tbqueryFN_WEIGHT";
     controlContainerTool2.SharedPropsInternal.AllowMultipleInstances = true;
     controlContainerTool2.SharedPropsInternal.Caption = "��֧��������";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Width = 141;
     controlContainerTool4.ControlName = "tbqueryFN_BILLETCOUNT";
     controlContainerTool4.SharedPropsInternal.AllowMultipleInstances = true;
     controlContainerTool4.SharedPropsInternal.Caption = "������װ֧��";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.SharedPropsInternal.Width = 142;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool4,
     buttonTool6,
     labelTool2,
     controlContainerTool2,
     controlContainerTool4});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1008, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 566);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1008, 28);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 594);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1008, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // TheoryWeightInfo_BC
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 594);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "TheoryWeightInfo_BC";
     this.Text = "����ϴ�����ϵͳ����������Ӧ��";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.BilletStock_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 48
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(FSMTCheckReelQty));
     Infragistics.Win.UltraWinGrid.UltraGridBand    ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MOCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StepSequenceCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReelNo");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MaterialCode");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReelLeftQty");
     Infragistics.Win.UltraWinGrid.UltraGridColumn  ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ActualQty");
     this.panelTop          = new System.Windows.Forms.Panel();
     this.txtItemCodeQuery  = new UserControl.UCLabelEdit();
     this.btnQuery          = new UserControl.UCButton();
     this.txtSSCodeQuery    = new UserControl.UCLabelEdit();
     this.txtMOCodeQuery    = new UserControl.UCLabelEdit();
     this.panelBottom       = new System.Windows.Forms.Panel();
     this.btnExit           = new UserControl.UCButton();
     this.btnSave           = new UserControl.UCButton();
     this.txtReelNoReturn   = new UserControl.UCLabelEdit();
     this.rdoReturn         = new System.Windows.Forms.RadioButton();
     this.txtReelQty        = new UserControl.UCLabelEdit();
     this.txtReelNoCheckQty = new UserControl.UCLabelEdit();
     this.rdoCheckQty       = new System.Windows.Forms.RadioButton();
     this.panelMiddle       = new System.Windows.Forms.Panel();
     this.gridList          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelTop.SuspendLayout();
     this.panelBottom.SuspendLayout();
     this.panelMiddle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridList)).BeginInit();
     this.SuspendLayout();
     //
     // panelTop
     //
     this.panelTop.Controls.Add(this.txtItemCodeQuery);
     this.panelTop.Controls.Add(this.btnQuery);
     this.panelTop.Controls.Add(this.txtSSCodeQuery);
     this.panelTop.Controls.Add(this.txtMOCodeQuery);
     this.panelTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelTop.Location = new System.Drawing.Point(0, 0);
     this.panelTop.Name     = "panelTop";
     this.panelTop.Size     = new System.Drawing.Size(844, 45);
     this.panelTop.TabIndex = 0;
     //
     // txtItemCodeQuery
     //
     this.txtItemCodeQuery.AllowEditOnlyChecked = true;
     this.txtItemCodeQuery.Caption      = "产品代码";
     this.txtItemCodeQuery.Checked      = false;
     this.txtItemCodeQuery.EditType     = UserControl.EditTypes.String;
     this.txtItemCodeQuery.Location     = new System.Drawing.Point(191, 12);
     this.txtItemCodeQuery.MaxLength    = 40;
     this.txtItemCodeQuery.Multiline    = false;
     this.txtItemCodeQuery.Name         = "txtItemCodeQuery";
     this.txtItemCodeQuery.PasswordChar = '\0';
     this.txtItemCodeQuery.ReadOnly     = true;
     this.txtItemCodeQuery.ShowCheckBox = false;
     this.txtItemCodeQuery.Size         = new System.Drawing.Size(161, 24);
     this.txtItemCodeQuery.TabIndex     = 18;
     this.txtItemCodeQuery.TabNext      = true;
     this.txtItemCodeQuery.Value        = "";
     this.txtItemCodeQuery.WidthType    = UserControl.WidthTypes.Small;
     this.txtItemCodeQuery.XAlign       = 252;
     //
     // btnQuery
     //
     this.btnQuery.BackColor       = System.Drawing.SystemColors.Control;
     this.btnQuery.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnQuery.BackgroundImage")));
     this.btnQuery.ButtonType      = UserControl.ButtonTypes.None;
     this.btnQuery.Caption         = "查询";
     this.btnQuery.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnQuery.Location        = new System.Drawing.Point(545, 12);
     this.btnQuery.Name            = "btnQuery";
     this.btnQuery.Size            = new System.Drawing.Size(88, 22);
     this.btnQuery.TabIndex        = 17;
     this.btnQuery.TabStop         = false;
     this.btnQuery.Click          += new System.EventHandler(this.btnQuery_Click);
     //
     // txtSSCodeQuery
     //
     this.txtSSCodeQuery.AllowEditOnlyChecked = true;
     this.txtSSCodeQuery.Caption         = "产线代码";
     this.txtSSCodeQuery.Checked         = false;
     this.txtSSCodeQuery.EditType        = UserControl.EditTypes.String;
     this.txtSSCodeQuery.Location        = new System.Drawing.Point(368, 12);
     this.txtSSCodeQuery.MaxLength       = 40;
     this.txtSSCodeQuery.Multiline       = false;
     this.txtSSCodeQuery.Name            = "txtSSCodeQuery";
     this.txtSSCodeQuery.PasswordChar    = '\0';
     this.txtSSCodeQuery.ReadOnly        = false;
     this.txtSSCodeQuery.ShowCheckBox    = false;
     this.txtSSCodeQuery.Size            = new System.Drawing.Size(161, 24);
     this.txtSSCodeQuery.TabIndex        = 16;
     this.txtSSCodeQuery.TabNext         = false;
     this.txtSSCodeQuery.Value           = "";
     this.txtSSCodeQuery.WidthType       = UserControl.WidthTypes.Small;
     this.txtSSCodeQuery.XAlign          = 429;
     this.txtSSCodeQuery.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSSCodeQuery_TxtboxKeyPress);
     //
     // txtMOCodeQuery
     //
     this.txtMOCodeQuery.AllowEditOnlyChecked = true;
     this.txtMOCodeQuery.Caption         = "工单代码";
     this.txtMOCodeQuery.Checked         = false;
     this.txtMOCodeQuery.EditType        = UserControl.EditTypes.String;
     this.txtMOCodeQuery.Location        = new System.Drawing.Point(13, 12);
     this.txtMOCodeQuery.MaxLength       = 40;
     this.txtMOCodeQuery.Multiline       = false;
     this.txtMOCodeQuery.Name            = "txtMOCodeQuery";
     this.txtMOCodeQuery.PasswordChar    = '\0';
     this.txtMOCodeQuery.ReadOnly        = false;
     this.txtMOCodeQuery.ShowCheckBox    = false;
     this.txtMOCodeQuery.Size            = new System.Drawing.Size(161, 24);
     this.txtMOCodeQuery.TabIndex        = 15;
     this.txtMOCodeQuery.TabNext         = false;
     this.txtMOCodeQuery.Value           = "";
     this.txtMOCodeQuery.WidthType       = UserControl.WidthTypes.Small;
     this.txtMOCodeQuery.XAlign          = 74;
     this.txtMOCodeQuery.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMOCodeQuery_TxtboxKeyPress);
     //
     // panelBottom
     //
     this.panelBottom.Controls.Add(this.btnExit);
     this.panelBottom.Controls.Add(this.btnSave);
     this.panelBottom.Controls.Add(this.txtReelNoReturn);
     this.panelBottom.Controls.Add(this.rdoReturn);
     this.panelBottom.Controls.Add(this.txtReelQty);
     this.panelBottom.Controls.Add(this.txtReelNoCheckQty);
     this.panelBottom.Controls.Add(this.rdoCheckQty);
     this.panelBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location = new System.Drawing.Point(0, 469);
     this.panelBottom.Name     = "panelBottom";
     this.panelBottom.Size     = new System.Drawing.Size(844, 108);
     this.panelBottom.TabIndex = 1;
     //
     // btnExit
     //
     this.btnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.btnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnExit.BackgroundImage")));
     this.btnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.btnExit.Caption         = "退出";
     this.btnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnExit.Location        = new System.Drawing.Point(320, 74);
     this.btnExit.Name            = "btnExit";
     this.btnExit.Size            = new System.Drawing.Size(88, 22);
     this.btnExit.TabIndex        = 21;
     this.btnExit.TabStop         = false;
     //
     // btnSave
     //
     this.btnSave.BackColor       = System.Drawing.SystemColors.Control;
     this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
     this.btnSave.ButtonType      = UserControl.ButtonTypes.None;
     this.btnSave.Caption         = "保存";
     this.btnSave.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnSave.Location        = new System.Drawing.Point(180, 74);
     this.btnSave.Name            = "btnSave";
     this.btnSave.Size            = new System.Drawing.Size(88, 22);
     this.btnSave.TabIndex        = 20;
     this.btnSave.TabStop         = false;
     this.btnSave.Click          += new System.EventHandler(this.btnSave_Click);
     //
     // txtReelNoReturn
     //
     this.txtReelNoReturn.AllowEditOnlyChecked = true;
     this.txtReelNoReturn.Caption         = "料卷编号";
     this.txtReelNoReturn.Checked         = false;
     this.txtReelNoReturn.EditType        = UserControl.EditTypes.String;
     this.txtReelNoReturn.Enabled         = false;
     this.txtReelNoReturn.Location        = new System.Drawing.Point(66, 44);
     this.txtReelNoReturn.MaxLength       = 40;
     this.txtReelNoReturn.Multiline       = false;
     this.txtReelNoReturn.Name            = "txtReelNoReturn";
     this.txtReelNoReturn.PasswordChar    = '\0';
     this.txtReelNoReturn.ReadOnly        = false;
     this.txtReelNoReturn.ShowCheckBox    = false;
     this.txtReelNoReturn.Size            = new System.Drawing.Size(161, 24);
     this.txtReelNoReturn.TabIndex        = 19;
     this.txtReelNoReturn.TabNext         = true;
     this.txtReelNoReturn.Value           = "";
     this.txtReelNoReturn.WidthType       = UserControl.WidthTypes.Small;
     this.txtReelNoReturn.XAlign          = 127;
     this.txtReelNoReturn.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtReelNoReturn_TxtboxKeyPress);
     //
     // rdoReturn
     //
     this.rdoReturn.Location = new System.Drawing.Point(13, 44);
     this.rdoReturn.Name     = "rdoReturn";
     this.rdoReturn.Size     = new System.Drawing.Size(55, 24);
     this.rdoReturn.TabIndex = 18;
     this.rdoReturn.Text     = "退料";
     //
     // txtReelQty
     //
     this.txtReelQty.AllowEditOnlyChecked = true;
     this.txtReelQty.Caption         = "实际数量";
     this.txtReelQty.Checked         = false;
     this.txtReelQty.EditType        = UserControl.EditTypes.Integer;
     this.txtReelQty.Location        = new System.Drawing.Point(247, 14);
     this.txtReelQty.MaxLength       = 40;
     this.txtReelQty.Multiline       = false;
     this.txtReelQty.Name            = "txtReelQty";
     this.txtReelQty.PasswordChar    = '\0';
     this.txtReelQty.ReadOnly        = false;
     this.txtReelQty.ShowCheckBox    = false;
     this.txtReelQty.Size            = new System.Drawing.Size(161, 24);
     this.txtReelQty.TabIndex        = 17;
     this.txtReelQty.TabNext         = true;
     this.txtReelQty.Value           = "";
     this.txtReelQty.WidthType       = UserControl.WidthTypes.Small;
     this.txtReelQty.XAlign          = 308;
     this.txtReelQty.TxtboxKeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtReelQty_TxtboxKeyPress);
     //
     // txtReelNoCheckQty
     //
     this.txtReelNoCheckQty.AllowEditOnlyChecked = true;
     this.txtReelNoCheckQty.Caption      = "料卷编号";
     this.txtReelNoCheckQty.Checked      = false;
     this.txtReelNoCheckQty.EditType     = UserControl.EditTypes.String;
     this.txtReelNoCheckQty.Location     = new System.Drawing.Point(66, 14);
     this.txtReelNoCheckQty.MaxLength    = 40;
     this.txtReelNoCheckQty.Multiline    = false;
     this.txtReelNoCheckQty.Name         = "txtReelNoCheckQty";
     this.txtReelNoCheckQty.PasswordChar = '\0';
     this.txtReelNoCheckQty.ReadOnly     = false;
     this.txtReelNoCheckQty.ShowCheckBox = false;
     this.txtReelNoCheckQty.Size         = new System.Drawing.Size(161, 24);
     this.txtReelNoCheckQty.TabIndex     = 16;
     this.txtReelNoCheckQty.TabNext      = true;
     this.txtReelNoCheckQty.Value        = "";
     this.txtReelNoCheckQty.WidthType    = UserControl.WidthTypes.Small;
     this.txtReelNoCheckQty.XAlign       = 127;
     //
     // rdoCheckQty
     //
     this.rdoCheckQty.Checked         = true;
     this.rdoCheckQty.Location        = new System.Drawing.Point(13, 14);
     this.rdoCheckQty.Name            = "rdoCheckQty";
     this.rdoCheckQty.Size            = new System.Drawing.Size(55, 24);
     this.rdoCheckQty.TabIndex        = 0;
     this.rdoCheckQty.TabStop         = true;
     this.rdoCheckQty.Text            = "点料";
     this.rdoCheckQty.CheckedChanged += new System.EventHandler(this.rdoCheckQty_CheckedChanged);
     //
     // panelMiddle
     //
     this.panelMiddle.Controls.Add(this.gridList);
     this.panelMiddle.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelMiddle.Location = new System.Drawing.Point(0, 45);
     this.panelMiddle.Name     = "panelMiddle";
     this.panelMiddle.Size     = new System.Drawing.Size(844, 424);
     this.panelMiddle.TabIndex = 2;
     //
     // gridList
     //
     this.gridList.Cursor                    = System.Windows.Forms.Cursors.Default;
     ultraGridColumn1.Header.Caption         = "工单代码";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Width                  = 95;
     ultraGridColumn2.Header.Caption         = "产线代码";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Width                  = 76;
     ultraGridColumn3.Header.Caption         = "料卷编号";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn4.Header.Caption         = "物料代码";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn5.Header.Caption         = "剩余数量";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.Width                  = 78;
     ultraGridColumn6.Header.Caption         = "点料数量";
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.Width                  = 81;
     ultraGridBand1.Columns.AddRange(new object[] {
         ultraGridColumn1,
         ultraGridColumn2,
         ultraGridColumn3,
         ultraGridColumn4,
         ultraGridColumn5,
         ultraGridColumn6
     });
     this.gridList.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.gridList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridList.Location = new System.Drawing.Point(0, 0);
     this.gridList.Name     = "gridList";
     this.gridList.Size     = new System.Drawing.Size(844, 424);
     this.gridList.TabIndex = 0;
     //
     // FSMTCheckReelQty
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(844, 577);
     this.Controls.Add(this.panelMiddle);
     this.Controls.Add(this.panelBottom);
     this.Controls.Add(this.panelTop);
     this.Name    = "FSMTCheckReelQty";
     this.Text    = "料卷点料/退料";
     this.Load   += new System.EventHandler(this.FSMTCheckReelQty_Load);
     this.Closed += new System.EventHandler(this.FSMTCheckReelQty_Closed);
     this.panelTop.ResumeLayout(false);
     this.panelBottom.ResumeLayout(false);
     this.panelMiddle.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridList)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 49
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FfunTestInfo));
     this.txtFunTestQty = new UserControl.UCLabelEdit();
     this.ultraGridMain = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.btnExit       = new UserControl.UCButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridMain)).BeginInit();
     this.SuspendLayout();
     //
     // txtFunTestQty
     //
     this.txtFunTestQty.AllowEditOnlyChecked = true;
     this.txtFunTestQty.Caption      = "功能测试数量";
     this.txtFunTestQty.Checked      = false;
     this.txtFunTestQty.EditType     = UserControl.EditTypes.Integer;
     this.txtFunTestQty.Location     = new System.Drawing.Point(24, 16);
     this.txtFunTestQty.MaxLength    = 40;
     this.txtFunTestQty.Multiline    = false;
     this.txtFunTestQty.Name         = "txtFunTestQty";
     this.txtFunTestQty.PasswordChar = '\0';
     this.txtFunTestQty.ReadOnly     = true;
     this.txtFunTestQty.ShowCheckBox = false;
     this.txtFunTestQty.Size         = new System.Drawing.Size(220, 24);
     this.txtFunTestQty.TabIndex     = 1;
     this.txtFunTestQty.TabNext      = true;
     this.txtFunTestQty.Value        = "";
     this.txtFunTestQty.WidthType    = UserControl.WidthTypes.Normal;
     this.txtFunTestQty.XAlign       = 111;
     //
     // ultraGridMain
     //
     this.ultraGridMain.Cursor            = System.Windows.Forms.Cursors.Default;
     this.ultraGridMain.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.ultraGridMain.Location          = new System.Drawing.Point(16, 48);
     this.ultraGridMain.Name              = "ultraGridMain";
     this.ultraGridMain.Size              = new System.Drawing.Size(464, 240);
     this.ultraGridMain.TabIndex          = 8;
     this.ultraGridMain.Text              = "功能测试产品";
     this.ultraGridMain.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGridMain_InitializeLayout);
     //
     // btnExit
     //
     this.btnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.btnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnExit.BackgroundImage")));
     this.btnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.btnExit.Caption         = "退出";
     this.btnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnExit.Location        = new System.Drawing.Point(384, 16);
     this.btnExit.Name            = "btnExit";
     this.btnExit.Size            = new System.Drawing.Size(88, 22);
     this.btnExit.TabIndex        = 10;
     //
     // FfunTestInfo
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(496, 293);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.ultraGridMain);
     this.Controls.Add(this.txtFunTestQty);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FfunTestInfo";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "功能测试不良信息";
     this.Load           += new System.EventHandler(this.FfunTestInfo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGridMain)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 50
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);
 }
Ejemplo n.º 51
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("汽车衡历史数据表", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SUPPLIERNAME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPOINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPOINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TAREDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GROSSDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FULLLABELID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_KHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADVISESPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZJY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 2842594);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 2842595);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 2842596);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup4 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup3", 2842597);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup5 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup4", 2842598);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup6 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup5", 2842599);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup7 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup6", 2842600);
     Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SUPPLIERNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERSTORE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TYPENAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPOINTNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPOINTNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_GROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_TAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_NETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_TAREDATETIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_GROSSDATETIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_GROSSPOINT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TAREPOINT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_COUNT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_FULLLABELID", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKBL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_KHJZ", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_ADVISESPEC", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_ZZJY", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup0", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup1", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup2", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup3", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup4", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "NewGroup5", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = 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", 1, true, "汽车衡历史数据表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GROSSWEIGHT", 13, true, "汽车衡历史数据表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_TAREWEIGHT", 14, true, "汽车衡历史数据表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 15, true, "汽车衡历史数据表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings5 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FS_KHJZ", 28, true, "汽车衡历史数据表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FS_YKL", 26, true, "汽车衡历史数据表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = 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.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid3 = 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.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn24 = 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.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.tb_sendGross = new System.Windows.Forms.TextBox();
     this.tb_sendTare = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.button4 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.label20 = new System.Windows.Forms.Label();
     this.tbYKBL = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.tbYKL = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.tbBZ = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.tbCount = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.tbStoveNo = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.tbContractNo = new System.Windows.Forms.TextBox();
     this.cbProvider = new System.Windows.Forms.ComboBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.tbTareWeight = new System.Windows.Forms.TextBox();
     this.dtTareTime = new System.Windows.Forms.DateTimePicker();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbSHDW = new System.Windows.Forms.ComboBox();
     this.label12 = new System.Windows.Forms.Label();
     this.cbFHDW = new System.Windows.Forms.ComboBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cbCYDW = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.cbFlow = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cbWLMC = new System.Windows.Forms.ComboBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tbReceiverPlace = new System.Windows.Forms.TextBox();
     this.tbSenderPlace = new System.Windows.Forms.TextBox();
     this.tbGrossWeight = new System.Windows.Forms.TextBox();
     this.dtGrossTime = new System.Windows.Forms.DateTimePicker();
     this.tbCardNo = new System.Windows.Forms.TextBox();
     this.tbCarNo = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.cbBF = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     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_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
     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, 26);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(990, 448);
     this.ultraPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
     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(990, 448);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "历史计量数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "汽车衡历史数据表";
     this.ultraGrid3.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 64;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 66;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 0;
     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 = 68;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.Header.VisiblePosition = 15;
     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 = 16;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.Header.VisiblePosition = 17;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn17.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.Header.VisiblePosition = 18;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn19.Header.VisiblePosition = 19;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn19.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.Header.VisiblePosition = 20;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.Header.VisiblePosition = 21;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.Header.VisiblePosition = 22;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.Header.VisiblePosition = 23;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 70;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn24.Header.VisiblePosition = 14;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(114, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 72;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 74;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn27.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn28.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 58;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 60;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn33.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn34.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn35.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 0;
     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 = 2;
     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.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn40.RowLayoutColumnInfo.ParentGroupKey = "NewGroup5";
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn41.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn42.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn43.RowLayoutColumnInfo.ParentGroupKey = "NewGroup6";
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.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,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43});
     ultraGridGroup1.Header.Caption = "重量";
     ultraGridGroup1.Key = "NewGroup0";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 18;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup2.Header.Caption = "毛重";
     ultraGridGroup2.Key = "NewGroup1";
     ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 58;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup3.Header.Caption = "皮重";
     ultraGridGroup3.Key = "NewGroup2";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 30;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup4.Header.Caption = "扣渣";
     ultraGridGroup4.Key = "NewGroup3";
     ultraGridGroup4.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup4.RowLayoutGroupInfo.OriginX = 36;
     ultraGridGroup4.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup4.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup4.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup5.Header.Caption = "卸货";
     ultraGridGroup5.Key = "NewGroup4";
     ultraGridGroup5.RowLayoutGroupInfo.OriginX = 42;
     ultraGridGroup5.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup5.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup5.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup6.Header.Caption = "复磅";
     ultraGridGroup6.Key = "NewGroup5";
     ultraGridGroup6.RowLayoutGroupInfo.OriginX = 50;
     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 = 4;
     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;
     rowLayoutColumnInfo24.OriginX = 4;
     rowLayoutColumnInfo24.OriginY = 0;
     rowLayoutColumnInfo24.PreferredCellSize = new System.Drawing.Size(60, 0);
     rowLayoutColumnInfo24.SpanX = 1;
     rowLayoutColumnInfo24.SpanY = 1;
     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});
     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 = appearance7;
     summarySettings2.DisplayFormat = "毛重{0}吨";
     summarySettings2.GroupBySummaryValueAppearance = appearance8;
     summarySettings3.DisplayFormat = "皮重{0}吨";
     summarySettings3.GroupBySummaryValueAppearance = appearance9;
     summarySettings4.DisplayFormat = "净重{0}吨";
     summarySettings4.GroupBySummaryValueAppearance = appearance10;
     summarySettings5.DisplayFormat = "扣后净重{0}吨";
     summarySettings5.GroupBySummaryValueAppearance = appearance11;
     summarySettings6.DisplayFormat = "应扣量{0}吨";
     summarySettings6.GroupBySummaryValueAppearance = appearance12;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4,
     summarySettings5,
     summarySettings6});
     ultraGridBand1.SummaryFooterCaption = "合计";
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.GroupByBox.Prompt = "拖动列标题到此,按该列进行分组";
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 8;
     appearance13.FontData.BoldAsString = "True";
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance13;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance14.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance14;
     appearance15.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance15;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance16.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance16.TextHAlignAsString = "Center";
     appearance16.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance16;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid3.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid3.DisplayLayout.Override.MinRowHeight = 21;
     appearance17.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance17;
     appearance18.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance18;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance19.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance19.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance19.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance19;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid3.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(984, 427);
     this.ultraGrid3.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid3_DoubleClickRow);
     //
     // 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.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn15,
     this.dataColumn17,
     this.dataColumn12,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn13,
     this.dataColumn20,
     this.dataColumn14,
     this.dataColumn21,
     this.dataColumn16,
     this.dataColumn22,
     this.dataColumn24,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn23,
     this.dataColumn25,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43});
     this.dataTable1.TableName = "汽车衡历史数据表";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "车证卡号";
     this.dataColumn2.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "车号";
     this.dataColumn3.ColumnName = "FS_CARNO";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "物料名称";
     this.dataColumn4.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "发货单位";
     this.dataColumn5.ColumnName = "FS_SUPPLIERNAME";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "收货单位";
     this.dataColumn6.ColumnName = "FS_RECEIVER";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "发货地点";
     this.dataColumn7.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "收货地点";
     this.dataColumn8.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "承运单位";
     this.dataColumn9.ColumnName = "FS_TRANSNAME";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "流向";
     this.dataColumn10.ColumnName = "FS_TYPENAME";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "毛重计量点";
     this.dataColumn11.ColumnName = "FS_GROSSPOINTNAME";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "标识";
     this.dataColumn15.ColumnName = "FS_MEMO";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "皮重计量点";
     this.dataColumn17.ColumnName = "FS_TAREPOINTNAME";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "毛重";
     this.dataColumn12.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "皮重";
     this.dataColumn18.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "净重";
     this.dataColumn19.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "毛重计量员";
     this.dataColumn13.ColumnName = "FS_GROSSPERSON";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "皮重计量员";
     this.dataColumn20.ColumnName = "FS_TAREPERSON";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "皮重计量时间";
     this.dataColumn14.ColumnName = "FD_TAREDATETIME";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "毛重计量时间";
     this.dataColumn21.ColumnName = "FD_GROSSDATETIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "FS_GROSSPOINT";
     this.dataColumn16.ColumnName = "FS_GROSSPOINT";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FS_TAREPOINT";
     //
     // dataColumn24
     //
     this.dataColumn24.Caption = "备注";
     this.dataColumn24.ColumnName = "FS_BZ";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "支数";
     this.dataColumn26.ColumnName = "FN_COUNT";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "合同号";
     this.dataColumn27.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "条码号";
     this.dataColumn28.ColumnName = "FS_FULLLABELID";
     //
     // dataColumn29
     //
     this.dataColumn29.Caption = "应扣量";
     this.dataColumn29.ColumnName = "FS_YKL";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "应扣比例";
     this.dataColumn30.ColumnName = "FS_YKBL";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "扣后净重";
     this.dataColumn31.ColumnName = "FS_KHJZ";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "建议轧制规格";
     this.dataColumn32.ColumnName = "FS_ADVISESPEC";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "轧制建议";
     this.dataColumn33.ColumnName = "FS_ZZJY";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "炉号";
     this.dataColumn23.ColumnName = "FS_STOVENO";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "卸车员";
     this.dataColumn25.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_UNLOADFLAG";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "复磅确认员";
     this.dataColumn37.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "复磅确认地点";
     this.dataColumn38.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "复磅确认时间";
     this.dataColumn39.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "复磅确认";
     this.dataColumn40.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "对方毛重";
     this.dataColumn41.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "对方皮重";
     this.dataColumn42.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "对方净重";
     this.dataColumn43.ColumnName = "FN_SENDNETWEIGHT";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox3);
     this.ultraGroupBox1.Controls.Add(this.button4);
     this.ultraGroupBox1.Controls.Add(this.button3);
     this.ultraGroupBox1.Controls.Add(this.button2);
     this.ultraGroupBox1.Controls.Add(this.button1);
     this.ultraGroupBox1.Controls.Add(this.label20);
     this.ultraGroupBox1.Controls.Add(this.tbYKBL);
     this.ultraGroupBox1.Controls.Add(this.label21);
     this.ultraGroupBox1.Controls.Add(this.tbYKL);
     this.ultraGroupBox1.Controls.Add(this.label19);
     this.ultraGroupBox1.Controls.Add(this.tbBZ);
     this.ultraGroupBox1.Controls.Add(this.label18);
     this.ultraGroupBox1.Controls.Add(this.tbCount);
     this.ultraGroupBox1.Controls.Add(this.label17);
     this.ultraGroupBox1.Controls.Add(this.tbStoveNo);
     this.ultraGroupBox1.Controls.Add(this.label16);
     this.ultraGroupBox1.Controls.Add(this.tbContractNo);
     this.ultraGroupBox1.Controls.Add(this.cbProvider);
     this.ultraGroupBox1.Controls.Add(this.label15);
     this.ultraGroupBox1.Controls.Add(this.label13);
     this.ultraGroupBox1.Controls.Add(this.label14);
     this.ultraGroupBox1.Controls.Add(this.tbTareWeight);
     this.ultraGroupBox1.Controls.Add(this.dtTareTime);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.label4);
     this.ultraGroupBox1.Controls.Add(this.label7);
     this.ultraGroupBox1.Controls.Add(this.label6);
     this.ultraGroupBox1.Controls.Add(this.cbSHDW);
     this.ultraGroupBox1.Controls.Add(this.label12);
     this.ultraGroupBox1.Controls.Add(this.cbFHDW);
     this.ultraGroupBox1.Controls.Add(this.label11);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.cbCYDW);
     this.ultraGroupBox1.Controls.Add(this.label10);
     this.ultraGroupBox1.Controls.Add(this.cbFlow);
     this.ultraGroupBox1.Controls.Add(this.label9);
     this.ultraGroupBox1.Controls.Add(this.cbWLMC);
     this.ultraGroupBox1.Controls.Add(this.label8);
     this.ultraGroupBox1.Controls.Add(this.tbReceiverPlace);
     this.ultraGroupBox1.Controls.Add(this.tbSenderPlace);
     this.ultraGroupBox1.Controls.Add(this.tbGrossWeight);
     this.ultraGroupBox1.Controls.Add(this.dtGrossTime);
     this.ultraGroupBox1.Controls.Add(this.tbCardNo);
     this.ultraGroupBox1.Controls.Add(this.tbCarNo);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.cbBF);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(990, 190);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.tb_sendGross);
     this.ultraGroupBox3.Controls.Add(this.tb_sendTare);
     this.ultraGroupBox3.Controls.Add(this.label23);
     this.ultraGroupBox3.Controls.Add(this.label22);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox3, null);
     this.ultraGroupBox3.Location = new System.Drawing.Point(678, 78);
     this.ultraGroupBox3.Name = "ultraGroupBox3";
     this.ultraGroupBox3.Size = new System.Drawing.Size(288, 64);
     this.ultraGroupBox3.TabIndex = 759;
     this.ultraGroupBox3.Text = "对方重量";
     this.coreBind.SetVerification(this.ultraGroupBox3, null);
     //
     // tb_sendGross
     //
     this.coreBind.SetDatabasecommand(this.tb_sendGross, null);
     this.tb_sendGross.Location = new System.Drawing.Point(35, 30);
     this.tb_sendGross.Name = "tb_sendGross";
     this.tb_sendGross.Size = new System.Drawing.Size(48, 21);
     this.tb_sendGross.TabIndex = 746;
     this.coreBind.SetVerification(this.tb_sendGross, null);
     //
     // tb_sendTare
     //
     this.coreBind.SetDatabasecommand(this.tb_sendTare, null);
     this.tb_sendTare.Location = new System.Drawing.Point(153, 30);
     this.tb_sendTare.Name = "tb_sendTare";
     this.tb_sendTare.Size = new System.Drawing.Size(49, 21);
     this.tb_sendTare.TabIndex = 744;
     this.coreBind.SetVerification(this.tb_sendTare, null);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.Location = new System.Drawing.Point(131, 35);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(17, 12);
     this.label23.TabIndex = 742;
     this.label23.Text = "皮";
     this.coreBind.SetVerification(this.label23, null);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label22, null);
     this.label22.Location = new System.Drawing.Point(12, 35);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(17, 12);
     this.label22.TabIndex = 741;
     this.label22.Text = "毛";
     this.coreBind.SetVerification(this.label22, null);
     this.label22.Click += new System.EventHandler(this.label22_Click);
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button4, null);
     this.button4.Location = new System.Drawing.Point(449, 62);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(30, 21);
     this.button4.TabIndex = 758;
     this.button4.Tag = "Trans";
     this.button4.Text = "..";
     this.button4.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button4, null);
     this.button4.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button3, null);
     this.button3.Location = new System.Drawing.Point(448, 96);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(30, 21);
     this.button3.TabIndex = 757;
     this.button3.Tag = "Receiver";
     this.button3.Text = "..";
     this.button3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button3, null);
     this.button3.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button2, null);
     this.button2.Location = new System.Drawing.Point(200, 98);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(30, 21);
     this.button2.TabIndex = 756;
     this.button2.Tag = "Sender";
     this.button2.Text = "..";
     this.button2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button2, null);
     this.button2.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button1, null);
     this.button1.Location = new System.Drawing.Point(200, 63);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(30, 21);
     this.button1.TabIndex = 754;
     this.button1.Tag = "Material";
     this.button1.Text = "..";
     this.button1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button1, null);
     this.button1.Click += new System.EventHandler(this.moreBtn_Click);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label20, null);
     this.label20.Location = new System.Drawing.Point(117, 168);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(53, 12);
     this.label20.TabIndex = 748;
     this.label20.Text = "应扣比例";
     this.coreBind.SetVerification(this.label20, null);
     this.label20.Visible = false;
     //
     // tbYKBL
     //
     this.coreBind.SetDatabasecommand(this.tbYKBL, null);
     this.tbYKBL.Location = new System.Drawing.Point(173, 163);
     this.tbYKBL.Name = "tbYKBL";
     this.tbYKBL.Size = new System.Drawing.Size(46, 21);
     this.tbYKBL.TabIndex = 747;
     this.coreBind.SetVerification(this.tbYKBL, null);
     this.tbYKBL.Visible = false;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label21, null);
     this.label21.Location = new System.Drawing.Point(10, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 12);
     this.label21.TabIndex = 746;
     this.label21.Text = "应扣量";
     this.coreBind.SetVerification(this.label21, null);
     this.label21.Visible = false;
     //
     // tbYKL
     //
     this.coreBind.SetDatabasecommand(this.tbYKL, null);
     this.tbYKL.Location = new System.Drawing.Point(65, 163);
     this.tbYKL.Name = "tbYKL";
     this.tbYKL.Size = new System.Drawing.Size(46, 21);
     this.tbYKL.TabIndex = 745;
     this.coreBind.SetVerification(this.tbYKL, null);
     this.tbYKL.Visible = false;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.Location = new System.Drawing.Point(502, 100);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(29, 12);
     this.label19.TabIndex = 744;
     this.label19.Text = "备注";
     this.coreBind.SetVerification(this.label19, null);
     //
     // tbBZ
     //
     this.coreBind.SetDatabasecommand(this.tbBZ, null);
     this.tbBZ.Location = new System.Drawing.Point(551, 95);
     this.tbBZ.Name = "tbBZ";
     this.tbBZ.Size = new System.Drawing.Size(101, 21);
     this.tbBZ.TabIndex = 743;
     this.coreBind.SetVerification(this.tbBZ, null);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label18, null);
     this.label18.Location = new System.Drawing.Point(844, 28);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(29, 12);
     this.label18.TabIndex = 742;
     this.label18.Text = "支数";
     this.coreBind.SetVerification(this.label18, null);
     //
     // tbCount
     //
     this.coreBind.SetDatabasecommand(this.tbCount, null);
     this.tbCount.Location = new System.Drawing.Point(883, 23);
     this.tbCount.Name = "tbCount";
     this.tbCount.Size = new System.Drawing.Size(99, 21);
     this.tbCount.TabIndex = 741;
     this.coreBind.SetVerification(this.tbCount, null);
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label17, null);
     this.label17.Location = new System.Drawing.Point(676, 29);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(29, 12);
     this.label17.TabIndex = 740;
     this.label17.Text = "炉号";
     this.coreBind.SetVerification(this.label17, null);
     //
     // tbStoveNo
     //
     this.coreBind.SetDatabasecommand(this.tbStoveNo, null);
     this.tbStoveNo.Location = new System.Drawing.Point(723, 24);
     this.tbStoveNo.Name = "tbStoveNo";
     this.tbStoveNo.Size = new System.Drawing.Size(99, 21);
     this.tbStoveNo.TabIndex = 739;
     this.coreBind.SetVerification(this.tbStoveNo, null);
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.Location = new System.Drawing.Point(496, 130);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(41, 12);
     this.label16.TabIndex = 738;
     this.label16.Text = "合同号";
     this.coreBind.SetVerification(this.label16, null);
     //
     // tbContractNo
     //
     this.coreBind.SetDatabasecommand(this.tbContractNo, null);
     this.tbContractNo.Location = new System.Drawing.Point(551, 127);
     this.tbContractNo.Name = "tbContractNo";
     this.tbContractNo.Size = new System.Drawing.Size(101, 21);
     this.tbContractNo.TabIndex = 737;
     this.coreBind.SetVerification(this.tbContractNo, null);
     //
     // cbProvider
     //
     this.cbProvider.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbProvider, null);
     this.cbProvider.FormattingEnabled = true;
     this.cbProvider.Location = new System.Drawing.Point(833, 174);
     this.cbProvider.Name = "cbProvider";
     this.cbProvider.Size = new System.Drawing.Size(116, 20);
     this.cbProvider.TabIndex = 736;
     this.coreBind.SetVerification(this.cbProvider, null);
     this.cbProvider.Visible = false;
     this.cbProvider.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.Location = new System.Drawing.Point(774, 178);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(53, 12);
     this.label15.TabIndex = 735;
     this.label15.Text = "供应单位";
     this.coreBind.SetVerification(this.label15, null);
     this.label15.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label13, null);
     this.label13.Location = new System.Drawing.Point(450, 167);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(29, 12);
     this.label13.TabIndex = 734;
     this.label13.Text = "皮重";
     this.coreBind.SetVerification(this.label13, null);
     this.label13.Visible = false;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.Location = new System.Drawing.Point(230, 168);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(53, 12);
     this.label14.TabIndex = 733;
     this.label14.Text = "皮重时间";
     this.coreBind.SetVerification(this.label14, null);
     this.label14.Visible = false;
     //
     // tbTareWeight
     //
     this.coreBind.SetDatabasecommand(this.tbTareWeight, null);
     this.tbTareWeight.Location = new System.Drawing.Point(496, 164);
     this.tbTareWeight.Name = "tbTareWeight";
     this.tbTareWeight.Size = new System.Drawing.Size(46, 21);
     this.tbTareWeight.TabIndex = 732;
     this.coreBind.SetVerification(this.tbTareWeight, null);
     this.tbTareWeight.Visible = false;
     //
     // dtTareTime
     //
     this.dtTareTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dtTareTime, null);
     this.dtTareTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtTareTime.Location = new System.Drawing.Point(299, 164);
     this.dtTareTime.Name = "dtTareTime";
     this.dtTareTime.Size = new System.Drawing.Size(143, 21);
     this.dtTareTime.TabIndex = 731;
     this.coreBind.SetVerification(this.dtTareTime, null);
     this.dtTareTime.Visible = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Location = new System.Drawing.Point(554, 168);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(29, 12);
     this.label5.TabIndex = 730;
     this.label5.Text = "毛重";
     this.coreBind.SetVerification(this.label5, null);
     this.label5.Visible = false;
     //
     // 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(661, 166);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(53, 12);
     this.label4.TabIndex = 729;
     this.label4.Text = "毛重时间";
     this.coreBind.SetVerification(this.label4, null);
     this.label4.Visible = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Location = new System.Drawing.Point(262, 130);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(53, 12);
     this.label7.TabIndex = 728;
     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.Location = new System.Drawing.Point(11, 130);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 12);
     this.label6.TabIndex = 727;
     this.label6.Text = "发货地点";
     this.coreBind.SetVerification(this.label6, null);
     //
     // cbSHDW
     //
     this.cbSHDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbSHDW, null);
     this.cbSHDW.FormattingEnabled = true;
     this.cbSHDW.Location = new System.Drawing.Point(326, 96);
     this.cbSHDW.Name = "cbSHDW";
     this.cbSHDW.Size = new System.Drawing.Size(116, 20);
     this.cbSHDW.TabIndex = 726;
     this.coreBind.SetVerification(this.cbSHDW, null);
     this.cbSHDW.Leave += new System.EventHandler(this.cbSHDW_Leave);
     this.cbSHDW.TextChanged += new System.EventHandler(this.cbSHDW_TextChanged);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.Location = new System.Drawing.Point(262, 99);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(53, 12);
     this.label12.TabIndex = 725;
     this.label12.Text = "收货单位";
     this.coreBind.SetVerification(this.label12, null);
     //
     // cbFHDW
     //
     this.cbFHDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbFHDW, null);
     this.cbFHDW.FormattingEnabled = true;
     this.cbFHDW.Location = new System.Drawing.Point(78, 98);
     this.cbFHDW.Name = "cbFHDW";
     this.cbFHDW.Size = new System.Drawing.Size(116, 20);
     this.cbFHDW.TabIndex = 724;
     this.coreBind.SetVerification(this.cbFHDW, null);
     this.cbFHDW.Leave += new System.EventHandler(this.cbFHDW_Leave);
     this.cbFHDW.TextChanged += new System.EventHandler(this.cbFHDW_TextChanged);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Location = new System.Drawing.Point(11, 102);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(53, 12);
     this.label11.TabIndex = 723;
     this.label11.Text = "发货单位";
     this.coreBind.SetVerification(this.label11, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(507, 29);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 722;
     this.label2.Text = "车号";
     this.coreBind.SetVerification(this.label2, null);
     //
     // cbCYDW
     //
     this.cbCYDW.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbCYDW, null);
     this.cbCYDW.FormattingEnabled = true;
     this.cbCYDW.Location = new System.Drawing.Point(326, 62);
     this.cbCYDW.Name = "cbCYDW";
     this.cbCYDW.Size = new System.Drawing.Size(116, 20);
     this.cbCYDW.TabIndex = 721;
     this.coreBind.SetVerification(this.cbCYDW, null);
     this.cbCYDW.Leave += new System.EventHandler(this.cbCYDW_Leave);
     this.cbCYDW.TextChanged += new System.EventHandler(this.cbCYDW_TextChanged);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Location = new System.Drawing.Point(262, 67);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(53, 12);
     this.label10.TabIndex = 720;
     this.label10.Text = "承运单位";
     this.coreBind.SetVerification(this.label10, null);
     //
     // cbFlow
     //
     this.cbFlow.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbFlow, null);
     this.cbFlow.FormattingEnabled = true;
     this.cbFlow.Location = new System.Drawing.Point(551, 62);
     this.cbFlow.Name = "cbFlow";
     this.cbFlow.Size = new System.Drawing.Size(101, 20);
     this.cbFlow.TabIndex = 719;
     this.coreBind.SetVerification(this.cbFlow, null);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Location = new System.Drawing.Point(504, 67);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(29, 12);
     this.label9.TabIndex = 718;
     this.label9.Text = "流向";
     this.coreBind.SetVerification(this.label9, null);
     //
     // cbWLMC
     //
     this.cbWLMC.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.coreBind.SetDatabasecommand(this.cbWLMC, null);
     this.cbWLMC.FormattingEnabled = true;
     this.cbWLMC.Location = new System.Drawing.Point(78, 62);
     this.cbWLMC.Name = "cbWLMC";
     this.cbWLMC.Size = new System.Drawing.Size(116, 20);
     this.cbWLMC.TabIndex = 717;
     this.coreBind.SetVerification(this.cbWLMC, null);
     this.cbWLMC.Leave += new System.EventHandler(this.cbWLMC_Leave);
     this.cbWLMC.TextChanged += new System.EventHandler(this.cbWLMC_TextChanged);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Location = new System.Drawing.Point(11, 67);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(53, 12);
     this.label8.TabIndex = 716;
     this.label8.Text = "物料名称";
     this.coreBind.SetVerification(this.label8, null);
     //
     // tbReceiverPlace
     //
     this.coreBind.SetDatabasecommand(this.tbReceiverPlace, null);
     this.tbReceiverPlace.Location = new System.Drawing.Point(326, 127);
     this.tbReceiverPlace.Name = "tbReceiverPlace";
     this.tbReceiverPlace.Size = new System.Drawing.Size(116, 21);
     this.tbReceiverPlace.TabIndex = 715;
     this.coreBind.SetVerification(this.tbReceiverPlace, null);
     //
     // tbSenderPlace
     //
     this.coreBind.SetDatabasecommand(this.tbSenderPlace, null);
     this.tbSenderPlace.Location = new System.Drawing.Point(78, 127);
     this.tbSenderPlace.Name = "tbSenderPlace";
     this.tbSenderPlace.Size = new System.Drawing.Size(116, 21);
     this.tbSenderPlace.TabIndex = 713;
     this.coreBind.SetVerification(this.tbSenderPlace, null);
     //
     // tbGrossWeight
     //
     this.coreBind.SetDatabasecommand(this.tbGrossWeight, null);
     this.tbGrossWeight.Location = new System.Drawing.Point(600, 163);
     this.tbGrossWeight.Name = "tbGrossWeight";
     this.tbGrossWeight.Size = new System.Drawing.Size(46, 21);
     this.tbGrossWeight.TabIndex = 711;
     this.coreBind.SetVerification(this.tbGrossWeight, null);
     this.tbGrossWeight.Visible = false;
     //
     // dtGrossTime
     //
     this.dtGrossTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.coreBind.SetDatabasecommand(this.dtGrossTime, null);
     this.dtGrossTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtGrossTime.Location = new System.Drawing.Point(730, 162);
     this.dtGrossTime.Name = "dtGrossTime";
     this.dtGrossTime.Size = new System.Drawing.Size(143, 21);
     this.dtGrossTime.TabIndex = 709;
     this.coreBind.SetVerification(this.dtGrossTime, null);
     this.dtGrossTime.Visible = false;
     //
     // tbCardNo
     //
     this.coreBind.SetDatabasecommand(this.tbCardNo, null);
     this.tbCardNo.Location = new System.Drawing.Point(326, 26);
     this.tbCardNo.Name = "tbCardNo";
     this.tbCardNo.Size = new System.Drawing.Size(116, 21);
     this.tbCardNo.TabIndex = 706;
     this.coreBind.SetVerification(this.tbCardNo, null);
     //
     // tbCarNo
     //
     this.coreBind.SetDatabasecommand(this.tbCarNo, null);
     this.tbCarNo.Location = new System.Drawing.Point(553, 24);
     this.tbCarNo.Name = "tbCarNo";
     this.tbCarNo.Size = new System.Drawing.Size(99, 21);
     this.tbCarNo.TabIndex = 705;
     this.coreBind.SetVerification(this.tbCarNo, null);
     //
     // label1
     //
     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(11, 25);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 23);
     this.label1.TabIndex = 704;
     this.label1.Text = "皮重计量点";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     //
     // cbBF
     //
     this.cbBF.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cbBF.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.cbBF, null);
     this.cbBF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBF.FormattingEnabled = true;
     this.cbBF.Location = new System.Drawing.Point(78, 26);
     this.cbBF.Name = "cbBF";
     this.cbBF.Size = new System.Drawing.Size(116, 20);
     this.cbBF.TabIndex = 703;
     this.coreBind.SetVerification(this.cbBF, null);
     this.cbBF.SelectedIndexChanged += new System.EventHandler(this.cbBF_SelectedIndexChanged);
     //
     // label3
     //
     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(257, 22);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(58, 24);
     this.label3.TabIndex = 696;
     this.label3.Text = "卡号";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     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.Bottom;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 474);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(990, 190);
     this.ultraPanel2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // EndTime
     //
     this.EndTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndTime.Location = new System.Drawing.Point(259, 3);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(143, 21);
     this.EndTime.TabIndex = 717;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.BeginTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.BeginTime.Location = new System.Drawing.Point(94, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(143, 21);
     this.BeginTime.TabIndex = 716;
     this.coreBind.SetVerification(this.BeginTime, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.ultraPanel1.ClientArea;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool3.ControlName = "BeginTime";
     controlContainerTool5.ControlName = "EndTime";
     controlContainerTool2.ControlName = "txtCarNo";
     controlContainerTool2.InstanceProps.IsFirstInGroup = true;
     buttonTool14.InstanceProps.IsFirstInGroup = true;
     buttonTool15.InstanceProps.IsFirstInGroup = true;
     buttonTool16.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     buttonTool4.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool3,
     controlContainerTool5,
     controlContainerTool2,
     buttonTool13,
     buttonTool14,
     buttonTool15,
     buttonTool16,
     buttonTool2,
     buttonTool4});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool1.ControlName = "BeginTime";
     controlContainerTool1.SharedPropsInternal.Caption = "皮重时间  开始";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.ControlName = "EndTime";
     controlContainerTool6.SharedPropsInternal.Caption = "至";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool7.ControlName = "cbDateField";
     controlContainerTool7.SharedPropsInternal.Caption = "查询时间";
     controlContainerTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool9.SharedPropsInternal.Caption = "查询";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Caption = "增加";
     buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Visible = false;
     buttonTool11.SharedPropsInternal.Caption = "修改";
     buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Caption = "删除";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Visible = false;
     buttonTool1.SharedPropsInternal.Caption = "磅房打印";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool3.SharedPropsInternal.Caption = "大厅打印";
     buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.ControlName = "txtCarNo";
     controlContainerTool4.SharedPropsInternal.Caption = "车号";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool6,
     controlContainerTool7,
     buttonTool9,
     buttonTool10,
     buttonTool11,
     buttonTool12,
     buttonTool1,
     buttonTool3,
     controlContainerTool4});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 0);
     this._ClientArea_Toolbars_Dock_Area_Top.Name = "_ClientArea_Toolbars_Dock_Area_Top";
     this._ClientArea_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(990, 26);
     this._ClientArea_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 664);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_Bottom";
     this._ClientArea_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(990, 0);
     this._ClientArea_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Bottom, 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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 26);
     this._ClientArea_Toolbars_Dock_Area_Left.Name = "_ClientArea_Toolbars_Dock_Area_Left";
     this._ClientArea_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 638);
     this._ClientArea_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Left, null);
     //
     // _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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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(990, 26);
     this._ClientArea_Toolbars_Dock_Area_Right.Name = "_ClientArea_Toolbars_Dock_Area_Right";
     this._ClientArea_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 638);
     this._ClientArea_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Right, null);
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(445, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarNo.TabIndex = 8;
     this.coreBind.SetVerification(this.txtCarNo, null);
     //
     // UpdateSecondWeight
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(990, 664);
     this.Controls.Add(this.ultraPanel1);
     this.Controls.Add(this.txtCarNo);
     this.Controls.Add(this.EndTime);
     this.Controls.Add(this.ultraPanel2);
     this.Controls.Add(this.BeginTime);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Left);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Right);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Top);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "UpdateSecondWeight";
     this.Tag = "UpdateSecondWeight";
     this.Text = "历史计量数据修改";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.UpdateSecondWeight_Load);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     this.ultraGroupBox3.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 52
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用班组编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("冶炼");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_SMELTDATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_STOVENO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("化学成分(%)");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn7 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_C");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn8 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Si");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn9 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Mn");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn10 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_S");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn11 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_P");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn12 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Ni");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn13 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Cr");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn14 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Cu");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn15 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_V");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn16 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Mo");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn17 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("Fn_Gp_Ceq");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn18 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("合格品");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn19 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn20 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_JJ_WEIGHT");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn21 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_MEMO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn22 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GP_JUDGER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn23 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn24 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("轧材");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn25 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("钢坯验收");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn26 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn27 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn28 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("钢坯加热");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn29 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn30 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn31 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZC_BATCHNO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn32 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZC_OPERATOR");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn33 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZC_MEMO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn34 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("热轧");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn35 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZZ_SPEC");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn36 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FD_ZZ_DATE");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn37 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZZ_NUM");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn38 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn39 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn40 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_ZZ_MEMO");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn41 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_LENGTH");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn42 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FN_GPYS_NUMBER");
     Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn43 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FS_DJH");
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("冶炼");
     Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SMELTDATE");
     Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("化学成分(%)");
     Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_C");
     Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Si");
     Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Mn");
     Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_S");
     Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_P");
     Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Ni");
     Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Cr");
     Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Cu");
     Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_V");
     Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Mo");
     Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Fn_Gp_Ceq");
     Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("合格品");
     Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance123 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("轧材");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢坯验收");
     Infragistics.Win.Appearance appearance125 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.Appearance appearance127 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢坯加热");
     Infragistics.Win.Appearance appearance128 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.Appearance appearance129 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance130 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.Appearance appearance131 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance132 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance133 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_OPERATOR");
     Infragistics.Win.Appearance appearance134 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_MEMO");
     Infragistics.Win.Appearance appearance135 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("热轧");
     Infragistics.Win.Appearance appearance136 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance137 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance138 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZZ_DATE");
     Infragistics.Win.Appearance appearance139 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.Appearance appearance140 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance141 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.Appearance appearance142 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance143 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.Appearance appearance144 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_MEMO");
     Infragistics.Win.Appearance appearance145 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance146 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance147 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance148 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance149 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DJH");
     Infragistics.Win.Appearance appearance150 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance262 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance263 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance264 = new Infragistics.Win.Appearance();
     this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraDataSource1
     //
     ultraDataColumn30.DataType = typeof(System.DateTime);
     ultraDataColumn36.DataType = typeof(System.DateTime);
     this.ultraDataSource1.Band.Columns.AddRange(new object[] {
     ultraDataColumn1,
     ultraDataColumn2,
     ultraDataColumn3,
     ultraDataColumn4,
     ultraDataColumn5,
     ultraDataColumn6,
     ultraDataColumn7,
     ultraDataColumn8,
     ultraDataColumn9,
     ultraDataColumn10,
     ultraDataColumn11,
     ultraDataColumn12,
     ultraDataColumn13,
     ultraDataColumn14,
     ultraDataColumn15,
     ultraDataColumn16,
     ultraDataColumn17,
     ultraDataColumn18,
     ultraDataColumn19,
     ultraDataColumn20,
     ultraDataColumn21,
     ultraDataColumn22,
     ultraDataColumn23,
     ultraDataColumn24,
     ultraDataColumn25,
     ultraDataColumn26,
     ultraDataColumn27,
     ultraDataColumn28,
     ultraDataColumn29,
     ultraDataColumn30,
     ultraDataColumn31,
     ultraDataColumn32,
     ultraDataColumn33,
     ultraDataColumn34,
     ultraDataColumn35,
     ultraDataColumn36,
     ultraDataColumn37,
     ultraDataColumn38,
     ultraDataColumn39,
     ultraDataColumn40,
     ultraDataColumn41,
     ultraDataColumn42,
     ultraDataColumn43});
     //
     // ultraGrid1
     //
     this.ultraGrid1.DataMember = "Band 0";
     this.ultraGrid1.DataSource = this.ultraDataSource1;
     ultraGridBand1.CardSettings.CardScrollbars = Infragistics.Win.UltraWinGrid.CardScrollbars.None;
     ultraGridBand1.CardSettings.ShowCaption = false;
     ultraGridBand1.CardSettings.Style = Infragistics.Win.UltraWinGrid.CardStyle.StandardLabels;
     ultraGridBand1.CardView = true;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance87.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn1.Header.Appearance = appearance87;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(28, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 5;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance88.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn2.Header.Appearance = appearance88;
     ultraGridColumn2.Header.Caption = "冶炼日期";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn2.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance89.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn3.Header.Appearance = appearance89;
     ultraGridColumn3.Header.Caption = "炉号";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn3.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance90.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn4.Header.Appearance = appearance90;
     ultraGridColumn4.Header.Caption = "牌号";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn4.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance91.TextHAlignAsString = "Right";
     ultraGridColumn5.CellAppearance = appearance91;
     appearance92.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn5.Header.Appearance = appearance92;
     ultraGridColumn5.Header.Caption = "规格(mm)";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn5.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance93.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn6.Header.Appearance = appearance93;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 11;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance94.TextHAlignAsString = "Right";
     ultraGridColumn7.CellAppearance = appearance94;
     appearance95.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn7.Header.Appearance = appearance95;
     ultraGridColumn7.Header.Caption = "C";
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance96.TextHAlignAsString = "Right";
     ultraGridColumn8.CellAppearance = appearance96;
     appearance97.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn8.Header.Appearance = appearance97;
     ultraGridColumn8.Header.Caption = "Si";
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance98.TextHAlignAsString = "Right";
     ultraGridColumn9.CellAppearance = appearance98;
     appearance99.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn9.Header.Appearance = appearance99;
     ultraGridColumn9.Header.Caption = "Mn";
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance100.TextHAlignAsString = "Right";
     ultraGridColumn10.CellAppearance = appearance100;
     appearance101.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn10.Header.Appearance = appearance101;
     ultraGridColumn10.Header.Caption = "S";
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance102.TextHAlignAsString = "Right";
     ultraGridColumn11.CellAppearance = appearance102;
     appearance103.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn11.Header.Appearance = appearance103;
     ultraGridColumn11.Header.Caption = "P";
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance104.TextHAlignAsString = "Right";
     ultraGridColumn12.CellAppearance = appearance104;
     appearance105.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn12.Header.Appearance = appearance105;
     ultraGridColumn12.Header.Caption = "Ni";
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance106.TextHAlignAsString = "Right";
     ultraGridColumn13.CellAppearance = appearance106;
     appearance107.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn13.Header.Appearance = appearance107;
     ultraGridColumn13.Header.Caption = "Cr";
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance108.TextHAlignAsString = "Right";
     ultraGridColumn14.CellAppearance = appearance108;
     appearance109.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn14.Header.Appearance = appearance109;
     ultraGridColumn14.Header.Caption = "Cu";
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance110.TextHAlignAsString = "Right";
     ultraGridColumn15.CellAppearance = appearance110;
     appearance111.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn15.Header.Appearance = appearance111;
     ultraGridColumn15.Header.Caption = "V";
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance112.TextHAlignAsString = "Right";
     ultraGridColumn16.CellAppearance = appearance112;
     appearance113.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn16.Header.Appearance = appearance113;
     ultraGridColumn16.Header.Caption = "Mo";
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance114.TextHAlignAsString = "Right";
     ultraGridColumn17.CellAppearance = appearance114;
     appearance115.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn17.Header.Appearance = appearance115;
     ultraGridColumn17.Header.Caption = "Ceq";
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance116.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn18.Header.Appearance = appearance116;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance117.FontData.BoldAsString = "True";
     appearance117.TextHAlignAsString = "Right";
     ultraGridColumn19.CellAppearance = appearance117;
     appearance118.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn19.Header.Appearance = appearance118;
     ultraGridColumn19.Header.Caption = "条";
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance119.TextHAlignAsString = "Right";
     ultraGridColumn20.CellAppearance = appearance119;
     appearance120.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn20.Header.Appearance = appearance120;
     ultraGridColumn20.Header.Caption = "t";
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance121.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn21.Header.Appearance = appearance121;
     ultraGridColumn21.Header.Caption = "备注";
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 3;
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance122.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn22.Header.Appearance = appearance122;
     ultraGridColumn22.Header.Caption = "判定员";
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 3;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance123.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn23.Header.Appearance = appearance123;
     ultraGridColumn23.Header.Caption = "判定日期";
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 3;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance124.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn24.Header.Appearance = appearance124;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(28, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 5;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance125.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn25.Header.Appearance = appearance125;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance126.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn26.Header.Appearance = appearance126;
     ultraGridColumn26.Header.Caption = "验收日期";
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(120, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance127.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn27.Header.Appearance = appearance127;
     ultraGridColumn27.Header.Caption = "验收人";
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 8;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(120, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance128.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn28.Header.Appearance = appearance128;
     ultraGridColumn28.Header.Caption = "钢坯 加热";
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance129.FontData.BoldAsString = "True";
     appearance129.TextHAlignAsString = "Right";
     ultraGridColumn29.CellAppearance = appearance129;
     appearance130.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn29.Header.Appearance = appearance130;
     ultraGridColumn29.Header.Caption = "入炉条数";
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 6;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn30.Format = "yyyy-MM-dd HH:mm";
     appearance131.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn30.Header.Appearance = appearance131;
     ultraGridColumn30.Header.Caption = "入炉时间";
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.MaskInput = "yyyy-mm-dd hh:mm";
     ultraGridColumn30.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance132.FontData.BoldAsString = "True";
     appearance132.ForeColor = System.Drawing.Color.Red;
     ultraGridColumn31.CellAppearance = appearance132;
     appearance133.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn31.Header.Appearance = appearance133;
     ultraGridColumn31.Header.Caption = "轧制编号";
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance134.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn32.Header.Appearance = appearance134;
     ultraGridColumn32.Header.Caption = "负责人";
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 8;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance135.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn33.Header.Appearance = appearance135;
     ultraGridColumn33.Header.Caption = "备注";
     ultraGridColumn33.Header.VisiblePosition = 38;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 9;
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 9;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance136.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn34.Header.Appearance = appearance136;
     ultraGridColumn34.Header.VisiblePosition = 32;
     ultraGridColumn34.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance137.FontData.BoldAsString = "True";
     ultraGridColumn35.CellAppearance = appearance137;
     appearance138.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn35.Header.Appearance = appearance138;
     ultraGridColumn35.Header.Caption = "轧制规格";
     ultraGridColumn35.Header.VisiblePosition = 33;
     ultraGridColumn35.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn36.Format = "yyyy-MM-dd HH:mm";
     appearance139.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn36.Header.Appearance = appearance139;
     ultraGridColumn36.Header.Caption = "轧制日期";
     ultraGridColumn36.Header.VisiblePosition = 34;
     ultraGridColumn36.MaskInput = "yyyy-mm-dd hh:mm";
     ultraGridColumn36.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance140.FontData.BoldAsString = "True";
     appearance140.TextHAlignAsString = "Right";
     ultraGridColumn37.CellAppearance = appearance140;
     appearance141.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn37.Header.Appearance = appearance141;
     ultraGridColumn37.Header.Caption = "轧制成材(条)";
     ultraGridColumn37.Header.VisiblePosition = 35;
     ultraGridColumn37.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance142.FontData.BoldAsString = "True";
     appearance142.TextHAlignAsString = "Right";
     ultraGridColumn38.CellAppearance = appearance142;
     appearance143.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn38.Header.Appearance = appearance143;
     ultraGridColumn38.Header.Caption = "热轧废品(条)";
     ultraGridColumn38.Header.VisiblePosition = 36;
     ultraGridColumn38.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.Top;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 7;
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance144.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn39.Header.Appearance = appearance144;
     ultraGridColumn39.Header.Caption = "负责人";
     ultraGridColumn39.Header.VisiblePosition = 37;
     ultraGridColumn39.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 8;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance145.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn40.Header.Appearance = appearance145;
     ultraGridColumn40.Header.Caption = "备注";
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 9;
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 8;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance146.FontData.BoldAsString = "True";
     appearance146.TextHAlignAsString = "Right";
     ultraGridColumn41.CellAppearance = appearance146;
     appearance147.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn41.Header.Appearance = appearance147;
     ultraGridColumn41.Header.Caption = "定尺(m)";
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.RowLayoutColumnInfo.LabelSpan = 2;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 6;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
     ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(100, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDown;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance148.FontData.BoldAsString = "True";
     appearance148.TextHAlignAsString = "Right";
     ultraGridColumn42.CellAppearance = appearance148;
     appearance149.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn42.Header.Appearance = appearance149;
     ultraGridColumn42.Header.Caption = "条数";
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 5;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(120, 0);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance150.BackColor = System.Drawing.Color.LightSteelBlue;
     ultraGridColumn43.Header.Appearance = appearance150;
     ultraGridColumn43.Header.Caption = "货架号";
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 6;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(120, 0);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
     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});
     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.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.None;
     ultraGridBand1.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.Override.AllowColSizing = Infragistics.Win.UltraWinGrid.AllowColSizing.None;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleCardArea = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Etched;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleHeader = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.None;
     appearance262.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance262;
     appearance263.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance263;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     appearance264.TextHAlignAsString = "Center";
     appearance264.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance264;
     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.None;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(985, 282);
     this.ultraGrid1.TabIndex = 0;
     //
     // ucBilletFlowCard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.ultraGrid1);
     this.Name = "ucBilletFlowCard";
     this.Size = new System.Drawing.Size(985, 241);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 53
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FInvRCardSwitchType));
     this.panel1             = new System.Windows.Forms.Panel();
     this.label1             = new System.Windows.Forms.Label();
     this.rbPCS              = new System.Windows.Forms.RadioButton();
     this.rbCarton           = new System.Windows.Forms.RadioButton();
     this.rbRevNo            = new System.Windows.Forms.RadioButton();
     this.panel2             = new System.Windows.Forms.Panel();
     this.rbUnnormalToNormal = new System.Windows.Forms.RadioButton();
     this.rbNormalToUnnormal = new System.Windows.Forms.RadioButton();
     this.label2             = new System.Windows.Forms.Label();
     this.panel3             = new System.Windows.Forms.Panel();
     this.btnExit            = new UserControl.UCButton();
     this.btnOK              = new UserControl.UCButton();
     this.txtInput           = new System.Windows.Forms.TextBox();
     this.label3             = new System.Windows.Forms.Label();
     this.panel4             = new System.Windows.Forms.Panel();
     this.txtCount           = new UserControl.UCLabelEdit();
     this.panel5             = new System.Windows.Forms.Panel();
     this.grdMain            = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdMain)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.rbPCS);
     this.panel1.Controls.Add(this.rbCarton);
     this.panel1.Controls.Add(this.rbRevNo);
     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(616, 37);
     this.panel1.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(7, 7);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(60, 22);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "采集方式";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // rbPCS
     //
     this.rbPCS.Location = new System.Drawing.Point(260, 7);
     this.rbPCS.Name     = "rbPCS";
     this.rbPCS.Size     = new System.Drawing.Size(87, 23);
     this.rbPCS.TabIndex = 2;
     this.rbPCS.Text     = "PCS";
     //
     // rbCarton
     //
     this.rbCarton.Checked  = true;
     this.rbCarton.Location = new System.Drawing.Point(165, 6);
     this.rbCarton.Name     = "rbCarton";
     this.rbCarton.Size     = new System.Drawing.Size(87, 23);
     this.rbCarton.TabIndex = 1;
     this.rbCarton.TabStop  = true;
     this.rbCarton.Text     = "Carton";
     //
     // rbRevNo
     //
     this.rbRevNo.Location = new System.Drawing.Point(73, 7);
     this.rbRevNo.Name     = "rbRevNo";
     this.rbRevNo.Size     = new System.Drawing.Size(86, 23);
     this.rbRevNo.TabIndex = 0;
     this.rbRevNo.Text     = "入库单号";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.rbUnnormalToNormal);
     this.panel2.Controls.Add(this.rbNormalToUnnormal);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 37);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(616, 37);
     this.panel2.TabIndex = 1;
     //
     // rbUnnormalToNormal
     //
     this.rbUnnormalToNormal.Location = new System.Drawing.Point(232, 7);
     this.rbUnnormalToNormal.Name     = "rbUnnormalToNormal";
     this.rbUnnormalToNormal.Size     = new System.Drawing.Size(151, 23);
     this.rbUnnormalToNormal.TabIndex = 2;
     this.rbUnnormalToNormal.Text     = "异常品调整为正常品";
     //
     // rbNormalToUnnormal
     //
     this.rbNormalToUnnormal.Checked  = true;
     this.rbNormalToUnnormal.Location = new System.Drawing.Point(73, 7);
     this.rbNormalToUnnormal.Name     = "rbNormalToUnnormal";
     this.rbNormalToUnnormal.Size     = new System.Drawing.Size(140, 23);
     this.rbNormalToUnnormal.TabIndex = 1;
     this.rbNormalToUnnormal.TabStop  = true;
     this.rbNormalToUnnormal.Text     = "正常品调整为异常品";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(7, 7);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(60, 22);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "调整方式";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.btnExit);
     this.panel3.Controls.Add(this.btnOK);
     this.panel3.Controls.Add(this.txtInput);
     this.panel3.Controls.Add(this.label3);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 409);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(616, 45);
     this.panel3.TabIndex = 0;
     //
     // btnExit
     //
     this.btnExit.BackColor       = System.Drawing.SystemColors.Control;
     this.btnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnExit.BackgroundImage")));
     this.btnExit.ButtonType      = UserControl.ButtonTypes.Exit;
     this.btnExit.Caption         = "退出";
     this.btnExit.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnExit.Location        = new System.Drawing.Point(400, 15);
     this.btnExit.Name            = "btnExit";
     this.btnExit.Size            = new System.Drawing.Size(88, 22);
     this.btnExit.TabIndex        = 2;
     //
     // btnOK
     //
     this.btnOK.BackColor       = System.Drawing.SystemColors.Control;
     this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));
     this.btnOK.ButtonType      = UserControl.ButtonTypes.None;
     this.btnOK.Caption         = "确定";
     this.btnOK.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.btnOK.Location        = new System.Drawing.Point(307, 15);
     this.btnOK.Name            = "btnOK";
     this.btnOK.Size            = new System.Drawing.Size(88, 22);
     this.btnOK.TabIndex        = 1;
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // txtInput
     //
     this.txtInput.Location = new System.Drawing.Point(73, 15);
     this.txtInput.Name     = "txtInput";
     this.txtInput.Size     = new System.Drawing.Size(214, 20);
     this.txtInput.TabIndex = 0;
     this.txtInput.Leave   += new System.EventHandler(this.txtInput_Leave);
     this.txtInput.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.txtInput_KeyUp);
     this.txtInput.Enter   += new System.EventHandler(this.txtInput_Enter);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(20, 15);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(47, 21);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "输入框";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.txtCount);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(510, 74);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(106, 335);
     this.panel4.TabIndex = 3;
     //
     // txtCount
     //
     this.txtCount.AllowEditOnlyChecked = true;
     this.txtCount.Caption      = "数量总计";
     this.txtCount.Checked      = false;
     this.txtCount.Dock         = System.Windows.Forms.DockStyle.Bottom;
     this.txtCount.EditType     = UserControl.EditTypes.String;
     this.txtCount.Location     = new System.Drawing.Point(0, 312);
     this.txtCount.MaxLength    = 40;
     this.txtCount.Multiline    = false;
     this.txtCount.Name         = "txtCount";
     this.txtCount.PasswordChar = '\0';
     this.txtCount.ReadOnly     = true;
     this.txtCount.ShowCheckBox = false;
     this.txtCount.Size         = new System.Drawing.Size(106, 23);
     this.txtCount.TabIndex     = 0;
     this.txtCount.TabNext      = true;
     this.txtCount.Value        = "0";
     this.txtCount.WidthType    = UserControl.WidthTypes.Tiny;
     this.txtCount.XAlign       = 64;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.grdMain);
     this.panel5.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 74);
     this.panel5.Name     = "panel5";
     this.panel5.Size     = new System.Drawing.Size(510, 335);
     this.panel5.TabIndex = 4;
     //
     // grdMain
     //
     this.grdMain.Cursor            = System.Windows.Forms.Cursors.Default;
     this.grdMain.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.grdMain.Location          = new System.Drawing.Point(0, 0);
     this.grdMain.Name              = "grdMain";
     this.grdMain.Size              = new System.Drawing.Size(510, 335);
     this.grdMain.TabIndex          = 0;
     this.grdMain.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.grdMain_InitializeLayout);
     //
     // FInvRCardSwitchType
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(616, 454);
     this.Controls.Add(this.panel5);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name       = "FInvRCardSwitchType";
     this.Text       = "库存品状态转换";
     this.Load      += new System.EventHandler(this.FInvRCardSwitchType_Load);
     this.Activated += new System.EventHandler(this.FInvRCardSwitchType_Activated);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdMain)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 54
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 controlContainerTool4 = 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 controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("发货单位");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = 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.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("卸货类型");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取样确认");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("合同号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("撤销取样");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("卸货确认");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消卸货");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("扣渣保存");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("撤销扣渣");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool14 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = 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(MeasureKouZhaNew));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("发货单位");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("收货单位");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("车号");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取样确认");
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("撤销取样");
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("卸货确认");
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消卸货");
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("扣渣保存");
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("撤销扣渣");
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("卸货类型");
     Infragistics.Win.Appearance appearance14 = 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_PLANCODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTITEM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LX");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FHDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CYDW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERFACTORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUNDTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POUND");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TERM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_LOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YCSFYC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFSAMPLING");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IFACCEPT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DRIVERIDCARD");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DFJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BILLNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATASTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHOOSEN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADMEMO");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("计量信息", 186767516);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("扣渣信息", 186767517);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("取样信息", 186767518);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup4 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("卸货信息", 186767519);
     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_WEIGHTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PLANCODE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARDNUMBER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CARNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CONTRACTITEM", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIAL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MATERIALNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTTYPE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LX", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_FHDW", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SENDERSTORE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHDW", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TRANSNO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CYDW", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_RECEIVERFACTORY", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUNDTYPE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_POUND", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDGROSSWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDTAREWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_SENDNETWEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_WEIGHT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_WEIGHTER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_WEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SHIFT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_TERM", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADFLAG", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_LOADFLAG", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YCSFYC", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_STOVENO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FN_COUNT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_SAMPLETIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEPLACE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_SAMPLEFLAG", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_UNLOADTIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADPLACE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_CHECKTIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKPLACE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_CHECKFLAG", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFSAMPLING", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_IFACCEPT", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERNAME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DRIVERIDCARD", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTFLAG", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FD_REWEIGHTTIME", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPLACE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_REWEIGHTPERSON", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DFJZ", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BILLNUMBER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_DATASTATE", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_MEMO", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_BZ", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_YKBL", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_PROVIDER", -1, Infragistics.Win.DefaultableBoolean.False);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CHOOSEN", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "FS_UNLOADMEMO", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "计量信息", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "扣渣信息", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo65 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "取样信息", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo66 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Group, "卸货信息", -1, Infragistics.Win.DefaultableBoolean.Default);
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_CARDNUMBER", 2, 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_WEIGHT", 23, true, "绑定一次计量表", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance37 = 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();
     Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量数据", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CONTRACTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDGROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDTAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GROSSDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSSHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TAREDATETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TARESHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SAMPLETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TOCENTERTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ACCOUNTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TESTIFYDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SENDNETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPECODE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_JZDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WXPAYFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_UNLOADTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_CHECKTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_JSDH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CWQR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_YKBL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_KHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATASTATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PROVIDERNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTPLACE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn119 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_REWEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn120 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_REWEIGHTFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn121 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn122 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn123 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SAMPLEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn124 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CREATEJSRQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn125 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_KSDJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn126 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_FHRQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn127 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YFDJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn128 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_CETH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn129 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SJTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn130 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_KTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn131 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YFJE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn132 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_FHJZ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn133 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SFJE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn134 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ECJLSJ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn135 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn136 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHOOSEN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn137 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNLOADMEMO");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup5 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("毛重信息", 186767485);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup6 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("皮重信息", 186767486);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup7 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("取样信息", 186767487);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup8 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("预报重量", 186767488);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup9 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("卸车信息", 186767489);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup10 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("验收信息", 186767490);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup11 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("扣渣信息", 186767491);
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup12 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("复磅信息", 186767492);
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     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();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.cmbUnloadStyle = new System.Windows.Forms.ComboBox();
     this.cmbChange = new System.Windows.Forms.ComboBox();
     this.txtCarNo = new System.Windows.Forms.TextBox();
     this.dateBegin = new System.Windows.Forms.DateTimePicker();
     this.dateEnd = new System.Windows.Forms.DateTimePicker();
     this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     this.dataSet1 = new System.Data.DataSet();
     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.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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn71 = 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.dataColumn102 = new System.Data.DataColumn();
     this.dataColumn101 = 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.dataColumn113 = new System.Data.DataColumn();
     this.dataColumn114 = new System.Data.DataColumn();
     this.dataColumn115 = new System.Data.DataColumn();
     this.dataColumn176 = new System.Data.DataColumn();
     this.dataColumn177 = new System.Data.DataColumn();
     this.dataColumn178 = new System.Data.DataColumn();
     this.dataColumn179 = new System.Data.DataColumn();
     this.dataColumn180 = new System.Data.DataColumn();
     this.dataColumn181 = new System.Data.DataColumn();
     this.dataColumn182 = new System.Data.DataColumn();
     this.dataColumn183 = new System.Data.DataColumn();
     this.dataColumn184 = new System.Data.DataColumn();
     this.dataColumn185 = new System.Data.DataColumn();
     this.dataColumn186 = new System.Data.DataColumn();
     this.dataColumn187 = new System.Data.DataColumn();
     this.dataColumn188 = new System.Data.DataColumn();
     this.dataColumn189 = new System.Data.DataColumn();
     this.dataColumn204 = new System.Data.DataColumn();
     this.dataColumn205 = new System.Data.DataColumn();
     this.dataColumn206 = new System.Data.DataColumn();
     this.dataColumn207 = new System.Data.DataColumn();
     this.dataColumn208 = new System.Data.DataColumn();
     this.dataTable11 = new System.Data.DataTable();
     this.dataColumn129 = new System.Data.DataColumn();
     this.dataColumn130 = new System.Data.DataColumn();
     this.dataColumn131 = new System.Data.DataColumn();
     this.dataColumn132 = new System.Data.DataColumn();
     this.dataColumn133 = new System.Data.DataColumn();
     this.dataColumn134 = new System.Data.DataColumn();
     this.dataColumn135 = new System.Data.DataColumn();
     this.dataColumn136 = new System.Data.DataColumn();
     this.dataColumn137 = new System.Data.DataColumn();
     this.dataColumn138 = new System.Data.DataColumn();
     this.dataColumn139 = new System.Data.DataColumn();
     this.dataColumn140 = new System.Data.DataColumn();
     this.dataColumn141 = new System.Data.DataColumn();
     this.dataColumn142 = new System.Data.DataColumn();
     this.dataColumn143 = new System.Data.DataColumn();
     this.dataColumn144 = new System.Data.DataColumn();
     this.dataColumn145 = new System.Data.DataColumn();
     this.dataColumn146 = new System.Data.DataColumn();
     this.dataColumn147 = new System.Data.DataColumn();
     this.dataColumn148 = new System.Data.DataColumn();
     this.dataColumn149 = new System.Data.DataColumn();
     this.dataColumn150 = new System.Data.DataColumn();
     this.dataColumn151 = new System.Data.DataColumn();
     this.dataColumn152 = new System.Data.DataColumn();
     this.dataColumn153 = new System.Data.DataColumn();
     this.dataColumn154 = new System.Data.DataColumn();
     this.dataColumn155 = new System.Data.DataColumn();
     this.dataColumn156 = new System.Data.DataColumn();
     this.dataColumn159 = new System.Data.DataColumn();
     this.dataColumn161 = new System.Data.DataColumn();
     this.dataColumn163 = new System.Data.DataColumn();
     this.dataColumn167 = new System.Data.DataColumn();
     this.dataColumn168 = new System.Data.DataColumn();
     this.dataColumn169 = new System.Data.DataColumn();
     this.dataColumn170 = new System.Data.DataColumn();
     this.dataColumn190 = new System.Data.DataColumn();
     this.dataColumn191 = new System.Data.DataColumn();
     this.dataColumn192 = new System.Data.DataColumn();
     this.dataColumn193 = new System.Data.DataColumn();
     this.dataColumn194 = new System.Data.DataColumn();
     this.dataColumn195 = new System.Data.DataColumn();
     this.dataColumn196 = new System.Data.DataColumn();
     this.dataColumn197 = new System.Data.DataColumn();
     this.dataColumn198 = new System.Data.DataColumn();
     this.dataColumn199 = new System.Data.DataColumn();
     this.dataColumn200 = new System.Data.DataColumn();
     this.dataColumn201 = new System.Data.DataColumn();
     this.dataColumn202 = new System.Data.DataColumn();
     this.dataColumn203 = new System.Data.DataColumn();
     this.dataColumn209 = new System.Data.DataColumn();
     this.dataColumn210 = new System.Data.DataColumn();
     this.dataColumn211 = new System.Data.DataColumn();
     this.dataColumn212 = new System.Data.DataColumn();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn222 = new System.Data.DataColumn();
     this.dataTable1 = new System.Data.DataTable();
     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.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.rdCancelAll = new System.Windows.Forms.RadioButton();
     this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.rdChooseAll = new System.Windows.Forms.RadioButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet2 = new System.Data.DataSet();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = 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.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.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.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.dataColumn116 = new System.Data.DataColumn();
     this.dataColumn117 = new System.Data.DataColumn();
     this.dataColumn118 = new System.Data.DataColumn();
     this.dataColumn119 = new System.Data.DataColumn();
     this.dataColumn120 = new System.Data.DataColumn();
     this.dataColumn121 = new System.Data.DataColumn();
     this.dataColumn122 = new System.Data.DataColumn();
     this.dataColumn123 = new System.Data.DataColumn();
     this.dataColumn124 = new System.Data.DataColumn();
     this.dataColumn125 = new System.Data.DataColumn();
     this.dataColumn126 = new System.Data.DataColumn();
     this.dataColumn127 = new System.Data.DataColumn();
     this.dataColumn128 = new System.Data.DataColumn();
     this.dataColumn157 = new System.Data.DataColumn();
     this.dataColumn158 = new System.Data.DataColumn();
     this.dataColumn160 = new System.Data.DataColumn();
     this.dataColumn162 = new System.Data.DataColumn();
     this.dataColumn223 = new System.Data.DataColumn();
     this.dataTable4 = new System.Data.DataTable();
     this.dataColumn164 = new System.Data.DataColumn();
     this.dataColumn165 = new System.Data.DataColumn();
     this.dataColumn166 = new System.Data.DataColumn();
     this.dataColumn171 = new System.Data.DataColumn();
     this.dataColumn172 = new System.Data.DataColumn();
     this.dataColumn173 = new System.Data.DataColumn();
     this.dataColumn174 = new System.Data.DataColumn();
     this.dataColumn175 = new System.Data.DataColumn();
     this.dataColumn213 = new System.Data.DataColumn();
     this.dataColumn214 = new System.Data.DataColumn();
     this.dataColumn215 = new System.Data.DataColumn();
     this.dataColumn216 = new System.Data.DataColumn();
     this.dataColumn217 = new System.Data.DataColumn();
     this.dataColumn218 = new System.Data.DataColumn();
     this.dataColumn219 = new System.Data.DataColumn();
     this.dataColumn220 = new System.Data.DataColumn();
     this.dataTable5 = new System.Data.DataTable();
     this.dataColumn221 = new System.Data.DataColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.radiobl = new System.Windows.Forms.RadioButton();
     this.radiozl = new System.Windows.Forms.RadioButton();
     this.txtweightno = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.txtCarEditNo = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txtKHJZ = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txtYKBL = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.txtYKL = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.txtKZQR = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.txtKZR = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.txtConfirm = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.txtQYSJ = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtQYR = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.txtXHQR = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtXHSJ = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txtXHR = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtMemoXiehuo = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     this.panel1_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.EndTime);
     this.panel1.Controls.Add(this.BeginTime);
     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(1284, 26);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // panel1_Fill_Panel
     //
     this.panel1_Fill_Panel.Controls.Add(this.cmbUnloadStyle);
     this.panel1_Fill_Panel.Controls.Add(this.cmbChange);
     this.panel1_Fill_Panel.Controls.Add(this.txtCarNo);
     this.panel1_Fill_Panel.Controls.Add(this.dateBegin);
     this.panel1_Fill_Panel.Controls.Add(this.dateEnd);
     this.panel1_Fill_Panel.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
     this.panel1_Fill_Panel.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
     this.panel1_Fill_Panel.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
     this.panel1_Fill_Panel.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
     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, 0);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1284, 26);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // cmbUnloadStyle
     //
     this.coreBind.SetDatabasecommand(this.cmbUnloadStyle, null);
     this.cmbUnloadStyle.FormattingEnabled = true;
     this.cmbUnloadStyle.Items.AddRange(new object[] {
     "卸货确认",
     "退货且不过磅",
     "退货且过磅",
     "复磅"});
     this.cmbUnloadStyle.Location = new System.Drawing.Point(711, 2);
     this.cmbUnloadStyle.Name = "cmbUnloadStyle";
     this.cmbUnloadStyle.Size = new System.Drawing.Size(101, 20);
     this.cmbUnloadStyle.TabIndex = 614;
     this.cmbUnloadStyle.Text = "卸货确认";
     this.coreBind.SetVerification(this.cmbUnloadStyle, null);
     //
     // cmbChange
     //
     this.coreBind.SetDatabasecommand(this.cmbChange, null);
     this.cmbChange.FormattingEnabled = true;
     this.cmbChange.Items.AddRange(new object[] {
     "已有净重",
     "没有净重"});
     this.cmbChange.Location = new System.Drawing.Point(62, 2);
     this.cmbChange.Name = "cmbChange";
     this.cmbChange.Size = new System.Drawing.Size(81, 20);
     this.cmbChange.TabIndex = 2;
     this.cmbChange.Text = "没有净重";
     this.coreBind.SetVerification(this.cmbChange, null);
     this.cmbChange.SelectedValueChanged += new System.EventHandler(this.cmbChange_SelectedValueChanged);
     //
     // txtCarNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarNo, null);
     this.txtCarNo.Location = new System.Drawing.Point(489, 2);
     this.txtCarNo.Name = "txtCarNo";
     this.txtCarNo.Size = new System.Drawing.Size(83, 21);
     this.txtCarNo.TabIndex = 607;
     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(176, 2);
     this.dateBegin.Name = "dateBegin";
     this.dateBegin.Size = new System.Drawing.Size(132, 21);
     this.dateBegin.TabIndex = 608;
     this.coreBind.SetVerification(this.dateBegin, null);
     //
     // 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(330, 2);
     this.dateEnd.Name = "dateEnd";
     this.dateEnd.Size = new System.Drawing.Size(125, 21);
     this.dateEnd.TabIndex = 609;
     this.coreBind.SetVerification(this.dateEnd, 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(1284, 26);
     this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Top, 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, 315);
     ultraToolbar1.FloatingSize = new System.Drawing.Size(166, 211);
     controlContainerTool4.ControlName = "cmbChange";
     controlContainerTool4.InstanceProps.RecentlyUsed = false;
     controlContainerTool4.InstanceProps.Width = 140;
     controlContainerTool11.ControlName = "dateBegin";
     controlContainerTool11.InstanceProps.Width = 166;
     controlContainerTool12.ControlName = "dateEnd";
     controlContainerTool12.InstanceProps.Width = 147;
     controlContainerTool19.ControlName = "cbGYDWUSER";
     controlContainerTool19.InstanceProps.Width = 182;
     controlContainerTool23.ControlName = "cbSHDWUSER";
     controlContainerTool1.ControlName = "txtCarNo";
     controlContainerTool1.InstanceProps.Width = 117;
     controlContainerTool6.ControlName = "cmbUnloadStyle";
     controlContainerTool6.InstanceProps.IsFirstInGroup = true;
     controlContainerTool6.InstanceProps.Width = 177;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool3.ControlName = "cbHTH";
     buttonTool8.InstanceProps.IsFirstInGroup = true;
     buttonTool20.InstanceProps.IsFirstInGroup = true;
     buttonTool9.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool4,
     controlContainerTool11,
     controlContainerTool12,
     controlContainerTool19,
     controlContainerTool23,
     controlContainerTool1,
     buttonTool4,
     controlContainerTool6,
     buttonTool1,
     controlContainerTool3,
     buttonTool3,
     buttonTool8,
     buttonTool19,
     buttonTool20,
     buttonTool9});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool14.ControlName = "dateBegin";
     controlContainerTool14.SharedPropsInternal.Caption = "开始";
     controlContainerTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool14.SharedPropsInternal.Width = 166;
     controlContainerTool15.ControlName = "cbHTH";
     controlContainerTool15.SharedPropsInternal.Caption = "合同号";
     controlContainerTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool15.SharedPropsInternal.Visible = false;
     controlContainerTool15.SharedPropsInternal.Width = 169;
     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;
     controlContainerTool18.ControlName = "cbGYDWUSER";
     controlContainerTool18.SharedPropsInternal.Caption = "发货单位";
     controlContainerTool18.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool18.SharedPropsInternal.Visible = false;
     controlContainerTool18.SharedPropsInternal.Width = 182;
     controlContainerTool21.ControlName = "cbSHDWUSER";
     controlContainerTool21.SharedPropsInternal.Caption = "收货单位";
     controlContainerTool21.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool21.SharedPropsInternal.Visible = false;
     controlContainerTool21.SharedPropsInternal.Width = 182;
     controlContainerTool2.ControlName = "txtCarNo";
     controlContainerTool2.SharedPropsInternal.Caption = "车号";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Width = 117;
     appearance16.Image = ((object)(resources.GetObject("appearance16.Image")));
     buttonTool2.SharedPropsInternal.AppearancesSmall.Appearance = appearance16;
     buttonTool2.SharedPropsInternal.Caption = "取样确认";
     buttonTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance17.Image = ((object)(resources.GetObject("appearance17.Image")));
     buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance17;
     buttonTool7.SharedPropsInternal.Caption = "撤销取样";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance18.Image = ((object)(resources.GetObject("appearance18.Image")));
     buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance18;
     buttonTool12.SharedPropsInternal.Caption = "卸货确认";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance19.Image = ((object)(resources.GetObject("appearance19.Image")));
     buttonTool21.SharedPropsInternal.AppearancesSmall.Appearance = appearance19;
     buttonTool21.SharedPropsInternal.Caption = "取消卸货";
     buttonTool21.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance20.Image = ((object)(resources.GetObject("appearance20.Image")));
     buttonTool22.SharedPropsInternal.AppearancesSmall.Appearance = appearance20;
     buttonTool22.SharedPropsInternal.Caption = "扣渣保存";
     buttonTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance21.Image = ((object)(resources.GetObject("appearance21.Image")));
     buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance21;
     buttonTool10.SharedPropsInternal.Caption = "撤销扣渣";
     buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool5.ControlName = "cmbChange";
     controlContainerTool5.SharedPropsInternal.Caption = "查询日期";
     controlContainerTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool5.SharedPropsInternal.Width = 140;
     controlContainerTool7.ControlName = "cmbUnloadStyle";
     controlContainerTool7.SharedPropsInternal.AllowMultipleInstances = true;
     appearance14.Image = ((object)(resources.GetObject("appearance14.Image")));
     controlContainerTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance14;
     controlContainerTool7.SharedPropsInternal.Caption = "卸货类型";
     controlContainerTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool7.SharedPropsInternal.Width = 177;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool14,
     controlContainerTool15,
     buttonTool5,
     controlContainerTool16,
     controlContainerTool18,
     controlContainerTool21,
     controlContainerTool2,
     buttonTool2,
     buttonTool7,
     buttonTool12,
     buttonTool21,
     buttonTool22,
     buttonTool10,
     controlContainerTool5,
     controlContainerTool7});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _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, 26);
     this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
     this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1284, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, 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, 0);
     this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
     this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 26);
     this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Left, null);
     //
     // _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(1284, 0);
     this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
     this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 26);
     this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Right, null);
     //
     // EndTime
     //
     this.EndTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.EndTime.Location = new System.Drawing.Point(235, 2);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(128, 21);
     this.EndTime.TabIndex = 15;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.BeginTime.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.BeginTime.Location = new System.Drawing.Point(79, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(134, 21);
     this.BeginTime.TabIndex = 14;
     this.coreBind.SetVerification(this.BeginTime, null);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable2,
     this.dataTable11,
     this.dataTable1});
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     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.dataColumn19,
     this.dataColumn20,
     this.dataColumn51,
     this.dataColumn71,
     this.dataColumn94,
     this.dataColumn95,
     this.dataColumn96,
     this.dataColumn97,
     this.dataColumn98,
     this.dataColumn99,
     this.dataColumn100,
     this.dataColumn102,
     this.dataColumn101,
     this.dataColumn103,
     this.dataColumn104,
     this.dataColumn105,
     this.dataColumn106,
     this.dataColumn107,
     this.dataColumn108,
     this.dataColumn109,
     this.dataColumn110,
     this.dataColumn111,
     this.dataColumn112,
     this.dataColumn113,
     this.dataColumn114,
     this.dataColumn115,
     this.dataColumn176,
     this.dataColumn177,
     this.dataColumn178,
     this.dataColumn179,
     this.dataColumn180,
     this.dataColumn181,
     this.dataColumn182,
     this.dataColumn183,
     this.dataColumn184,
     this.dataColumn185,
     this.dataColumn186,
     this.dataColumn187,
     this.dataColumn188,
     this.dataColumn189,
     this.dataColumn204,
     this.dataColumn205,
     this.dataColumn206,
     this.dataColumn207,
     this.dataColumn208});
     this.dataTable2.TableName = "一次计量表";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "作业编号";
     this.dataColumn4.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "预报号";
     this.dataColumn5.ColumnName = "FS_PLANCODE";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "合同号";
     this.dataColumn6.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "合同项目编号";
     this.dataColumn7.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "炉号";
     this.dataColumn8.ColumnName = "FS_STOVENO";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "支数";
     this.dataColumn9.ColumnName = "FN_COUNT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "卡号";
     this.dataColumn10.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "车号";
     this.dataColumn11.ColumnName = "FS_CARNO";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "重量";
     this.dataColumn12.ColumnName = "FN_WEIGHT";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "计量点";
     this.dataColumn13.ColumnName = "FS_POUND";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "计量员";
     this.dataColumn14.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "计量时间";
     this.dataColumn15.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "班次";
     this.dataColumn16.ColumnName = "FS_SHIFT";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "流向";
     this.dataColumn17.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "发货单位";
     this.dataColumn18.ColumnName = "FS_SENDER";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "收货单位";
     this.dataColumn19.ColumnName = "FS_RECEIVER";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "承运单位";
     this.dataColumn20.ColumnName = "FS_TRANSNO";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "物料名称";
     this.dataColumn51.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "是否异常";
     this.dataColumn71.ColumnName = "FS_YCSFYC";
     //
     // dataColumn94
     //
     this.dataColumn94.Caption = "发货库存点代码";
     this.dataColumn94.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn95
     //
     this.dataColumn95.Caption = "收货库存点代码";
     this.dataColumn95.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn96
     //
     this.dataColumn96.Caption = "磅房编号";
     this.dataColumn96.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn97
     //
     this.dataColumn97.Caption = "预报总重";
     this.dataColumn97.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn98
     //
     this.dataColumn98.Caption = "预报皮重";
     this.dataColumn98.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn99
     //
     this.dataColumn99.Caption = "预报净量";
     this.dataColumn99.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn100
     //
     this.dataColumn100.Caption = "班别";
     this.dataColumn100.ColumnName = "FS_TERM";
     //
     // dataColumn102
     //
     this.dataColumn102.Caption = "发货单位";
     this.dataColumn102.ColumnName = "FS_FHDW";
     //
     // dataColumn101
     //
     this.dataColumn101.Caption = "收货单位";
     this.dataColumn101.ColumnName = "FS_SHDW";
     //
     // dataColumn103
     //
     this.dataColumn103.Caption = "承运单位";
     this.dataColumn103.ColumnName = "FS_CYDW";
     //
     // dataColumn104
     //
     this.dataColumn104.Caption = "流向";
     this.dataColumn104.ColumnName = "FS_LX";
     //
     // dataColumn105
     //
     this.dataColumn105.Caption = "装车入库时间";
     this.dataColumn105.ColumnName = "FD_LOADINSTORETIME";
     //
     // dataColumn106
     //
     this.dataColumn106.Caption = "装车出库时间";
     this.dataColumn106.ColumnName = "FD_LOADOUTSTORETIME";
     //
     // dataColumn107
     //
     this.dataColumn107.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn108
     //
     this.dataColumn108.ColumnName = "FS_UNLOADSTOREPERSON";
     //
     // dataColumn109
     //
     this.dataColumn109.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn110
     //
     this.dataColumn110.ColumnName = "FS_LOADSTOREPERSON";
     //
     // dataColumn111
     //
     this.dataColumn111.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn112
     //
     this.dataColumn112.ColumnName = "FS_FIRSTLABELID";
     //
     // dataColumn113
     //
     this.dataColumn113.ColumnName = "FD_UNLOADINSTORETIME";
     //
     // dataColumn114
     //
     this.dataColumn114.ColumnName = "FD_UNLOADOUTSTORETIME";
     //
     // dataColumn115
     //
     this.dataColumn115.ColumnName = "FS_MATERIAL";
     //
     // dataColumn176
     //
     this.dataColumn176.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn177
     //
     this.dataColumn177.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn178
     //
     this.dataColumn178.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn179
     //
     this.dataColumn179.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn180
     //
     this.dataColumn180.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn181
     //
     this.dataColumn181.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn182
     //
     this.dataColumn182.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn183
     //
     this.dataColumn183.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn184
     //
     this.dataColumn184.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn185
     //
     this.dataColumn185.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn186
     //
     this.dataColumn186.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn187
     //
     this.dataColumn187.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn188
     //
     this.dataColumn188.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn189
     //
     this.dataColumn189.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn204
     //
     this.dataColumn204.Caption = "应扣量";
     this.dataColumn204.ColumnName = "FS_YKL";
     //
     // dataColumn205
     //
     this.dataColumn205.Caption = "复磅标志";
     this.dataColumn205.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn206
     //
     this.dataColumn206.Caption = "复磅确认时间";
     this.dataColumn206.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn207
     //
     this.dataColumn207.Caption = "复磅确认地点";
     this.dataColumn207.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn208
     //
     this.dataColumn208.Caption = "复磅确认员";
     this.dataColumn208.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataTable11
     //
     this.dataTable11.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn129,
     this.dataColumn130,
     this.dataColumn131,
     this.dataColumn132,
     this.dataColumn133,
     this.dataColumn134,
     this.dataColumn135,
     this.dataColumn136,
     this.dataColumn137,
     this.dataColumn138,
     this.dataColumn139,
     this.dataColumn140,
     this.dataColumn141,
     this.dataColumn142,
     this.dataColumn143,
     this.dataColumn144,
     this.dataColumn145,
     this.dataColumn146,
     this.dataColumn147,
     this.dataColumn148,
     this.dataColumn149,
     this.dataColumn150,
     this.dataColumn151,
     this.dataColumn152,
     this.dataColumn153,
     this.dataColumn154,
     this.dataColumn155,
     this.dataColumn156,
     this.dataColumn159,
     this.dataColumn161,
     this.dataColumn163,
     this.dataColumn167,
     this.dataColumn168,
     this.dataColumn169,
     this.dataColumn170,
     this.dataColumn190,
     this.dataColumn191,
     this.dataColumn192,
     this.dataColumn193,
     this.dataColumn194,
     this.dataColumn195,
     this.dataColumn196,
     this.dataColumn197,
     this.dataColumn198,
     this.dataColumn199,
     this.dataColumn200,
     this.dataColumn201,
     this.dataColumn202,
     this.dataColumn203,
     this.dataColumn209,
     this.dataColumn210,
     this.dataColumn211,
     this.dataColumn212,
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn30,
     this.dataColumn222});
     this.dataTable11.TableName = "绑定一次计量表";
     //
     // dataColumn129
     //
     this.dataColumn129.Caption = "作业编号";
     this.dataColumn129.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn130
     //
     this.dataColumn130.Caption = "预报号";
     this.dataColumn130.ColumnName = "FS_PLANCODE";
     //
     // dataColumn131
     //
     this.dataColumn131.Caption = "卡号";
     this.dataColumn131.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn132
     //
     this.dataColumn132.Caption = "车号";
     this.dataColumn132.ColumnName = "FS_CARNO";
     //
     // dataColumn133
     //
     this.dataColumn133.Caption = "合同号";
     this.dataColumn133.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn134
     //
     this.dataColumn134.Caption = "合同项目编号";
     this.dataColumn134.ColumnName = "FS_CONTRACTITEM";
     //
     // dataColumn135
     //
     this.dataColumn135.Caption = "物资代码";
     this.dataColumn135.ColumnName = "FS_MATERIAL";
     //
     // dataColumn136
     //
     this.dataColumn136.Caption = "物料名称";
     this.dataColumn136.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn137
     //
     this.dataColumn137.Caption = "流向代码";
     this.dataColumn137.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn138
     //
     this.dataColumn138.Caption = "流向";
     this.dataColumn138.ColumnName = "FS_LX";
     //
     // dataColumn139
     //
     this.dataColumn139.Caption = "发货单位代码";
     this.dataColumn139.ColumnName = "FS_SENDER";
     //
     // dataColumn140
     //
     this.dataColumn140.Caption = "发货单位";
     this.dataColumn140.ColumnName = "FS_FHDW";
     //
     // dataColumn141
     //
     this.dataColumn141.Caption = "发货地点";
     this.dataColumn141.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn142
     //
     this.dataColumn142.Caption = "收货工厂代码";
     this.dataColumn142.ColumnName = "FS_RECEIVER";
     //
     // dataColumn143
     //
     this.dataColumn143.Caption = "收货单位";
     this.dataColumn143.ColumnName = "FS_SHDW";
     //
     // dataColumn144
     //
     this.dataColumn144.Caption = "承运方代码";
     this.dataColumn144.ColumnName = "FS_TRANSNO";
     //
     // dataColumn145
     //
     this.dataColumn145.Caption = "承运单位";
     this.dataColumn145.ColumnName = "FS_CYDW";
     //
     // dataColumn146
     //
     this.dataColumn146.Caption = "卸货地点";
     this.dataColumn146.ColumnName = "FS_RECEIVERFACTORY";
     //
     // dataColumn147
     //
     this.dataColumn147.Caption = "磅房编号";
     this.dataColumn147.ColumnName = "FS_POUNDTYPE";
     //
     // dataColumn148
     //
     this.dataColumn148.Caption = "计量点";
     this.dataColumn148.ColumnName = "FS_POUND";
     //
     // dataColumn149
     //
     this.dataColumn149.Caption = "预报总重";
     this.dataColumn149.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn150
     //
     this.dataColumn150.Caption = "预报皮重";
     this.dataColumn150.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn151
     //
     this.dataColumn151.Caption = "预报净量";
     this.dataColumn151.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn152
     //
     this.dataColumn152.Caption = "重量";
     this.dataColumn152.ColumnName = "FN_WEIGHT";
     //
     // dataColumn153
     //
     this.dataColumn153.Caption = "计量员";
     this.dataColumn153.ColumnName = "FS_WEIGHTER";
     //
     // dataColumn154
     //
     this.dataColumn154.Caption = "计量时间";
     this.dataColumn154.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn155
     //
     this.dataColumn155.Caption = "班次";
     this.dataColumn155.ColumnName = "FS_SHIFT";
     //
     // dataColumn156
     //
     this.dataColumn156.Caption = "班别";
     this.dataColumn156.ColumnName = "FS_TERM";
     //
     // dataColumn159
     //
     this.dataColumn159.Caption = "卸车确认";
     this.dataColumn159.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn161
     //
     this.dataColumn161.ColumnName = "FS_LOADFLAG";
     //
     // dataColumn163
     //
     this.dataColumn163.Caption = "取样员";
     this.dataColumn163.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn167
     //
     this.dataColumn167.Caption = "是否异常";
     this.dataColumn167.ColumnName = "FS_YCSFYC";
     //
     // dataColumn168
     //
     this.dataColumn168.Caption = "应扣量";
     this.dataColumn168.ColumnName = "FS_YKL";
     //
     // dataColumn169
     //
     this.dataColumn169.Caption = "炉号";
     this.dataColumn169.ColumnName = "FS_STOVENO";
     //
     // dataColumn170
     //
     this.dataColumn170.Caption = "支数";
     this.dataColumn170.ColumnName = "FN_COUNT";
     //
     // dataColumn190
     //
     this.dataColumn190.Caption = "取样时间";
     this.dataColumn190.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn191
     //
     this.dataColumn191.Caption = "取样点";
     this.dataColumn191.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn192
     //
     this.dataColumn192.Caption = "取样确认";
     this.dataColumn192.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn193
     //
     this.dataColumn193.Caption = "卸车员";
     this.dataColumn193.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn194
     //
     this.dataColumn194.Caption = "卸车时间";
     this.dataColumn194.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn195
     //
     this.dataColumn195.Caption = "卸车点";
     this.dataColumn195.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn196
     //
     this.dataColumn196.Caption = "验收员";
     this.dataColumn196.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn197
     //
     this.dataColumn197.Caption = "验收时间";
     this.dataColumn197.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn198
     //
     this.dataColumn198.Caption = "验收点";
     this.dataColumn198.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn199
     //
     this.dataColumn199.Caption = "验收确认";
     this.dataColumn199.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn200
     //
     this.dataColumn200.Caption = "是否取样需要";
     this.dataColumn200.ColumnName = "FS_IFSAMPLING";
     //
     // dataColumn201
     //
     this.dataColumn201.Caption = "是否需要验收 ";
     this.dataColumn201.ColumnName = "FS_IFACCEPT";
     //
     // dataColumn202
     //
     this.dataColumn202.Caption = "驾驶员姓名";
     this.dataColumn202.ColumnName = "FS_DRIVERNAME";
     //
     // dataColumn203
     //
     this.dataColumn203.Caption = "驾驶员身份证";
     this.dataColumn203.ColumnName = "FS_DRIVERIDCARD";
     //
     // dataColumn209
     //
     this.dataColumn209.Caption = "复磅标记";
     this.dataColumn209.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn210
     //
     this.dataColumn210.Caption = "复磅确认时间";
     this.dataColumn210.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn211
     //
     this.dataColumn211.Caption = "复磅确认地点";
     this.dataColumn211.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn212
     //
     this.dataColumn212.Caption = "复磅确认员";
     this.dataColumn212.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "对方净重";
     this.dataColumn1.ColumnName = "FS_DFJZ";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "单据编号";
     this.dataColumn2.ColumnName = "FS_BILLNUMBER";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "磅房启用状态";
     this.dataColumn3.ColumnName = "FS_DATASTATE";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "录入状态";
     this.dataColumn33.ColumnName = "FS_MEMO";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "收货备注";
     this.dataColumn34.ColumnName = "FS_BZ";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "应扣比例";
     this.dataColumn35.ColumnName = "FS_YKBL";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "供应单位代码";
     this.dataColumn36.ColumnName = "FS_PROVIDER";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "选择";
     this.dataColumn30.ColumnName = "CHOOSEN";
     //
     // dataColumn222
     //
     this.dataColumn222.Caption = "卸货备注";
     this.dataColumn222.ColumnName = "FS_UNLOADMEMO";
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn26});
     this.dataTable1.TableName = "计量图片";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "FB_IMAGE1";
     this.dataColumn21.DataType = typeof(byte[]);
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FB_IMAGE2";
     this.dataColumn22.DataType = typeof(byte[]);
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FB_IMAGE3";
     this.dataColumn23.DataType = typeof(byte[]);
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FB_IMAGE4";
     this.dataColumn24.DataType = typeof(byte[]);
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FB_IMAGE5";
     this.dataColumn25.DataType = typeof(byte[]);
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FB_IMAGE7";
     this.dataColumn27.DataType = typeof(byte[]);
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FB_IMAGE8";
     this.dataColumn28.DataType = typeof(byte[]);
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FB_IMAGE6";
     this.dataColumn29.DataType = typeof(byte[]);
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_CURVEIMAGEONE";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.rdCancelAll);
     this.ultraGroupBox1.Controls.Add(this.ultraGrid3);
     this.ultraGroupBox1.Controls.Add(this.rdChooseAll);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 11F);
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1284, 308);
     this.ultraGroupBox1.TabIndex = 1;
     this.ultraGroupBox1.Text = "一次数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // rdCancelAll
     //
     this.rdCancelAll.AutoSize = true;
     this.rdCancelAll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.rdCancelAll.Checked = true;
     this.coreBind.SetDatabasecommand(this.rdCancelAll, null);
     this.rdCancelAll.Font = new System.Drawing.Font("宋体", 10F);
     this.rdCancelAll.Location = new System.Drawing.Point(544, -1);
     this.rdCancelAll.Name = "rdCancelAll";
     this.rdCancelAll.Size = new System.Drawing.Size(53, 18);
     this.rdCancelAll.TabIndex = 30;
     this.rdCancelAll.TabStop = true;
     this.rdCancelAll.Text = "反选";
     this.rdCancelAll.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rdCancelAll, null);
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "绑定一次计量表";
     this.ultraGrid3.DataSource = this.dataSet1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 3;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn3.Header.VisiblePosition = 4;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn4.Header.VisiblePosition = 5;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn5.Header.VisiblePosition = 6;
     ultraGridColumn5.Hidden = true;
     ultraGridColumn6.Header.VisiblePosition = 7;
     ultraGridColumn6.Hidden = true;
     ultraGridColumn7.Header.VisiblePosition = 8;
     ultraGridColumn7.Hidden = true;
     ultraGridColumn8.Header.VisiblePosition = 9;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(105, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn9.Header.VisiblePosition = 10;
     ultraGridColumn9.Hidden = true;
     ultraGridColumn10.Header.VisiblePosition = 11;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.Header.VisiblePosition = 12;
     ultraGridColumn11.Hidden = true;
     ultraGridColumn12.Header.VisiblePosition = 13;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 14;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn14.Header.VisiblePosition = 15;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn15.Header.VisiblePosition = 17;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 43;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn16.Header.VisiblePosition = 18;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn17.Header.VisiblePosition = 19;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn18.Header.VisiblePosition = 20;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 57);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn19.Header.VisiblePosition = 21;
     ultraGridColumn19.Hidden = true;
     ultraGridColumn20.Header.VisiblePosition = 22;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn20.RowLayoutColumnInfo.ParentGroupKey = "计量信息";
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn21.Header.VisiblePosition = 23;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn22.Header.VisiblePosition = 24;
     ultraGridColumn22.Hidden = true;
     ultraGridColumn23.Header.VisiblePosition = 25;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn24.Header.VisiblePosition = 26;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn24.RowLayoutColumnInfo.ParentGroupKey = "计量信息";
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn25.Header.VisiblePosition = 27;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn25.RowLayoutColumnInfo.ParentGroupKey = "计量信息";
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn26.Header.VisiblePosition = 28;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn26.RowLayoutColumnInfo.ParentGroupKey = "计量信息";
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn27.Header.VisiblePosition = 29;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn27.RowLayoutColumnInfo.ParentGroupKey = "计量信息";
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn28.Header.VisiblePosition = 30;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn28.RowLayoutColumnInfo.ParentGroupKey = "计量信息";
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn29.Header.VisiblePosition = 31;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "卸货信息";
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn30.Header.VisiblePosition = 32;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn31.Header.VisiblePosition = 33;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn31.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn32.Header.VisiblePosition = 34;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn33.Header.Caption = "应扣量(Kg)";
     ultraGridColumn33.Header.VisiblePosition = 35;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn33.RowLayoutColumnInfo.ParentGroupKey = "扣渣信息";
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn34.Header.VisiblePosition = 2;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 57);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn35.Header.VisiblePosition = 16;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 57);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn36.Header.VisiblePosition = 36;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn36.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn37.Header.VisiblePosition = 37;
     ultraGridColumn37.Hidden = true;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn37.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 38;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn38.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(73, 0);
     ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 39;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn39.RowLayoutColumnInfo.ParentGroupKey = "卸货信息";
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 40;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn40.RowLayoutColumnInfo.ParentGroupKey = "卸货信息";
     ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 41;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn41.RowLayoutColumnInfo.ParentGroupKey = "卸货信息";
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.Header.VisiblePosition = 42;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn43.Header.VisiblePosition = 43;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 40;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 44;
     ultraGridColumn44.Hidden = true;
     ultraGridColumn45.Header.VisiblePosition = 45;
     ultraGridColumn45.Hidden = true;
     ultraGridColumn46.Header.VisiblePosition = 46;
     ultraGridColumn46.Hidden = true;
     ultraGridColumn47.Header.VisiblePosition = 47;
     ultraGridColumn47.Hidden = true;
     ultraGridColumn48.Header.VisiblePosition = 48;
     ultraGridColumn48.Hidden = true;
     ultraGridColumn49.Header.VisiblePosition = 49;
     ultraGridColumn49.Hidden = true;
     ultraGridColumn50.Header.VisiblePosition = 50;
     ultraGridColumn50.Hidden = true;
     ultraGridColumn51.Header.VisiblePosition = 51;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn52.Header.VisiblePosition = 52;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn53.Header.VisiblePosition = 53;
     ultraGridColumn53.Hidden = true;
     ultraGridColumn54.Header.VisiblePosition = 54;
     ultraGridColumn54.Hidden = true;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 57);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn55.Header.VisiblePosition = 55;
     ultraGridColumn55.Hidden = true;
     ultraGridColumn56.Header.VisiblePosition = 56;
     ultraGridColumn56.Hidden = true;
     ultraGridColumn57.Header.VisiblePosition = 57;
     ultraGridColumn57.Hidden = true;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 45;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 57);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn58.Header.VisiblePosition = 58;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 45;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(203, 0);
     ultraGridColumn58.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn59.Header.Caption = "应扣比例(%)";
     ultraGridColumn59.Header.VisiblePosition = 59;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn59.RowLayoutColumnInfo.ParentGroupKey = "扣渣信息";
     ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
     ultraGridColumn59.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.Header.VisiblePosition = 60;
     ultraGridColumn60.Hidden = true;
     ultraGridColumn61.Header.VisiblePosition = 1;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
     ultraGridColumn61.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn61.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn62.Header.VisiblePosition = 61;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn62.RowLayoutColumnInfo.ParentGroupKey = "卸货信息";
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn62.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,
     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});
     ultraGridGroup1.Key = "计量信息";
     ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup1.RowLayoutGroupInfo.OriginX = 4;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 12;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup2.Key = "扣渣信息";
     ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup2.RowLayoutGroupInfo.OriginX = 33;
     ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup2.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup2.RowLayoutGroupInfo.SpanX = 2;
     ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup3.Key = "取样信息";
     ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup3.RowLayoutGroupInfo.OriginX = 26;
     ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup3.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup3.RowLayoutGroupInfo.SpanX = 7;
     ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
     ultraGridGroup4.Key = "卸货信息";
     ultraGridGroup4.RowLayoutGroupInfo.LabelSpan = 1;
     ultraGridGroup4.RowLayoutGroupInfo.OriginX = 35;
     ultraGridGroup4.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup4.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup4.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup4.RowLayoutGroupInfo.SpanY = 3;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1,
     ultraGridGroup2,
     ultraGridGroup3,
     ultraGridGroup4});
     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;
     rowLayoutColumnInfo34.OriginX = 0;
     rowLayoutColumnInfo34.OriginY = 0;
     rowLayoutColumnInfo34.PreferredCellSize = new System.Drawing.Size(60, 0);
     rowLayoutColumnInfo34.SpanX = 1;
     rowLayoutColumnInfo34.SpanY = 1;
     rowLayoutColumnInfo35.OriginX = 4;
     rowLayoutColumnInfo35.OriginY = 0;
     rowLayoutColumnInfo35.PreferredCellSize = new System.Drawing.Size(60, 0);
     rowLayoutColumnInfo35.SpanX = 1;
     rowLayoutColumnInfo35.SpanY = 1;
     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});
     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.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.GroupByBox.Prompt = "请拖动列到此,按该列进行分组";
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 8;
     appearance37.FontData.BoldAsString = "True";
     this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance37;
     appearance38.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance38;
     appearance39.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance39;
     appearance40.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance40.TextHAlignAsString = "Center";
     appearance40.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance40;
     appearance41.TextVAlignAsString = "Middle";
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance41;
     appearance42.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance42;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance43.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance43.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance43.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance43.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance43;
     this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 11F);
     this.ultraGrid3.Location = new System.Drawing.Point(3, 21);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(1278, 284);
     this.ultraGrid3.TabIndex = 10;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ultraGrid3_DoubleClick);
     this.ultraGrid3.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
     //
     // rdChooseAll
     //
     this.rdChooseAll.AutoSize = true;
     this.rdChooseAll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.coreBind.SetDatabasecommand(this.rdChooseAll, null);
     this.rdChooseAll.Font = new System.Drawing.Font("宋体", 10F);
     this.rdChooseAll.Location = new System.Drawing.Point(488, 0);
     this.rdChooseAll.Name = "rdChooseAll";
     this.rdChooseAll.Size = new System.Drawing.Size(53, 18);
     this.rdChooseAll.TabIndex = 29;
     this.rdChooseAll.Text = "全选";
     this.rdChooseAll.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rdChooseAll, null);
     this.rdChooseAll.CheckedChanged += new System.EventHandler(this.rdChooseAll_CheckedChanged);
     //
     // 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(1284, 663);
     this.panel2.TabIndex = 1;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ultraGroupBox2);
     this.panel4.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(1284, 602);
     this.panel4.TabIndex = 6;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.radioButton1);
     this.ultraGroupBox2.Controls.Add(this.radioButton2);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Font = new System.Drawing.Font("宋体", 11F);
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 308);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1284, 294);
     this.ultraGroupBox2.TabIndex = 12;
     this.ultraGroupBox2.Text = "历史数据查询";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.radioButton1.Checked = true;
     this.coreBind.SetDatabasecommand(this.radioButton1, null);
     this.radioButton1.Font = new System.Drawing.Font("宋体", 10F);
     this.radioButton1.Location = new System.Drawing.Point(547, -1);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(53, 18);
     this.radioButton1.TabIndex = 32;
     this.radioButton1.TabStop = true;
     this.radioButton1.Text = "反选";
     this.radioButton1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.radioButton1, null);
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.coreBind.SetDatabasecommand(this.radioButton2, null);
     this.radioButton2.Font = new System.Drawing.Font("宋体", 10F);
     this.radioButton2.Location = new System.Drawing.Point(489, 0);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(53, 18);
     this.radioButton2.TabIndex = 31;
     this.radioButton2.Text = "全选";
     this.radioButton2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.radioButton2, null);
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "计量数据";
     this.ultraGrid1.DataSource = this.dataSet2;
     ultraGridColumn63.Header.VisiblePosition = 0;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn63.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn64.Header.VisiblePosition = 1;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn64.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn65.Header.VisiblePosition = 2;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn65.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn65.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn66.Header.VisiblePosition = 3;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn66.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn67.Header.VisiblePosition = 4;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn67.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn68.Header.VisiblePosition = 5;
     ultraGridColumn68.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn68.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn68.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn68.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn69.Header.VisiblePosition = 6;
     ultraGridColumn69.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn69.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn69.RowLayoutColumnInfo.ParentGroupKey = "预报重量";
     ultraGridColumn69.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn69.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn69.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn69.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn70.Header.VisiblePosition = 7;
     ultraGridColumn70.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn70.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn70.RowLayoutColumnInfo.ParentGroupKey = "预报重量";
     ultraGridColumn70.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn70.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn70.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn70.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn71.Header.VisiblePosition = 8;
     ultraGridColumn71.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn71.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn71.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn71.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn72.Header.VisiblePosition = 9;
     ultraGridColumn72.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn72.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn72.RowLayoutColumnInfo.ParentGroupKey = "毛重信息";
     ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn72.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn72.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn72.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn73.Header.VisiblePosition = 10;
     ultraGridColumn73.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn73.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn73.RowLayoutColumnInfo.ParentGroupKey = "毛重信息";
     ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn73.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn73.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn74.Header.VisiblePosition = 11;
     ultraGridColumn74.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn74.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn74.RowLayoutColumnInfo.ParentGroupKey = "毛重信息";
     ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn74.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn74.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn75.Header.VisiblePosition = 12;
     ultraGridColumn75.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn75.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn75.RowLayoutColumnInfo.ParentGroupKey = "毛重信息";
     ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn75.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn75.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn75.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn76.Header.VisiblePosition = 13;
     ultraGridColumn76.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn76.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn76.RowLayoutColumnInfo.ParentGroupKey = "毛重信息";
     ultraGridColumn76.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn76.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn76.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn76.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn77.Header.VisiblePosition = 14;
     ultraGridColumn77.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn77.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn77.RowLayoutColumnInfo.ParentGroupKey = "皮重信息";
     ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn77.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn77.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn77.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn78.Header.VisiblePosition = 15;
     ultraGridColumn78.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn78.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn78.RowLayoutColumnInfo.ParentGroupKey = "皮重信息";
     ultraGridColumn78.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn78.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn78.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn78.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn79.Header.VisiblePosition = 16;
     ultraGridColumn79.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn79.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn79.RowLayoutColumnInfo.ParentGroupKey = "皮重信息";
     ultraGridColumn79.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn79.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn79.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn79.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn80.Header.VisiblePosition = 17;
     ultraGridColumn80.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn80.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn80.RowLayoutColumnInfo.ParentGroupKey = "皮重信息";
     ultraGridColumn80.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn80.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn80.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn80.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn81.Header.VisiblePosition = 18;
     ultraGridColumn81.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn81.RowLayoutColumnInfo.ParentGroupIndex = 1;
     ultraGridColumn81.RowLayoutColumnInfo.ParentGroupKey = "皮重信息";
     ultraGridColumn81.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn81.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn81.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn81.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn82.Header.VisiblePosition = 19;
     ultraGridColumn82.RowLayoutColumnInfo.OriginX = 46;
     ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn82.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn82.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn82.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn83.Header.VisiblePosition = 20;
     ultraGridColumn83.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn83.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn83.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn83.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn83.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn83.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn83.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn84.Header.VisiblePosition = 21;
     ultraGridColumn84.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn84.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn84.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn84.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn84.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn84.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn84.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn85.Header.VisiblePosition = 22;
     ultraGridColumn85.Hidden = true;
     ultraGridColumn85.RowLayoutColumnInfo.OriginX = 86;
     ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn85.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn85.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn85.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn85.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn86.Header.VisiblePosition = 23;
     ultraGridColumn86.Hidden = true;
     ultraGridColumn86.RowLayoutColumnInfo.OriginX = 88;
     ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn86.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn86.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn86.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn86.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn87.Header.VisiblePosition = 24;
     ultraGridColumn87.Hidden = true;
     ultraGridColumn87.RowLayoutColumnInfo.OriginX = 90;
     ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn87.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn87.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn87.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn87.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn88.Header.VisiblePosition = 25;
     ultraGridColumn88.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn88.RowLayoutColumnInfo.ParentGroupIndex = 3;
     ultraGridColumn88.RowLayoutColumnInfo.ParentGroupKey = "预报重量";
     ultraGridColumn88.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn88.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn88.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn88.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn89.Header.VisiblePosition = 26;
     ultraGridColumn89.Hidden = true;
     ultraGridColumn89.RowLayoutColumnInfo.OriginX = 92;
     ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn89.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn89.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn89.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn89.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn90.Header.VisiblePosition = 27;
     ultraGridColumn90.Hidden = true;
     ultraGridColumn90.RowLayoutColumnInfo.OriginX = 94;
     ultraGridColumn90.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn90.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn90.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn90.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn90.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn91.Header.VisiblePosition = 28;
     ultraGridColumn91.Hidden = true;
     ultraGridColumn91.RowLayoutColumnInfo.OriginX = 96;
     ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn91.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn91.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn91.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn92.Header.VisiblePosition = 29;
     ultraGridColumn92.Hidden = true;
     ultraGridColumn92.RowLayoutColumnInfo.OriginX = 98;
     ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn92.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn92.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn92.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn93.Header.VisiblePosition = 30;
     ultraGridColumn93.Hidden = true;
     ultraGridColumn93.RowLayoutColumnInfo.OriginX = 100;
     ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn93.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn93.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn93.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn93.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn94.Header.VisiblePosition = 31;
     ultraGridColumn94.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn94.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn94.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn94.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn95.Header.VisiblePosition = 32;
     ultraGridColumn95.Hidden = true;
     ultraGridColumn95.RowLayoutColumnInfo.OriginX = 102;
     ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn95.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn95.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn95.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn95.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn96.Header.VisiblePosition = 33;
     ultraGridColumn96.Hidden = true;
     ultraGridColumn96.RowLayoutColumnInfo.OriginX = 104;
     ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn96.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn96.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn96.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn96.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn97.Header.VisiblePosition = 34;
     ultraGridColumn97.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn97.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn97.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn97.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn97.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn97.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn97.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn98.Header.VisiblePosition = 35;
     ultraGridColumn98.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn98.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn98.RowLayoutColumnInfo.ParentGroupKey = "卸车信息";
     ultraGridColumn98.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn98.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn98.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn98.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn99.Header.VisiblePosition = 36;
     ultraGridColumn99.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn99.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn99.RowLayoutColumnInfo.ParentGroupKey = "卸车信息";
     ultraGridColumn99.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn99.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn99.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn99.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn100.Header.VisiblePosition = 37;
     ultraGridColumn100.Hidden = true;
     ultraGridColumn100.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn100.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn100.RowLayoutColumnInfo.ParentGroupKey = "卸车信息";
     ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn100.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 39);
     ultraGridColumn100.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn100.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn101.Header.VisiblePosition = 38;
     ultraGridColumn101.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn101.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn101.RowLayoutColumnInfo.ParentGroupKey = "验收信息";
     ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn101.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn101.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn101.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn102.Header.VisiblePosition = 39;
     ultraGridColumn102.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn102.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn102.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn102.RowLayoutColumnInfo.ParentGroupKey = "验收信息";
     ultraGridColumn102.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn102.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn102.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn102.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn103.Header.VisiblePosition = 40;
     ultraGridColumn103.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn103.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn103.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn103.RowLayoutColumnInfo.ParentGroupKey = "验收信息";
     ultraGridColumn103.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn103.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn103.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn103.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn104.Header.VisiblePosition = 41;
     ultraGridColumn104.Hidden = true;
     ultraGridColumn104.RowLayoutColumnInfo.OriginX = 106;
     ultraGridColumn104.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn104.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn104.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn104.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn104.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn105.Header.VisiblePosition = 42;
     ultraGridColumn105.Hidden = true;
     ultraGridColumn105.RowLayoutColumnInfo.OriginX = 108;
     ultraGridColumn105.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn105.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn105.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn105.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn105.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn106.Header.VisiblePosition = 43;
     ultraGridColumn106.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn106.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn106.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn106.RowLayoutColumnInfo.ParentGroupKey = "扣渣信息";
     ultraGridColumn106.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn106.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn106.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn106.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn107.Header.VisiblePosition = 44;
     ultraGridColumn107.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn107.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn107.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn107.RowLayoutColumnInfo.ParentGroupKey = "扣渣信息";
     ultraGridColumn107.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn107.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn107.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn107.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn108.Header.VisiblePosition = 45;
     ultraGridColumn108.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn108.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn108.RowLayoutColumnInfo.ParentGroupIndex = 6;
     ultraGridColumn108.RowLayoutColumnInfo.ParentGroupKey = "扣渣信息";
     ultraGridColumn108.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn108.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn108.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn108.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn109.Header.VisiblePosition = 46;
     ultraGridColumn109.Hidden = true;
     ultraGridColumn109.RowLayoutColumnInfo.OriginX = 110;
     ultraGridColumn109.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn109.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn109.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn109.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn109.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn110.Header.VisiblePosition = 47;
     ultraGridColumn110.Hidden = true;
     ultraGridColumn110.RowLayoutColumnInfo.OriginX = 112;
     ultraGridColumn110.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn110.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn110.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn110.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn110.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn111.Header.VisiblePosition = 48;
     ultraGridColumn111.Hidden = true;
     ultraGridColumn111.RowLayoutColumnInfo.OriginX = 114;
     ultraGridColumn111.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn111.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn111.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn111.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn111.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn112.Header.VisiblePosition = 49;
     ultraGridColumn112.Hidden = true;
     ultraGridColumn112.RowLayoutColumnInfo.OriginX = 116;
     ultraGridColumn112.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn112.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn112.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn112.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn112.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn113.Header.VisiblePosition = 50;
     ultraGridColumn113.Hidden = true;
     ultraGridColumn113.RowLayoutColumnInfo.OriginX = 118;
     ultraGridColumn113.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn113.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn113.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn113.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn113.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn114.Header.VisiblePosition = 51;
     ultraGridColumn114.Hidden = true;
     ultraGridColumn114.RowLayoutColumnInfo.OriginX = 120;
     ultraGridColumn114.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn114.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn114.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn114.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn114.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn115.Header.VisiblePosition = 52;
     ultraGridColumn115.RowLayoutColumnInfo.OriginX = 122;
     ultraGridColumn115.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn115.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn115.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn115.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn115.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn116.Header.VisiblePosition = 53;
     ultraGridColumn116.Hidden = true;
     ultraGridColumn116.RowLayoutColumnInfo.OriginX = 124;
     ultraGridColumn116.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn116.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn116.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn116.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn116.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn117.Header.VisiblePosition = 54;
     ultraGridColumn117.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn117.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn117.RowLayoutColumnInfo.ParentGroupIndex = 7;
     ultraGridColumn117.RowLayoutColumnInfo.ParentGroupKey = "复磅信息";
     ultraGridColumn117.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn117.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn117.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn117.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn118.Header.VisiblePosition = 55;
     ultraGridColumn118.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn118.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn118.RowLayoutColumnInfo.ParentGroupIndex = 7;
     ultraGridColumn118.RowLayoutColumnInfo.ParentGroupKey = "复磅信息";
     ultraGridColumn118.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn118.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn118.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn118.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn119.Header.VisiblePosition = 56;
     ultraGridColumn119.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn119.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn119.RowLayoutColumnInfo.ParentGroupIndex = 7;
     ultraGridColumn119.RowLayoutColumnInfo.ParentGroupKey = "复磅信息";
     ultraGridColumn119.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn119.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn119.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn119.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn120.Header.VisiblePosition = 57;
     ultraGridColumn120.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn120.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn120.RowLayoutColumnInfo.ParentGroupIndex = 7;
     ultraGridColumn120.RowLayoutColumnInfo.ParentGroupKey = "复磅信息";
     ultraGridColumn120.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn120.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn120.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn120.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn121.Header.VisiblePosition = 58;
     ultraGridColumn121.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn121.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn121.RowLayoutColumnInfo.ParentGroupIndex = 5;
     ultraGridColumn121.RowLayoutColumnInfo.ParentGroupKey = "验收信息";
     ultraGridColumn121.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn121.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn121.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn121.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn122.Header.VisiblePosition = 59;
     ultraGridColumn122.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn122.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn122.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn122.RowLayoutColumnInfo.ParentGroupKey = "卸车信息";
     ultraGridColumn122.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn122.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn122.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn122.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn123.Header.VisiblePosition = 60;
     ultraGridColumn123.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn123.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn123.RowLayoutColumnInfo.ParentGroupIndex = 2;
     ultraGridColumn123.RowLayoutColumnInfo.ParentGroupKey = "取样信息";
     ultraGridColumn123.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn123.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn123.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn123.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn124.Header.VisiblePosition = 61;
     ultraGridColumn124.Hidden = true;
     ultraGridColumn124.RowLayoutColumnInfo.OriginX = 126;
     ultraGridColumn124.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn124.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn124.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn124.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn124.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn125.Header.VisiblePosition = 62;
     ultraGridColumn125.Hidden = true;
     ultraGridColumn125.RowLayoutColumnInfo.OriginX = 128;
     ultraGridColumn125.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn125.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn125.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn125.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn125.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn126.Header.VisiblePosition = 63;
     ultraGridColumn126.Hidden = true;
     ultraGridColumn126.RowLayoutColumnInfo.OriginX = 130;
     ultraGridColumn126.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn126.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn126.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn126.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn126.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn127.Header.VisiblePosition = 64;
     ultraGridColumn127.Hidden = true;
     ultraGridColumn127.RowLayoutColumnInfo.OriginX = 132;
     ultraGridColumn127.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn127.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn127.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn127.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn127.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn128.Header.VisiblePosition = 65;
     ultraGridColumn128.Hidden = true;
     ultraGridColumn128.RowLayoutColumnInfo.OriginX = 134;
     ultraGridColumn128.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn128.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn128.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn128.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn128.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn129.Header.VisiblePosition = 66;
     ultraGridColumn129.Hidden = true;
     ultraGridColumn129.RowLayoutColumnInfo.OriginX = 136;
     ultraGridColumn129.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn129.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn129.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn129.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn129.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn130.Header.VisiblePosition = 67;
     ultraGridColumn130.Hidden = true;
     ultraGridColumn130.RowLayoutColumnInfo.OriginX = 138;
     ultraGridColumn130.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn130.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn130.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn130.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn130.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn131.Header.VisiblePosition = 68;
     ultraGridColumn131.Hidden = true;
     ultraGridColumn131.RowLayoutColumnInfo.OriginX = 140;
     ultraGridColumn131.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn131.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn131.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn131.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn131.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn132.Header.VisiblePosition = 69;
     ultraGridColumn132.Hidden = true;
     ultraGridColumn132.RowLayoutColumnInfo.OriginX = 142;
     ultraGridColumn132.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn132.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn132.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn132.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn132.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn133.Header.VisiblePosition = 70;
     ultraGridColumn133.Hidden = true;
     ultraGridColumn133.RowLayoutColumnInfo.OriginX = 144;
     ultraGridColumn133.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn133.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn133.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn133.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn133.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn134.Header.VisiblePosition = 71;
     ultraGridColumn134.Hidden = true;
     ultraGridColumn134.RowLayoutColumnInfo.OriginX = 146;
     ultraGridColumn134.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn134.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn134.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn134.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn134.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn135.Header.VisiblePosition = 72;
     ultraGridColumn135.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn135.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn135.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 21);
     ultraGridColumn135.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn135.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn135.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn136.Header.VisiblePosition = 73;
     ultraGridColumn136.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn136.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn136.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 21);
     ultraGridColumn136.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 48);
     ultraGridColumn136.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn136.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn136.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn137.Header.VisiblePosition = 74;
     ultraGridColumn137.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn137.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn137.RowLayoutColumnInfo.ParentGroupIndex = 4;
     ultraGridColumn137.RowLayoutColumnInfo.ParentGroupKey = "卸车信息";
     ultraGridColumn137.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn137.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn63,
     ultraGridColumn64,
     ultraGridColumn65,
     ultraGridColumn66,
     ultraGridColumn67,
     ultraGridColumn68,
     ultraGridColumn69,
     ultraGridColumn70,
     ultraGridColumn71,
     ultraGridColumn72,
     ultraGridColumn73,
     ultraGridColumn74,
     ultraGridColumn75,
     ultraGridColumn76,
     ultraGridColumn77,
     ultraGridColumn78,
     ultraGridColumn79,
     ultraGridColumn80,
     ultraGridColumn81,
     ultraGridColumn82,
     ultraGridColumn83,
     ultraGridColumn84,
     ultraGridColumn85,
     ultraGridColumn86,
     ultraGridColumn87,
     ultraGridColumn88,
     ultraGridColumn89,
     ultraGridColumn90,
     ultraGridColumn91,
     ultraGridColumn92,
     ultraGridColumn93,
     ultraGridColumn94,
     ultraGridColumn95,
     ultraGridColumn96,
     ultraGridColumn97,
     ultraGridColumn98,
     ultraGridColumn99,
     ultraGridColumn100,
     ultraGridColumn101,
     ultraGridColumn102,
     ultraGridColumn103,
     ultraGridColumn104,
     ultraGridColumn105,
     ultraGridColumn106,
     ultraGridColumn107,
     ultraGridColumn108,
     ultraGridColumn109,
     ultraGridColumn110,
     ultraGridColumn111,
     ultraGridColumn112,
     ultraGridColumn113,
     ultraGridColumn114,
     ultraGridColumn115,
     ultraGridColumn116,
     ultraGridColumn117,
     ultraGridColumn118,
     ultraGridColumn119,
     ultraGridColumn120,
     ultraGridColumn121,
     ultraGridColumn122,
     ultraGridColumn123,
     ultraGridColumn124,
     ultraGridColumn125,
     ultraGridColumn126,
     ultraGridColumn127,
     ultraGridColumn128,
     ultraGridColumn129,
     ultraGridColumn130,
     ultraGridColumn131,
     ultraGridColumn132,
     ultraGridColumn133,
     ultraGridColumn134,
     ultraGridColumn135,
     ultraGridColumn136,
     ultraGridColumn137});
     ultraGridGroup5.Key = "毛重信息";
     ultraGridGroup5.RowLayoutGroupInfo.OriginX = 26;
     ultraGridGroup5.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup5.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup5.RowLayoutGroupInfo.SpanX = 10;
     ultraGridGroup5.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup6.Key = "皮重信息";
     ultraGridGroup6.RowLayoutGroupInfo.OriginX = 36;
     ultraGridGroup6.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup6.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup6.RowLayoutGroupInfo.SpanX = 10;
     ultraGridGroup6.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup7.Key = "取样信息";
     ultraGridGroup7.RowLayoutGroupInfo.OriginX = 48;
     ultraGridGroup7.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup7.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup7.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup7.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup8.Key = "预报重量";
     ultraGridGroup8.RowLayoutGroupInfo.OriginX = 18;
     ultraGridGroup8.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup8.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup8.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup8.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup9.Key = "卸车信息";
     ultraGridGroup9.RowLayoutGroupInfo.OriginX = 56;
     ultraGridGroup9.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup9.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup9.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup9.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup10.Key = "验收信息";
     ultraGridGroup10.RowLayoutGroupInfo.OriginX = 78;
     ultraGridGroup10.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup10.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup10.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup10.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup11.Key = "扣渣信息";
     ultraGridGroup11.RowLayoutGroupInfo.OriginX = 64;
     ultraGridGroup11.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup11.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup11.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup11.RowLayoutGroupInfo.SpanY = 4;
     ultraGridGroup12.Key = "复磅信息";
     ultraGridGroup12.RowLayoutGroupInfo.OriginX = 70;
     ultraGridGroup12.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup12.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
     ultraGridGroup12.RowLayoutGroupInfo.SpanX = 8;
     ultraGridGroup12.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand2.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup5,
     ultraGridGroup6,
     ultraGridGroup7,
     ultraGridGroup8,
     ultraGridGroup9,
     ultraGridGroup10,
     ultraGridGroup11,
     ultraGridGroup12});
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = "拖动列标题到此,按该列进行分组";
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance27.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance27;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance28.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance28;
     appearance29.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance29;
     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;
     appearance30.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance30.TextHAlignAsString = "Center";
     appearance30.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance30;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance31.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance31;
     appearance32.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance32;
     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;
     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.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance33;
     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.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Location = new System.Drawing.Point(3, 21);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1278, 270);
     this.ultraGrid1.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
     //
     // dataSet2
     //
     this.dataSet2.DataSetName = "NewDataSet";
     this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable3,
     this.dataTable4,
     this.dataTable5});
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn68,
     this.dataColumn69,
     this.dataColumn70,
     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.dataColumn88,
     this.dataColumn89,
     this.dataColumn90,
     this.dataColumn91,
     this.dataColumn92,
     this.dataColumn93,
     this.dataColumn116,
     this.dataColumn117,
     this.dataColumn118,
     this.dataColumn119,
     this.dataColumn120,
     this.dataColumn121,
     this.dataColumn122,
     this.dataColumn123,
     this.dataColumn124,
     this.dataColumn125,
     this.dataColumn126,
     this.dataColumn127,
     this.dataColumn128,
     this.dataColumn157,
     this.dataColumn158,
     this.dataColumn160,
     this.dataColumn162,
     this.dataColumn223});
     this.dataTable3.TableName = "计量数据";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "合同号";
     this.dataColumn31.ColumnName = "FS_CONTRACTNO";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "车号";
     this.dataColumn32.ColumnName = "FS_CARNO";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "物料名称";
     this.dataColumn37.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "发货单位";
     this.dataColumn38.ColumnName = "FS_SENDERNAME";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "承运单位";
     this.dataColumn39.ColumnName = "FS_TRANSNAME";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "收货单位";
     this.dataColumn40.ColumnName = "FS_RECEIVERNAME";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "预报总重";
     this.dataColumn41.ColumnName = "FN_SENDGROSSWEIGHT";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "预报皮重";
     this.dataColumn42.ColumnName = "FN_SENDTAREWEIGHT";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "流向";
     this.dataColumn43.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "毛重";
     this.dataColumn44.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "毛重计量点";
     this.dataColumn45.ColumnName = "FS_GROSSPOINT";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "毛重计量员";
     this.dataColumn46.ColumnName = "FS_GROSSPERSON";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "毛重计量时间";
     this.dataColumn47.ColumnName = "FD_GROSSDATETIME";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "毛重计量班次";
     this.dataColumn48.ColumnName = "FS_GROSSSHIFT";
     //
     // dataColumn49
     //
     this.dataColumn49.Caption = "皮重";
     this.dataColumn49.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "皮重计量点";
     this.dataColumn50.ColumnName = "FS_TAREPOINT";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "皮重计量员";
     this.dataColumn52.ColumnName = "FS_TAREPERSON";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "皮重计量时间";
     this.dataColumn53.ColumnName = "FD_TAREDATETIME";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "皮重计量班次";
     this.dataColumn54.ColumnName = "FS_TARESHIFT";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "净重";
     this.dataColumn55.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "取样时间";
     this.dataColumn56.ColumnName = "FD_SAMPLETIME";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "取样员";
     this.dataColumn57.ColumnName = "FS_SAMPLEPERSON";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "上传时间";
     this.dataColumn58.ColumnName = "FD_TOCENTERTIME";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "计量重磅日期";
     this.dataColumn59.ColumnName = "FD_ACCOUNTDATE";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "上传的日期";
     this.dataColumn60.ColumnName = "FD_TESTIFYDATE";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "预报净量";
     this.dataColumn61.ColumnName = "FN_SENDNETWEIGHT";
     //
     // dataColumn62
     //
     this.dataColumn62.Caption = "供应商代码";
     this.dataColumn62.ColumnName = "FS_GY";
     //
     // dataColumn63
     //
     this.dataColumn63.Caption = "承运商代码";
     this.dataColumn63.ColumnName = "FS_CY";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "收货方代码";
     this.dataColumn64.ColumnName = "FS_SH";
     //
     // dataColumn65
     //
     this.dataColumn65.Caption = "流向代码";
     this.dataColumn65.ColumnName = "FS_TYPECODE";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "物料编号";
     this.dataColumn66.ColumnName = "FS_MATERIAL";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "计量编号";
     this.dataColumn67.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "记账日期";
     this.dataColumn68.ColumnName = "FS_JZDATE";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "外协标志";
     this.dataColumn69.ColumnName = "FS_WXPAYFLAG";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "取样点";
     this.dataColumn70.ColumnName = "FS_SAMPLEPLACE";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "卸车员";
     this.dataColumn72.ColumnName = "FS_UNLOADPERSON";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "卸车时间";
     this.dataColumn73.ColumnName = "FD_UNLOADTIME";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "卸车点";
     this.dataColumn74.ColumnName = "FS_UNLOADPLACE";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "验收员";
     this.dataColumn75.ColumnName = "FS_CHECKPERSON";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "验收时间";
     this.dataColumn76.ColumnName = "FD_CHECKTIME";
     //
     // dataColumn77
     //
     this.dataColumn77.Caption = "验收点";
     this.dataColumn77.ColumnName = "FS_CHECKPLACE";
     //
     // dataColumn78
     //
     this.dataColumn78.Caption = "结算单号";
     this.dataColumn78.ColumnName = "FS_JSDH";
     //
     // dataColumn79
     //
     this.dataColumn79.Caption = "财务确认";
     this.dataColumn79.ColumnName = "FS_CWQR";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "应扣量(kg)";
     this.dataColumn80.ColumnName = "FS_YKL";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "应扣比例(%)";
     this.dataColumn81.ColumnName = "FS_YKBL";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "扣后净重(t)";
     this.dataColumn82.ColumnName = "FS_KHJZ";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "收货地点";
     this.dataColumn83.ColumnName = "FS_RECEIVERSTORE";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "发货地点";
     this.dataColumn84.ColumnName = "FS_SENDERSTORE";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "磅房启用状态";
     this.dataColumn85.ColumnName = "FS_DATASTATE";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "炉号";
     this.dataColumn86.ColumnName = "FS_STOVENO";
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "供应单位代码";
     this.dataColumn87.ColumnName = "FS_PROVIDER";
     //
     // dataColumn88
     //
     this.dataColumn88.Caption = "供应单位";
     this.dataColumn88.ColumnName = "FS_PROVIDERNAME";
     //
     // dataColumn89
     //
     this.dataColumn89.Caption = "收货备注";
     this.dataColumn89.ColumnName = "FS_BZ";
     //
     // dataColumn90
     //
     this.dataColumn90.Caption = "录入状态";
     this.dataColumn90.ColumnName = "FS_MEMO";
     //
     // dataColumn91
     //
     this.dataColumn91.Caption = "复磅确认员";
     this.dataColumn91.ColumnName = "FS_REWEIGHTPERSON";
     //
     // dataColumn92
     //
     this.dataColumn92.Caption = "复磅确认点";
     this.dataColumn92.ColumnName = "FS_REWEIGHTPLACE";
     //
     // dataColumn93
     //
     this.dataColumn93.Caption = "复磅确认时间";
     this.dataColumn93.ColumnName = "FD_REWEIGHTTIME";
     //
     // dataColumn116
     //
     this.dataColumn116.Caption = "复磅标记";
     this.dataColumn116.ColumnName = "FS_REWEIGHTFLAG";
     //
     // dataColumn117
     //
     this.dataColumn117.Caption = "验收确认";
     this.dataColumn117.ColumnName = "FS_CHECKFLAG";
     //
     // dataColumn118
     //
     this.dataColumn118.Caption = "卸货确认";
     this.dataColumn118.ColumnName = "FS_UNLOADFLAG";
     //
     // dataColumn119
     //
     this.dataColumn119.Caption = "取样确认";
     this.dataColumn119.ColumnName = "FS_SAMPLEFLAG";
     //
     // dataColumn120
     //
     this.dataColumn120.Caption = "结算日期";
     this.dataColumn120.ColumnName = "FS_CREATEJSRQ";
     //
     // dataColumn121
     //
     this.dataColumn121.Caption = "矿石单价(元)";
     this.dataColumn121.ColumnName = "FN_KSDJ";
     //
     // dataColumn122
     //
     this.dataColumn122.Caption = "发货日期";
     this.dataColumn122.ColumnName = "FD_FHRQ";
     //
     // dataColumn123
     //
     this.dataColumn123.Caption = "运费单价";
     this.dataColumn123.ColumnName = "FN_YFDJ";
     //
     // dataColumn124
     //
     this.dataColumn124.Caption = "超额途耗";
     this.dataColumn124.ColumnName = "FN_CETH";
     //
     // dataColumn125
     //
     this.dataColumn125.Caption = "实际途耗";
     this.dataColumn125.ColumnName = "FN_SJTH";
     //
     // dataColumn126
     //
     this.dataColumn126.Caption = "扣途耗";
     this.dataColumn126.ColumnName = "FN_KTH";
     //
     // dataColumn127
     //
     this.dataColumn127.Caption = "应付金额";
     this.dataColumn127.ColumnName = "FN_YFJE";
     //
     // dataColumn128
     //
     this.dataColumn128.Caption = "发货净重";
     this.dataColumn128.ColumnName = "FN_FHJZ";
     //
     // dataColumn157
     //
     this.dataColumn157.Caption = "实付金额";
     this.dataColumn157.ColumnName = "FN_SFJE";
     //
     // dataColumn158
     //
     this.dataColumn158.Caption = "二次计量时间";
     this.dataColumn158.ColumnName = "FD_ECJLSJ";
     //
     // dataColumn160
     //
     this.dataColumn160.Caption = "车证卡号";
     this.dataColumn160.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn162
     //
     this.dataColumn162.Caption = "选择";
     this.dataColumn162.ColumnName = "CHOOSEN";
     //
     // dataColumn223
     //
     this.dataColumn223.Caption = "卸货备注";
     this.dataColumn223.ColumnName = "FS_UNLOADMEMO";
     //
     // dataTable4
     //
     this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn164,
     this.dataColumn165,
     this.dataColumn166,
     this.dataColumn171,
     this.dataColumn172,
     this.dataColumn173,
     this.dataColumn174,
     this.dataColumn175,
     this.dataColumn213,
     this.dataColumn214,
     this.dataColumn215,
     this.dataColumn216,
     this.dataColumn217,
     this.dataColumn218,
     this.dataColumn219,
     this.dataColumn220});
     this.dataTable4.TableName = "计量图片";
     //
     // dataColumn164
     //
     this.dataColumn164.ColumnName = "FB_IMAGE1";
     this.dataColumn164.DataType = typeof(byte[]);
     //
     // dataColumn165
     //
     this.dataColumn165.ColumnName = "FB_IMAGE2";
     this.dataColumn165.DataType = typeof(byte[]);
     //
     // dataColumn166
     //
     this.dataColumn166.ColumnName = "FB_IMAGE3";
     this.dataColumn166.DataType = typeof(byte[]);
     //
     // dataColumn171
     //
     this.dataColumn171.ColumnName = "FB_IMAGE4";
     this.dataColumn171.DataType = typeof(byte[]);
     //
     // dataColumn172
     //
     this.dataColumn172.ColumnName = "FB_IMAGE5";
     this.dataColumn172.DataType = typeof(byte[]);
     //
     // dataColumn173
     //
     this.dataColumn173.ColumnName = "FB_IMAGE6";
     this.dataColumn173.DataType = typeof(byte[]);
     //
     // dataColumn174
     //
     this.dataColumn174.ColumnName = "FB_IMAGE7";
     this.dataColumn174.DataType = typeof(byte[]);
     //
     // dataColumn175
     //
     this.dataColumn175.ColumnName = "FS_CURVEIMAGEONE";
     //
     // dataColumn213
     //
     this.dataColumn213.ColumnName = "FB_IMAGE9";
     this.dataColumn213.DataType = typeof(byte[]);
     //
     // dataColumn214
     //
     this.dataColumn214.ColumnName = "FB_IMAGE10";
     this.dataColumn214.DataType = typeof(byte[]);
     //
     // dataColumn215
     //
     this.dataColumn215.ColumnName = "FB_IMAGE11";
     this.dataColumn215.DataType = typeof(byte[]);
     //
     // dataColumn216
     //
     this.dataColumn216.ColumnName = "FB_IMAGE12";
     this.dataColumn216.DataType = typeof(byte[]);
     //
     // dataColumn217
     //
     this.dataColumn217.ColumnName = "FB_IMAGE13";
     this.dataColumn217.DataType = typeof(byte[]);
     //
     // dataColumn218
     //
     this.dataColumn218.ColumnName = "FB_IMAGE14";
     this.dataColumn218.DataType = typeof(byte[]);
     //
     // dataColumn219
     //
     this.dataColumn219.ColumnName = "FB_IMAGE15";
     this.dataColumn219.DataType = typeof(byte[]);
     //
     // dataColumn220
     //
     this.dataColumn220.ColumnName = "FS_CURVEIMAGETWO";
     //
     // dataTable5
     //
     this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn221});
     this.dataTable5.TableName = "计量点编号";
     //
     // dataColumn221
     //
     this.dataColumn221.ColumnName = "FS_POINTCODE";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel3.Controls.Add(this.label1);
     this.panel3.Controls.Add(this.txtMemoXiehuo);
     this.panel3.Controls.Add(this.checkBox1);
     this.panel3.Controls.Add(this.radiobl);
     this.panel3.Controls.Add(this.radiozl);
     this.panel3.Controls.Add(this.txtweightno);
     this.panel3.Controls.Add(this.label6);
     this.panel3.Controls.Add(this.label4);
     this.panel3.Controls.Add(this.label3);
     this.panel3.Controls.Add(this.label2);
     this.panel3.Controls.Add(this.txtCarEditNo);
     this.panel3.Controls.Add(this.label25);
     this.panel3.Controls.Add(this.txtKHJZ);
     this.panel3.Controls.Add(this.label14);
     this.panel3.Controls.Add(this.txtYKBL);
     this.panel3.Controls.Add(this.label15);
     this.panel3.Controls.Add(this.txtYKL);
     this.panel3.Controls.Add(this.label16);
     this.panel3.Controls.Add(this.txtKZQR);
     this.panel3.Controls.Add(this.label18);
     this.panel3.Controls.Add(this.txtKZR);
     this.panel3.Controls.Add(this.label19);
     this.panel3.Controls.Add(this.txtConfirm);
     this.panel3.Controls.Add(this.label20);
     this.panel3.Controls.Add(this.txtQYSJ);
     this.panel3.Controls.Add(this.label21);
     this.panel3.Controls.Add(this.txtQYR);
     this.panel3.Controls.Add(this.label22);
     this.panel3.Controls.Add(this.txtXHQR);
     this.panel3.Controls.Add(this.label23);
     this.panel3.Controls.Add(this.txtXHSJ);
     this.panel3.Controls.Add(this.label24);
     this.panel3.Controls.Add(this.txtXHR);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 602);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1284, 61);
     this.panel3.TabIndex = 5;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.checkBox1, null);
     this.checkBox1.Location = new System.Drawing.Point(311, 2);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 61;
     this.checkBox1.Text = "是否扣渣";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.checkBox1, null);
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // radiobl
     //
     this.radiobl.AutoSize = true;
     this.radiobl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.coreBind.SetDatabasecommand(this.radiobl, null);
     this.radiobl.Font = new System.Drawing.Font("宋体", 10F);
     this.radiobl.Location = new System.Drawing.Point(168, 2);
     this.radiobl.Name = "radiobl";
     this.radiobl.Size = new System.Drawing.Size(95, 18);
     this.radiobl.TabIndex = 60;
     this.radiobl.Text = "按比例扣渣";
     this.radiobl.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.radiobl, null);
     this.radiobl.CheckedChanged += new System.EventHandler(this.radiobl_CheckedChanged);
     //
     // radiozl
     //
     this.radiozl.AutoSize = true;
     this.radiozl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.radiozl.Checked = true;
     this.coreBind.SetDatabasecommand(this.radiozl, null);
     this.radiozl.Font = new System.Drawing.Font("宋体", 10F);
     this.radiozl.Location = new System.Drawing.Point(66, 2);
     this.radiozl.Name = "radiozl";
     this.radiozl.Size = new System.Drawing.Size(95, 18);
     this.radiozl.TabIndex = 59;
     this.radiozl.TabStop = true;
     this.radiozl.Text = "按重量扣渣";
     this.radiozl.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.radiozl, null);
     this.radiozl.TextChanged += new System.EventHandler(this.radiozl_TextChanged);
     this.radiozl.CheckedChanged += new System.EventHandler(this.radiozl_CheckedChanged);
     //
     // txtweightno
     //
     this.coreBind.SetDatabasecommand(this.txtweightno, null);
     this.txtweightno.Location = new System.Drawing.Point(1199, 28);
     this.txtweightno.Name = "txtweightno";
     this.txtweightno.Size = new System.Drawing.Size(65, 21);
     this.txtweightno.TabIndex = 58;
     this.coreBind.SetVerification(this.txtweightno, null);
     this.txtweightno.Visible = false;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Location = new System.Drawing.Point(544, 28);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(11, 12);
     this.label6.TabIndex = 57;
     this.label6.Text = "t";
     this.coreBind.SetVerification(this.label6, null);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Location = new System.Drawing.Point(378, 28);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(11, 12);
     this.label4.TabIndex = 56;
     this.label4.Text = "%";
     this.coreBind.SetVerification(this.label4, null);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Location = new System.Drawing.Point(192, 28);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(29, 12);
     this.label3.TabIndex = 55;
     this.label3.Text = "千克";
     this.coreBind.SetVerification(this.label3, null);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label2, null);
     this.label2.Location = new System.Drawing.Point(1059, 31);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 54;
     this.label2.Text = "车号";
     this.coreBind.SetVerification(this.label2, null);
     this.label2.Visible = false;
     //
     // txtCarEditNo
     //
     this.coreBind.SetDatabasecommand(this.txtCarEditNo, null);
     this.txtCarEditNo.Location = new System.Drawing.Point(1078, 27);
     this.txtCarEditNo.Name = "txtCarEditNo";
     this.txtCarEditNo.Size = new System.Drawing.Size(100, 21);
     this.txtCarEditNo.TabIndex = 53;
     this.coreBind.SetVerification(this.txtCarEditNo, null);
     this.txtCarEditNo.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label25, null);
     this.label25.Location = new System.Drawing.Point(404, 28);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(53, 12);
     this.label25.TabIndex = 52;
     this.label25.Text = "扣后重量";
     this.coreBind.SetVerification(this.label25, null);
     //
     // txtKHJZ
     //
     this.txtKHJZ.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.txtKHJZ, null);
     this.txtKHJZ.Enabled = false;
     this.txtKHJZ.Location = new System.Drawing.Point(462, 24);
     this.txtKHJZ.Name = "txtKHJZ";
     this.txtKHJZ.Size = new System.Drawing.Size(79, 21);
     this.txtKHJZ.TabIndex = 51;
     this.coreBind.SetVerification(this.txtKHJZ, null);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.Location = new System.Drawing.Point(231, 27);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(53, 12);
     this.label14.TabIndex = 50;
     this.label14.Text = "应扣比例";
     this.coreBind.SetVerification(this.label14, null);
     //
     // txtYKBL
     //
     this.coreBind.SetDatabasecommand(this.txtYKBL, null);
     this.txtYKBL.Location = new System.Drawing.Point(288, 24);
     this.txtYKBL.Name = "txtYKBL";
     this.txtYKBL.Size = new System.Drawing.Size(87, 21);
     this.txtYKBL.TabIndex = 49;
     this.coreBind.SetVerification(this.txtYKBL, null);
     this.txtYKBL.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtYKBL_KeyUp);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.Location = new System.Drawing.Point(64, 28);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(41, 12);
     this.label15.TabIndex = 48;
     this.label15.Text = "应扣量";
     this.coreBind.SetVerification(this.label15, null);
     //
     // txtYKL
     //
     this.coreBind.SetDatabasecommand(this.txtYKL, null);
     this.txtYKL.Location = new System.Drawing.Point(113, 24);
     this.txtYKL.Name = "txtYKL";
     this.txtYKL.Size = new System.Drawing.Size(78, 21);
     this.txtYKL.TabIndex = 47;
     this.coreBind.SetVerification(this.txtYKL, null);
     this.txtYKL.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtYKL_KeyUp);
     this.txtYKL.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtYKL_KeyPress);
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label16, null);
     this.label16.Location = new System.Drawing.Point(756, 31);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(53, 12);
     this.label16.TabIndex = 46;
     this.label16.Text = "扣渣确认";
     this.coreBind.SetVerification(this.label16, null);
     this.label16.Visible = false;
     //
     // txtKZQR
     //
     this.coreBind.SetDatabasecommand(this.txtKZQR, null);
     this.txtKZQR.Location = new System.Drawing.Point(795, 28);
     this.txtKZQR.Name = "txtKZQR";
     this.txtKZQR.Size = new System.Drawing.Size(100, 21);
     this.txtKZQR.TabIndex = 45;
     this.coreBind.SetVerification(this.txtKZQR, null);
     this.txtKZQR.Visible = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label18, null);
     this.label18.Location = new System.Drawing.Point(911, 31);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(41, 12);
     this.label18.TabIndex = 44;
     this.label18.Text = "扣渣人";
     this.coreBind.SetVerification(this.label18, null);
     this.label18.Visible = false;
     //
     // txtKZR
     //
     this.coreBind.SetDatabasecommand(this.txtKZR, null);
     this.txtKZR.Location = new System.Drawing.Point(942, 28);
     this.txtKZR.Name = "txtKZR";
     this.txtKZR.Size = new System.Drawing.Size(100, 21);
     this.txtKZR.TabIndex = 43;
     this.coreBind.SetVerification(this.txtKZR, null);
     this.txtKZR.Visible = false;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label19, null);
     this.label19.Location = new System.Drawing.Point(406, 3);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(53, 12);
     this.label19.TabIndex = 42;
     this.label19.Text = "取样确认";
     this.coreBind.SetVerification(this.label19, null);
     //
     // txtConfirm
     //
     this.coreBind.SetDatabasecommand(this.txtConfirm, null);
     this.txtConfirm.Location = new System.Drawing.Point(461, 0);
     this.txtConfirm.Name = "txtConfirm";
     this.txtConfirm.Size = new System.Drawing.Size(100, 21);
     this.txtConfirm.TabIndex = 41;
     this.coreBind.SetVerification(this.txtConfirm, null);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label20, null);
     this.label20.Location = new System.Drawing.Point(232, 3);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(53, 12);
     this.label20.TabIndex = 40;
     this.label20.Text = "取样时间";
     this.coreBind.SetVerification(this.label20, null);
     //
     // txtQYSJ
     //
     this.coreBind.SetDatabasecommand(this.txtQYSJ, null);
     this.txtQYSJ.Location = new System.Drawing.Point(288, 0);
     this.txtQYSJ.Name = "txtQYSJ";
     this.txtQYSJ.Size = new System.Drawing.Size(100, 21);
     this.txtQYSJ.TabIndex = 39;
     this.coreBind.SetVerification(this.txtQYSJ, null);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label21, null);
     this.label21.Location = new System.Drawing.Point(66, 1);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 12);
     this.label21.TabIndex = 38;
     this.label21.Text = "取样人";
     this.coreBind.SetVerification(this.label21, null);
     //
     // txtQYR
     //
     this.coreBind.SetDatabasecommand(this.txtQYR, null);
     this.txtQYR.Location = new System.Drawing.Point(113, -2);
     this.txtQYR.Name = "txtQYR";
     this.txtQYR.Size = new System.Drawing.Size(100, 21);
     this.txtQYR.TabIndex = 37;
     this.coreBind.SetVerification(this.txtQYR, null);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label22, null);
     this.label22.Location = new System.Drawing.Point(931, 3);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(53, 12);
     this.label22.TabIndex = 36;
     this.label22.Text = "卸货确认";
     this.coreBind.SetVerification(this.label22, null);
     //
     // txtXHQR
     //
     this.coreBind.SetDatabasecommand(this.txtXHQR, null);
     this.txtXHQR.Location = new System.Drawing.Point(986, -3);
     this.txtXHQR.Name = "txtXHQR";
     this.txtXHQR.Size = new System.Drawing.Size(100, 21);
     this.txtXHQR.TabIndex = 35;
     this.coreBind.SetVerification(this.txtXHQR, null);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label23, null);
     this.label23.Location = new System.Drawing.Point(759, 3);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 12);
     this.label23.TabIndex = 34;
     this.label23.Text = "卸货时间";
     this.coreBind.SetVerification(this.label23, null);
     //
     // txtXHSJ
     //
     this.coreBind.SetDatabasecommand(this.txtXHSJ, null);
     this.txtXHSJ.Location = new System.Drawing.Point(814, -3);
     this.txtXHSJ.Name = "txtXHSJ";
     this.txtXHSJ.Size = new System.Drawing.Size(100, 21);
     this.txtXHSJ.TabIndex = 33;
     this.coreBind.SetVerification(this.txtXHSJ, null);
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label24, null);
     this.label24.Location = new System.Drawing.Point(594, 6);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(41, 12);
     this.label24.TabIndex = 32;
     this.label24.Text = "卸货人";
     this.coreBind.SetVerification(this.label24, null);
     //
     // txtXHR
     //
     this.coreBind.SetDatabasecommand(this.txtXHR, null);
     this.txtXHR.Location = new System.Drawing.Point(641, 0);
     this.txtXHR.Name = "txtXHR";
     this.txtXHR.Size = new System.Drawing.Size(100, 21);
     this.txtXHR.TabIndex = 31;
     this.coreBind.SetVerification(this.txtXHR, null);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Location = new System.Drawing.Point(582, 28);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 63;
     this.label1.Text = "卸货备注";
     this.coreBind.SetVerification(this.label1, null);
     //
     // txtMemoXiehuo
     //
     this.coreBind.SetDatabasecommand(this.txtMemoXiehuo, null);
     this.txtMemoXiehuo.Location = new System.Drawing.Point(637, 25);
     this.txtMemoXiehuo.Name = "txtMemoXiehuo";
     this.txtMemoXiehuo.Size = new System.Drawing.Size(277, 21);
     this.txtMemoXiehuo.TabIndex = 62;
     this.coreBind.SetVerification(this.txtMemoXiehuo, null);
     //
     // MeasureKouZhaNew
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1284, 689);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "MeasureKouZhaNew";
     this.Text = "扣渣取样卸货";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.MeasureDataOneQueryNew_Load);
     this.panel1.ResumeLayout(false);
     this.panel1_Fill_Panel.ResumeLayout(false);
     this.panel1_Fill_Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 55
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.Appearance appearance34 = 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_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRAINNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GROSSWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GROSSTIME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_TAREWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TARETIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_NETWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_YKL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSSHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROSSGROUP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TARESHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TAREGROUP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVESEATNO");
     Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 1202392573);
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_MATERIALNAME", 24, true, "��̬�������μ�������", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_NETWEIGHT", 14, true, "��̬�������μ�������", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_NETWEIGHT", 14, true);
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance37 = 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();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("��̬�����һ�μ�������", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDERSTORENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVERSTORENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRAINNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_WEIGHTTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTPOINT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DELETEFLAG");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DELETEUSER");
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_DELETEDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_MATERIALNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SENDER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_RECEIVER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTNAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TRANSNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SHIFT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GROUP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STOVESEATNO");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_MATERIALNAME", 13, true, "��̬�����һ�μ�������", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("�����", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_VOICEFILE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_INSTRTYPE");
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Aedio");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btCorrention");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TrackWeightForIron));
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Aedio");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("find");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btCorrention");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane1 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedRight, new System.Guid("05deab1a-dfec-4181-9cb3-ad4fe0377535"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane1 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("89870e2b-ce2c-4fc0-9610-41bf1733973c"), new System.Guid("00000000-0000-0000-0000-000000000000"), -1, new System.Guid("05deab1a-dfec-4181-9cb3-ad4fe0377535"), -1);
     Infragistics.Win.UltraWinDock.DockAreaPane dockAreaPane2 = new Infragistics.Win.UltraWinDock.DockAreaPane(Infragistics.Win.UltraWinDock.DockedLocation.DockedRight, new System.Guid("777aa848-96d9-4a9c-8e57-ab46776d741c"));
     Infragistics.Win.UltraWinDock.DockableControlPane dockableControlPane2 = new Infragistics.Win.UltraWinDock.DockableControlPane(new System.Guid("167a762b-28a1-4b3a-b58a-b7c31ec2d826"), new System.Guid("00000000-0000-0000-0000-000000000000"), -1, new System.Guid("777aa848-96d9-4a9c-8e57-ab46776d741c"), -1);
     this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet2 = new System.Data.DataSet();
     this.dataTable6 = new System.Data.DataTable();
     this.dataColumn57 = 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.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.dataTable7 = new System.Data.DataTable();
     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.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.dataColumn81 = new System.Data.DataColumn();
     this.dataColumn92 = new System.Data.DataColumn();
     this.dataColumn156 = new System.Data.DataColumn();
     this.dataColumn157 = new System.Data.DataColumn();
     this.dataColumn158 = new System.Data.DataColumn();
     this.dataTable8 = new System.Data.DataTable();
     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.dataColumn113 = new System.Data.DataColumn();
     this.dataColumn114 = new System.Data.DataColumn();
     this.dataColumn115 = new System.Data.DataColumn();
     this.dataColumn116 = new System.Data.DataColumn();
     this.dataColumn117 = new System.Data.DataColumn();
     this.dataColumn118 = new System.Data.DataColumn();
     this.dataColumn119 = new System.Data.DataColumn();
     this.dataColumn159 = new System.Data.DataColumn();
     this.dataColumn160 = new System.Data.DataColumn();
     this.dataColumn161 = new System.Data.DataColumn();
     this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.panelYYBF = new System.Windows.Forms.Panel();
     this.uDridSound = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = 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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn142 = new System.Data.DataColumn();
     this.dataColumn143 = new System.Data.DataColumn();
     this.dataColumn144 = new System.Data.DataColumn();
     this.dataColumn145 = new System.Data.DataColumn();
     this.dataColumn146 = new System.Data.DataColumn();
     this.dataColumn147 = new System.Data.DataColumn();
     this.dataColumn148 = new System.Data.DataColumn();
     this.dataColumn149 = new System.Data.DataColumn();
     this.dataColumn150 = new System.Data.DataColumn();
     this.dataColumn151 = new System.Data.DataColumn();
     this.dataColumn152 = new System.Data.DataColumn();
     this.dataColumn153 = new System.Data.DataColumn();
     this.dataColumn154 = new System.Data.DataColumn();
     this.dataColumn155 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn21 = new System.Data.DataColumn();
     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.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataTable5 = new System.Data.DataTable();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.panelSPKZ = new System.Windows.Forms.Panel();
     this.button15 = new System.Windows.Forms.Button();
     this.button14 = new System.Windows.Forms.Button();
     this.button13 = new System.Windows.Forms.Button();
     this.button12 = new System.Windows.Forms.Button();
     this.button11 = new System.Windows.Forms.Button();
     this.button10 = new System.Windows.Forms.Button();
     this.panel8 = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.panel9 = new System.Windows.Forms.Panel();
     this.cbFlow = new System.Windows.Forms.ComboBox();
     this.cb_StoveSeatno = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.tb_Stoveno = new System.Windows.Forms.TextBox();
     this.btReceiver = new System.Windows.Forms.Button();
     this.btSender = new System.Windows.Forms.Button();
     this.btTrans = new System.Windows.Forms.Button();
     this.btMaterial = new System.Windows.Forms.Button();
     this.cbTrans = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtNetWeight = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.txtTareWeight = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cbMaterial = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.cbReceiver = new System.Windows.Forms.ComboBox();
     this.txtJly = new System.Windows.Forms.TextBox();
     this.txtWeight = new System.Windows.Forms.TextBox();
     this.cbSender = new System.Windows.Forms.ComboBox();
     this.txtJld = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtBc = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.lblCh = new System.Windows.Forms.Label();
     this.tb_POTNO = new System.Windows.Forms.TextBox();
     this.panel11 = new System.Windows.Forms.Panel();
     this.button1 = new System.Windows.Forms.Button();
     this.ck_Tare = new System.Windows.Forms.CheckBox();
     this.btnTrainTare = new System.Windows.Forms.Button();
     this.btnWc = new System.Windows.Forms.Button();
     this.btnSglr = new System.Windows.Forms.Button();
     this.btnBC = new System.Windows.Forms.Button();
     this.btnDS = new System.Windows.Forms.Button();
     this.btnQL = new System.Windows.Forms.Button();
     this.panel6 = new System.Windows.Forms.Panel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.picFDTP = new System.Windows.Forms.PictureBox();
     this.txtMeterWeight = new LxControl.LxLedControl();
     this.label2 = new System.Windows.Forms.Label();
     this.lblMaterShow = new System.Windows.Forms.Label();
     this.lblMater = new System.Windows.Forms.Label();
     this.BilletInfo_GD_Fill_Panel = new System.Windows.Forms.Panel();
     this.panel7 = new System.Windows.Forms.Panel();
     this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
     this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
     this.panel2 = new System.Windows.Forms.Panel();
     this.pnlBottom = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.VideoChannel3 = new System.Windows.Forms.PictureBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.VideoChannel2 = new System.Windows.Forms.PictureBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.VideoChannel1 = new System.Windows.Forms.PictureBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dtpEnd = new System.Windows.Forms.DateTimePicker();
     this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
     this.dateRQ = new System.Windows.Forms.DateTimePicker();
     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.ultraDockManager1 = new Infragistics.Win.UltraWinDock.UltraDockManager(this.components);
     this._MoltenInfo_OneUnpinnedTabAreaLeft = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._MoltenInfo_OneUnpinnedTabAreaRight = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._MoltenInfo_OneUnpinnedTabAreaTop = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._MoltenInfo_OneUnpinnedTabAreaBottom = new Infragistics.Win.UltraWinDock.UnpinnedTabArea();
     this._MoltenInfo_OneAutoHideControl = new Infragistics.Win.UltraWinDock.AutoHideControl();
     this.dockableWindow1 = new Infragistics.Win.UltraWinDock.DockableWindow();
     this.dockableWindow2 = new Infragistics.Win.UltraWinDock.DockableWindow();
     this.windowDockingArea2 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.dsQuery = new System.Data.DataSet();
     this.dataTable4 = new System.Data.DataTable();
     this.dataColumn120 = new System.Data.DataColumn();
     this.dataColumn121 = new System.Data.DataColumn();
     this.dataColumn122 = new System.Data.DataColumn();
     this.dataColumn123 = new System.Data.DataColumn();
     this.dataColumn124 = new System.Data.DataColumn();
     this.dataColumn125 = new System.Data.DataColumn();
     this.dataColumn126 = new System.Data.DataColumn();
     this.dataColumn127 = new System.Data.DataColumn();
     this.dataColumn128 = new System.Data.DataColumn();
     this.dataColumn129 = new System.Data.DataColumn();
     this.dataColumn130 = new System.Data.DataColumn();
     this.dataColumn131 = new System.Data.DataColumn();
     this.dataColumn132 = new System.Data.DataColumn();
     this.dataColumn133 = new System.Data.DataColumn();
     this.dataColumn134 = new System.Data.DataColumn();
     this.dataColumn135 = new System.Data.DataColumn();
     this.dataColumn136 = new System.Data.DataColumn();
     this.dataColumn137 = new System.Data.DataColumn();
     this.dataColumn138 = new System.Data.DataColumn();
     this.dataColumn139 = new System.Data.DataColumn();
     this.dataColumn140 = new System.Data.DataColumn();
     this.dataColumn141 = new System.Data.DataColumn();
     this.windowDockingArea1 = new Infragistics.Win.UltraWinDock.WindowDockingArea();
     this.ultraTabPageControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
     this.ultraTabPageControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     this.panelYYBF.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uDridSound)).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.dataTable5)).BeginInit();
     this.panelSPKZ.SuspendLayout();
     this.panel8.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picFDTP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMeterWeight)).BeginInit();
     this.BilletInfo_GD_Fill_Panel.SuspendLayout();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
     this.ultraTabControl1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.pnlBottom.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VideoChannel3)).BeginInit();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VideoChannel2)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.VideoChannel1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDockManager1)).BeginInit();
     this._MoltenInfo_OneAutoHideControl.SuspendLayout();
     this.dockableWindow1.SuspendLayout();
     this.dockableWindow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dsQuery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
     this.SuspendLayout();
     //
     // ultraTabPageControl2
     //
     this.ultraTabPageControl2.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl2, null);
     this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 22);
     this.ultraTabPageControl2.Name = "ultraTabPageControl2";
     this.ultraTabPageControl2.Size = new System.Drawing.Size(848, 130);
     this.coreBind.SetVerification(this.ultraTabPageControl2, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "��̬�������μ�������";
     this.ultraGrid1.DataSource = this.dataSet2;
     appearance34.BackColor = System.Drawing.Color.White;
     appearance34.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance34.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid1.DisplayLayout.Appearance = appearance34;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn1.Header.VisiblePosition = 18;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn2.Header.VisiblePosition = 19;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn3.Header.VisiblePosition = 0;
     ultraGridColumn3.Hidden = true;
     ultraGridColumn4.Header.VisiblePosition = 13;
     ultraGridColumn4.Hidden = true;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn5.Header.VisiblePosition = 14;
     ultraGridColumn5.Hidden = true;
     ultraGridColumn6.Header.VisiblePosition = 1;
     ultraGridColumn6.Hidden = true;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn7.Header.VisiblePosition = 7;
     ultraGridColumn7.MinWidth = 100;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn8.Header.VisiblePosition = 16;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn9.Header.VisiblePosition = 17;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn10.Header.VisiblePosition = 15;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(139, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn11.Header.VisiblePosition = 8;
     ultraGridColumn11.MinWidth = 100;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn14.Header.VisiblePosition = 10;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(134, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn15.Header.VisiblePosition = 9;
     ultraGridColumn15.MinWidth = 100;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
     ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn16.Header.VisiblePosition = 21;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn17.Header.VisiblePosition = 22;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn18.Header.VisiblePosition = 23;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn19.Header.VisiblePosition = 24;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn20.Header.VisiblePosition = 20;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn21.Header.VisiblePosition = 25;
     ultraGridColumn21.Hidden = true;
     ultraGridColumn22.Header.VisiblePosition = 5;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn23.Header.VisiblePosition = 26;
     ultraGridColumn23.Hidden = true;
     ultraGridColumn24.Header.VisiblePosition = 6;
     ultraGridColumn24.Hidden = true;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn25.Header.VisiblePosition = 2;
     ultraGridColumn25.Hidden = true;
     ultraGridColumn25.MinWidth = 100;
     ultraGridColumn26.Header.VisiblePosition = 3;
     ultraGridColumn26.Hidden = true;
     ultraGridColumn27.Header.VisiblePosition = 4;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn29.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(110, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 4;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 44);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 4;
     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.OriginX = 6;
     ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
     ultraGridGroup1.RowLayoutGroupInfo.SpanX = 6;
     ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
     ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
     ultraGridGroup1});
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "�ۼƹ�{0}��";
     summarySettings1.GroupBySummaryValueAppearance = appearance2;
     summarySettings2.DisplayFormat = "�ۼƹ�{0}��";
     summarySettings2.GroupBySummaryValueAppearance = appearance3;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2});
     ultraGridBand1.SummaryFooterCaption = "";
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance37.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance37;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid1.DisplayLayout.Override.FilterClearButtonLocation = Infragistics.Win.UltraWinGrid.FilterClearButtonLocation.Row;
     this.ultraGrid1.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance38.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance38.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance38.ForeColor = System.Drawing.Color.White;
     appearance38.TextHAlignAsString = "Center";
     appearance38.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance38;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance39.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance39;
     appearance40.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance40.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance40;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance41.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance41.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance41;
     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.Extended;
     this.ultraGrid1.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     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.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     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(848, 130);
     this.ultraGrid1.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     //
     // dataSet2
     //
     this.dataSet2.DataSetName = "NewDataSet";
     this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable6,
     this.dataTable7,
     this.dataTable8});
     //
     // dataTable6
     //
     this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn61,
     this.dataColumn62,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn68,
     this.dataColumn69,
     this.dataColumn70});
     this.dataTable6.TableName = "��̬�����Ԥ����";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "�������";
     this.dataColumn57.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "�������ƴ���";
     this.dataColumn58.ColumnName = "FS_MATERIAL";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "����";
     this.dataColumn59.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "���������";
     this.dataColumn60.ColumnName = "FS_SENDERSTROENO";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "�ջ���λ����";
     this.dataColumn61.ColumnName = "FS_RECEIVESTORENO";
     //
     // dataColumn62
     //
     this.dataColumn62.Caption = "����";
     this.dataColumn62.ColumnName = "FS_TRAINNO";
     //
     // dataColumn63
     //
     this.dataColumn63.Caption = "������";
     this.dataColumn63.ColumnName = "FS_WEIGHTPOINT";
     //
     // dataColumn64
     //
     this.dataColumn64.Caption = "¼�벿��";
     this.dataColumn64.ColumnName = "FS_DEPARTMENT";
     //
     // dataColumn65
     //
     this.dataColumn65.Caption = "¼��Ա";
     this.dataColumn65.ColumnName = "FS_USER";
     //
     // dataColumn66
     //
     this.dataColumn66.Caption = "¼��ʱ��";
     this.dataColumn66.ColumnName = "FD_TIMES";
     //
     // dataColumn67
     //
     this.dataColumn67.Caption = "��������";
     this.dataColumn67.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn68
     //
     this.dataColumn68.Caption = "������λ";
     this.dataColumn68.ColumnName = "FS_SENDER";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "�ջ���λ";
     this.dataColumn69.ColumnName = "FS_RECEIVER";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "���˵�λ";
     this.dataColumn70.ColumnName = "FS_TRANS";
     //
     // dataTable7
     //
     this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn71,
     this.dataColumn72,
     this.dataColumn73,
     this.dataColumn74,
     this.dataColumn75,
     this.dataColumn76,
     this.dataColumn77,
     this.dataColumn78,
     this.dataColumn79,
     this.dataColumn80,
     this.dataColumn82,
     this.dataColumn83,
     this.dataColumn84,
     this.dataColumn85,
     this.dataColumn86,
     this.dataColumn87,
     this.dataColumn88,
     this.dataColumn89,
     this.dataColumn90,
     this.dataColumn91,
     this.dataColumn81,
     this.dataColumn92,
     this.dataColumn156,
     this.dataColumn157,
     this.dataColumn158});
     this.dataTable7.TableName = "��̬�����һ�μ�������";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "�������";
     this.dataColumn71.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "���ϴ���";
     this.dataColumn72.ColumnName = "FS_MATERIAL";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "�������";
     this.dataColumn73.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "���������";
     this.dataColumn74.ColumnName = "FS_SENDERSTORENO";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "�ջ���λ����";
     this.dataColumn75.ColumnName = "FS_RECEIVERSTORENO";
     //
     // dataColumn76
     //
     this.dataColumn76.Caption = "����";
     this.dataColumn76.ColumnName = "FS_TRAINNO";
     //
     // dataColumn77
     //
     this.dataColumn77.Caption = "����";
     this.dataColumn77.ColumnName = "FN_WEIGHT";
     //
     // dataColumn78
     //
     this.dataColumn78.Caption = "����Ա";
     this.dataColumn78.ColumnName = "FS_WEIGHTPERSON";
     //
     // dataColumn79
     //
     this.dataColumn79.Caption = "����ʱ��";
     this.dataColumn79.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn80
     //
     this.dataColumn80.Caption = "������";
     this.dataColumn80.ColumnName = "FS_WEIGHTPOINT";
     //
     // dataColumn82
     //
     this.dataColumn82.Caption = "ɾ����־";
     this.dataColumn82.ColumnName = "FS_DELETEFLAG";
     //
     // dataColumn83
     //
     this.dataColumn83.Caption = "ɾ��ȷ����";
     this.dataColumn83.ColumnName = "FS_DELETEUSER";
     //
     // dataColumn84
     //
     this.dataColumn84.Caption = "ɾ������";
     this.dataColumn84.ColumnName = "FD_DELETEDATE";
     //
     // dataColumn85
     //
     this.dataColumn85.Caption = "��������";
     this.dataColumn85.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn86
     //
     this.dataColumn86.Caption = "������λ";
     this.dataColumn86.ColumnName = "FS_SENDER";
     //
     // dataColumn87
     //
     this.dataColumn87.Caption = "�ջ���λ";
     this.dataColumn87.ColumnName = "FS_RECEIVER";
     //
     // dataColumn88
     //
     this.dataColumn88.Caption = "����";
     this.dataColumn88.ColumnName = "FS_TYPENAME";
     //
     // dataColumn89
     //
     this.dataColumn89.Caption = "������";
     this.dataColumn89.ColumnName = "FS_POINTNAME";
     //
     // dataColumn90
     //
     this.dataColumn90.Caption = "���˵�λ";
     this.dataColumn90.ColumnName = "FS_TRANS";
     //
     // dataColumn91
     //
     this.dataColumn91.Caption = "���˵�λ����";
     this.dataColumn91.ColumnName = "FS_TRANSNO";
     //
     // dataColumn81
     //
     this.dataColumn81.Caption = "���";
     this.dataColumn81.ColumnName = "FS_SHIFT";
     //
     // dataColumn92
     //
     this.dataColumn92.Caption = "����";
     this.dataColumn92.ColumnName = "FS_GROUP";
     //
     // dataColumn156
     //
     this.dataColumn156.Caption = "�޺�";
     this.dataColumn156.ColumnName = "FS_POTNO";
     //
     // dataColumn157
     //
     this.dataColumn157.Caption = "¯��";
     this.dataColumn157.ColumnName = "FS_STOVENO";
     //
     // dataColumn158
     //
     this.dataColumn158.Caption = "¯����";
     this.dataColumn158.ColumnName = "FS_STOVESEATNO";
     //
     // dataTable8
     //
     this.dataTable8.Columns.AddRange(new System.Data.DataColumn[] {
     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.dataColumn113,
     this.dataColumn114,
     this.dataColumn115,
     this.dataColumn116,
     this.dataColumn117,
     this.dataColumn118,
     this.dataColumn119,
     this.dataColumn159,
     this.dataColumn160,
     this.dataColumn161});
     this.dataTable8.TableName = "��̬�������μ�������";
     //
     // dataColumn93
     //
     this.dataColumn93.Caption = "�������";
     this.dataColumn93.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn94
     //
     this.dataColumn94.Caption = "���ϴ���";
     this.dataColumn94.ColumnName = "FS_MATERIAL";
     //
     // dataColumn95
     //
     this.dataColumn95.Caption = "�������";
     this.dataColumn95.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn96
     //
     this.dataColumn96.Caption = "���������";
     this.dataColumn96.ColumnName = "FS_SENDERSTORENO";
     //
     // dataColumn97
     //
     this.dataColumn97.Caption = "�ջ���λ����";
     this.dataColumn97.ColumnName = "FS_RECEIVERSTORENO";
     //
     // dataColumn98
     //
     this.dataColumn98.Caption = "����";
     this.dataColumn98.ColumnName = "FS_TRAINNO";
     //
     // dataColumn99
     //
     this.dataColumn99.Caption = "�";
     this.dataColumn99.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn100
     //
     this.dataColumn100.Caption = "ë�ؼ���Ա";
     this.dataColumn100.ColumnName = "FS_GROSSPERSON";
     //
     // dataColumn101
     //
     this.dataColumn101.Caption = "ë�ؼ�����";
     this.dataColumn101.ColumnName = "FS_GROSSPOINT";
     //
     // dataColumn102
     //
     this.dataColumn102.Caption = "ë�ؼ���ʱ��";
     this.dataColumn102.ColumnName = "FD_GROSSTIME";
     //
     // dataColumn103
     //
     this.dataColumn103.Caption = "Ƥ��";
     this.dataColumn103.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn104
     //
     this.dataColumn104.Caption = "Ƥ�ؼ���Ա";
     this.dataColumn104.ColumnName = "FS_TAREPERSON";
     //
     // dataColumn105
     //
     this.dataColumn105.Caption = "Ƥ�ؼ�����";
     this.dataColumn105.ColumnName = "FS_TAREPOINT";
     //
     // dataColumn106
     //
     this.dataColumn106.Caption = "Ƥ�ؼ���ʱ��";
     this.dataColumn106.ColumnName = "FD_TARETIME";
     //
     // dataColumn107
     //
     this.dataColumn107.Caption = "����";
     this.dataColumn107.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn108
     //
     this.dataColumn108.Caption = "Ӧ����";
     this.dataColumn108.ColumnName = "FN_YKL";
     //
     // dataColumn109
     //
     this.dataColumn109.Caption = "ë�ؼ������";
     this.dataColumn109.ColumnName = "FS_GROSSSHIFT";
     //
     // dataColumn110
     //
     this.dataColumn110.Caption = "ë�ؼ�������";
     this.dataColumn110.ColumnName = "FS_GROSSGROUP";
     //
     // dataColumn111
     //
     this.dataColumn111.Caption = "Ƥ�ؼ������";
     this.dataColumn111.ColumnName = "FS_TARESHIFT";
     //
     // dataColumn112
     //
     this.dataColumn112.Caption = "Ƥ�ؼ�������";
     this.dataColumn112.ColumnName = "FS_TAREGROUP";
     //
     // dataColumn113
     //
     this.dataColumn113.Caption = "��ע";
     this.dataColumn113.ColumnName = "FS_MEMO";
     //
     // dataColumn114
     //
     this.dataColumn114.Caption = "����";
     this.dataColumn114.ColumnName = "FS_TYPENAME";
     //
     // dataColumn115
     //
     this.dataColumn115.Caption = "����������";
     this.dataColumn115.ColumnName = "FS_POINTNAME";
     //
     // dataColumn116
     //
     this.dataColumn116.Caption = "���˵�λ";
     this.dataColumn116.ColumnName = "FS_TRANS";
     //
     // dataColumn117
     //
     this.dataColumn117.Caption = "��������";
     this.dataColumn117.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn118
     //
     this.dataColumn118.Caption = "������λ";
     this.dataColumn118.ColumnName = "FS_SENDER";
     //
     // dataColumn119
     //
     this.dataColumn119.Caption = "�ջ���λ";
     this.dataColumn119.ColumnName = "FS_RECEIVER";
     //
     // dataColumn159
     //
     this.dataColumn159.Caption = "�޺�";
     this.dataColumn159.ColumnName = "FS_POTNO";
     //
     // dataColumn160
     //
     this.dataColumn160.Caption = "¯��";
     this.dataColumn160.ColumnName = "FS_STOVENO";
     //
     // dataColumn161
     //
     this.dataColumn161.Caption = "¯����";
     this.dataColumn161.ColumnName = "FS_STOVESEATNO";
     //
     // ultraTabPageControl1
     //
     this.ultraTabPageControl1.Controls.Add(this.ultraGrid2);
     this.coreBind.SetDatabasecommand(this.ultraTabPageControl1, null);
     this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
     this.ultraTabPageControl1.Name = "ultraTabPageControl1";
     this.ultraTabPageControl1.Size = new System.Drawing.Size(663, 130);
     this.coreBind.SetVerification(this.ultraTabPageControl1, null);
     //
     // ultraGrid2
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "��̬�����һ�μ�������";
     this.ultraGrid2.DataSource = this.dataSet2;
     appearance42.BackColor = System.Drawing.Color.White;
     appearance42.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid2.DisplayLayout.Appearance = appearance42;
     ultraGridColumn31.Header.VisiblePosition = 0;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn32.Header.VisiblePosition = 1;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn33.Header.VisiblePosition = 2;
     ultraGridColumn33.Hidden = true;
     ultraGridColumn34.Header.VisiblePosition = 3;
     ultraGridColumn34.Hidden = true;
     ultraGridColumn35.Header.VisiblePosition = 4;
     ultraGridColumn35.Hidden = true;
     ultraGridColumn36.Header.VisiblePosition = 5;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn37.Header.VisiblePosition = 10;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.Header.VisiblePosition = 14;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 12;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 15;
     ultraGridColumn40.Hidden = true;
     ultraGridColumn41.Header.VisiblePosition = 11;
     ultraGridColumn41.Hidden = true;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     ultraGridColumn42.CellAppearance = appearance4;
     ultraGridColumn42.Header.VisiblePosition = 16;
     ultraGridColumn42.Hidden = true;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 17;
     ultraGridColumn43.Hidden = true;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.Header.VisiblePosition = 6;
     ultraGridColumn44.Hidden = true;
     ultraGridColumn45.Header.VisiblePosition = 7;
     ultraGridColumn45.Hidden = true;
     ultraGridColumn46.Header.VisiblePosition = 8;
     ultraGridColumn46.Hidden = true;
     ultraGridColumn46.Width = 102;
     ultraGridColumn47.Header.VisiblePosition = 13;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn48.Header.VisiblePosition = 18;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn49.Header.VisiblePosition = 9;
     ultraGridColumn49.Hidden = true;
     ultraGridColumn50.Header.VisiblePosition = 21;
     ultraGridColumn50.Hidden = true;
     ultraGridColumn51.Header.VisiblePosition = 19;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn52.Header.VisiblePosition = 20;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn53.Header.VisiblePosition = 22;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn54.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     ultraGridColumn54.Header.VisiblePosition = 23;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn55.Header.VisiblePosition = 24;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand2.Columns.AddRange(new object[] {
     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});
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings3.DisplayFormat = "�ۼƹ�{0}��";
     summarySettings3.GroupBySummaryValueAppearance = appearance5;
     ultraGridBand2.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings3});
     ultraGridBand2.SummaryFooterCaption = "";
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance45.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance45;
     this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid2.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid2.DisplayLayout.Override.FilterClearButtonLocation = Infragistics.Win.UltraWinGrid.FilterClearButtonLocation.Row;
     this.ultraGrid2.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid2.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance46.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance46.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance46.ForeColor = System.Drawing.Color.White;
     appearance46.TextHAlignAsString = "Center";
     appearance46.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance46;
     this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance47.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance47;
     appearance48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance48.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance48.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance48;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance49.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance49.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance49.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance49;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
     this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid2.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid2.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     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.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(663, 130);
     this.ultraGrid2.TabIndex = 2;
     this.coreBind.SetVerification(this.ultraGrid2, null);
     //
     // panelYYBF
     //
     this.panelYYBF.Controls.Add(this.uDridSound);
     this.coreBind.SetDatabasecommand(this.panelYYBF, null);
     this.panelYYBF.Location = new System.Drawing.Point(0, 28);
     this.panelYYBF.Name = "panelYYBF";
     this.panelYYBF.Size = new System.Drawing.Size(95, 706);
     this.panelYYBF.TabIndex = 57;
     this.coreBind.SetVerification(this.panelYYBF, null);
     //
     // uDridSound
     //
     this.coreBind.SetDatabasecommand(this.uDridSound, null);
     this.uDridSound.DataMember = "�����";
     this.uDridSound.DataSource = this.dataSet1;
     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.uDridSound.DisplayLayout.Appearance = appearance13;
     ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn56.Header.VisiblePosition = 0;
     ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn57.Header.VisiblePosition = 1;
     ultraGridColumn58.Header.VisiblePosition = 2;
     ultraGridBand3.Columns.AddRange(new object[] {
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58});
     this.uDridSound.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
     this.uDridSound.DisplayLayout.InterBandSpacing = 10;
     appearance14.BackColor = System.Drawing.Color.Transparent;
     this.uDridSound.DisplayLayout.Override.CardAreaAppearance = appearance14;
     appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     appearance15.BackColor2 = System.Drawing.Color.White;
     appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.None;
     appearance15.FontData.SizeInPoints = 11F;
     appearance15.FontData.UnderlineAsString = "False";
     appearance15.ForeColor = System.Drawing.Color.Black;
     appearance15.TextHAlignAsString = "Center";
     appearance15.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.uDridSound.DisplayLayout.Override.HeaderAppearance = appearance15;
     appearance16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uDridSound.DisplayLayout.Override.RowAppearance = appearance16;
     appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.uDridSound.DisplayLayout.Override.RowSelectorAppearance = appearance17;
     this.uDridSound.DisplayLayout.Override.RowSelectorWidth = 12;
     this.uDridSound.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(230)))), ((int)(((byte)(148)))));
     appearance18.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(149)))), ((int)(((byte)(21)))));
     appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance18.ForeColor = System.Drawing.Color.Black;
     this.uDridSound.DisplayLayout.Override.SelectedRowAppearance = appearance18;
     this.uDridSound.DisplayLayout.RowConnectorColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.uDridSound.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.Solid;
     this.uDridSound.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uDridSound.Location = new System.Drawing.Point(0, 0);
     this.uDridSound.Name = "uDridSound";
     this.uDridSound.Size = new System.Drawing.Size(95, 706);
     this.uDridSound.TabIndex = 4;
     this.coreBind.SetVerification(this.uDridSound, null);
     this.uDridSound.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.uDridSound_ClickCell);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2,
     this.dataTable3,
     this.dataTable5});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn142,
     this.dataColumn143,
     this.dataColumn144,
     this.dataColumn145,
     this.dataColumn146,
     this.dataColumn147,
     this.dataColumn148,
     this.dataColumn149,
     this.dataColumn150,
     this.dataColumn151,
     this.dataColumn152,
     this.dataColumn153,
     this.dataColumn154,
     this.dataColumn155});
     this.dataTable1.TableName = "�����������";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "���������";
     this.dataColumn6.ColumnName = "FS_POINTCODE";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "������";
     this.dataColumn7.ColumnName = "FS_POINTNAME";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "�ӹ�";
     this.dataColumn8.ColumnName = "XZ";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "����";
     this.dataColumn11.ColumnName = "FS_POINTDEPART";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "��������";
     this.dataColumn12.ColumnName = "FS_POINTTYPE";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "Ӳ��¼���IP";
     this.dataColumn13.ColumnName = "FS_VIEDOIP";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "Ӳ��¼����˿�";
     this.dataColumn14.ColumnName = "FS_VIEDOPORT";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "Ӳ��¼����û���";
     this.dataColumn15.ColumnName = "FS_VIEDOUSER";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "Ӳ��¼�������";
     this.dataColumn16.ColumnName = "FS_VIEDOPWD";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "�DZ�����";
     this.dataColumn17.ColumnName = "FS_METERTYPE";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "�DZ����";
     this.dataColumn18.ColumnName = "FS_METERPARA";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "MOXA��IP";
     this.dataColumn19.ColumnName = "FS_MOXAIP";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "MOXA���˿�";
     this.dataColumn20.ColumnName = "FS_MOXAPORT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_RTUIP";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_RTUPORT";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FS_PRINTERIP";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FS_PRINTERNAME";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FS_LEDPORT";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_LEDIP";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "��λֵ";
     this.dataColumn37.ColumnName = "FN_VALUE";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "����ֵ����ֵ��";
     this.dataColumn38.ColumnName = "FF_CLEARVALUE";
     //
     // dataColumn142
     //
     this.dataColumn142.ColumnName = "FS_PRINTTYPECODE";
     //
     // dataColumn143
     //
     this.dataColumn143.ColumnName = "FN_USEDPRINTPAPER";
     //
     // dataColumn144
     //
     this.dataColumn144.ColumnName = "FN_USEDPRINTINK";
     //
     // dataColumn145
     //
     this.dataColumn145.ColumnName = "FS_ALLOWOTHERTARE";
     //
     // dataColumn146
     //
     this.dataColumn146.ColumnName = "FS_SIGN";
     //
     // dataColumn147
     //
     this.dataColumn147.ColumnName = "FS_DISPLAYPORT";
     //
     // dataColumn148
     //
     this.dataColumn148.ColumnName = "FS_DISPLAYPARA";
     //
     // dataColumn149
     //
     this.dataColumn149.ColumnName = "FS_READERPORT";
     //
     // dataColumn150
     //
     this.dataColumn150.ColumnName = "FS_READERPARA";
     //
     // dataColumn151
     //
     this.dataColumn151.ColumnName = "FS_READERTYPE";
     //
     // dataColumn152
     //
     this.dataColumn152.ColumnName = "FS_DISPLAYTYPE";
     //
     // dataColumn153
     //
     this.dataColumn153.ColumnName = "TOTALPAPAR";
     //
     // dataColumn154
     //
     this.dataColumn154.ColumnName = "TOTALINK";
     //
     // dataColumn155
     //
     this.dataColumn155.ColumnName = "FS_LEDTYPE";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn10,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn55,
     this.dataColumn56});
     this.dataTable2.TableName = "��Ϣ�ɼ���";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "��Ƥ��";
     this.dataColumn21.ColumnName = "FS_POTNO";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "����������";
     this.dataColumn1.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "��������";
     this.dataColumn2.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "�";
     this.dataColumn3.ColumnName = "FN_GROSSWEIGHT";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "Ƥ��";
     this.dataColumn4.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "����";
     this.dataColumn10.ColumnName = "FN_NETWEIGHT";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_MATERIAL";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FS_RECEIVESTORE";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "FS_SENDERSTROENO";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_ITEMNO";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "�س�ʱ��";
     this.dataColumn40.ColumnName = "FS_GROSSTIME";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "�ճ�ʱ��";
     this.dataColumn41.ColumnName = "FD_TARETIME";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "Ӧ����";
     this.dataColumn42.ColumnName = "FS_YKL";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "������λ";
     this.dataColumn55.ColumnName = "FS_SENDER";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "�ջ���λ";
     this.dataColumn56.ColumnName = "FS_RECEIVER";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn5,
     this.dataColumn9,
     this.dataColumn39});
     this.dataTable3.TableName = "�����";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "��������";
     this.dataColumn5.ColumnName = "FS_VOICENAME";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "�����ļ�";
     this.dataColumn9.ColumnName = "FS_VOICEFILE";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FS_INSTRTYPE";
     //
     // dataTable5
     //
     this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn27,
     this.dataColumn31,
     this.dataColumn43,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54});
     this.dataTable5.TableName = "��һ�μ�����Ϣ";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "��Ƥ��";
     this.dataColumn44.ColumnName = "FS_POTNO";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "��������";
     this.dataColumn45.ColumnName = "FS_MATERIALNAME";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "����Ա";
     this.dataColumn46.ColumnName = "FS_WEIGHTPERSON";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "����ʱ��";
     this.dataColumn47.ColumnName = "FD_WEIGHTTIME";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "����";
     this.dataColumn48.ColumnName = "FN_WEIGHT";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "�������";
     this.dataColumn22.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "������";
     this.dataColumn23.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "��Ŀ��";
     this.dataColumn27.ColumnName = "FS_ITEMNO";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "���ϴ���";
     this.dataColumn31.ColumnName = "FS_MATERIAL";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "����";
     this.dataColumn43.ColumnName = "FS_WEIGHTTYPE";
     //
     // dataColumn49
     //
     this.dataColumn49.Caption = "���������";
     this.dataColumn49.ColumnName = "FS_SENDERSTROENO";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "�ջ���λ����";
     this.dataColumn50.ColumnName = "FS_RECEIVESTORE";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "¯��";
     this.dataColumn51.ColumnName = "FS_STOVENO";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "¯����";
     this.dataColumn52.ColumnName = "FS_STOVESEATNO";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "������λ";
     this.dataColumn53.ColumnName = "FS_SENDER";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "�ջ���λ";
     this.dataColumn54.ColumnName = "FS_RECIEVER";
     //
     // panelSPKZ
     //
     this.panelSPKZ.Controls.Add(this.button15);
     this.panelSPKZ.Controls.Add(this.button14);
     this.panelSPKZ.Controls.Add(this.button13);
     this.panelSPKZ.Controls.Add(this.button12);
     this.panelSPKZ.Controls.Add(this.button11);
     this.panelSPKZ.Controls.Add(this.button10);
     this.coreBind.SetDatabasecommand(this.panelSPKZ, null);
     this.panelSPKZ.Location = new System.Drawing.Point(0, 28);
     this.panelSPKZ.Name = "panelSPKZ";
     this.panelSPKZ.Size = new System.Drawing.Size(126, 550);
     this.panelSPKZ.TabIndex = 58;
     this.coreBind.SetVerification(this.panelSPKZ, null);
     //
     // button15
     //
     this.button15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button15, null);
     this.button15.Location = new System.Drawing.Point(35, 231);
     this.button15.Name = "button15";
     this.button15.Size = new System.Drawing.Size(55, 28);
     this.button15.TabIndex = 18;
     this.button15.Tag = "4";
     this.button15.Text = "��";
     this.button15.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button15, null);
     //
     // button14
     //
     this.button14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button14, null);
     this.button14.Location = new System.Drawing.Point(35, 183);
     this.button14.Name = "button14";
     this.button14.Size = new System.Drawing.Size(55, 28);
     this.button14.TabIndex = 17;
     this.button14.Tag = "5";
     this.button14.Text = "Զ";
     this.button14.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button14, null);
     //
     // button13
     //
     this.button13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button13, null);
     this.button13.Location = new System.Drawing.Point(67, 65);
     this.button13.Name = "button13";
     this.button13.Size = new System.Drawing.Size(55, 28);
     this.button13.TabIndex = 16;
     this.button13.Tag = "3";
     this.button13.Text = "��";
     this.button13.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button13, null);
     //
     // button12
     //
     this.button12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button12, null);
     this.button12.Location = new System.Drawing.Point(5, 64);
     this.button12.Name = "button12";
     this.button12.Size = new System.Drawing.Size(55, 28);
     this.button12.TabIndex = 15;
     this.button12.Tag = "2";
     this.button12.Text = "��";
     this.button12.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button12, null);
     //
     // button11
     //
     this.button11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button11, null);
     this.button11.Location = new System.Drawing.Point(35, 103);
     this.button11.Name = "button11";
     this.button11.Size = new System.Drawing.Size(55, 28);
     this.button11.TabIndex = 14;
     this.button11.Tag = "1";
     this.button11.Text = "��";
     this.button11.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button11, null);
     //
     // button10
     //
     this.button10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button10, null);
     this.button10.Location = new System.Drawing.Point(35, 26);
     this.button10.Name = "button10";
     this.button10.Size = new System.Drawing.Size(55, 28);
     this.button10.TabIndex = 13;
     this.button10.Tag = "0";
     this.button10.Text = "��";
     this.button10.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button10, null);
     //
     // panel8
     //
     this.panel8.Controls.Add(this.splitContainer1);
     this.coreBind.SetDatabasecommand(this.panel8, null);
     this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel8.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.panel8.Location = new System.Drawing.Point(458, 132);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(854, 289);
     this.panel8.TabIndex = 0;
     this.coreBind.SetVerification(this.panel8, 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";
     //
     // 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.panel11);
     this.coreBind.SetDatabasecommand(this.splitContainer1.Panel2, null);
     this.coreBind.SetVerification(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(854, 289);
     this.splitContainer1.SplitterDistance = 611;
     this.splitContainer1.TabIndex = 0;
     this.coreBind.SetVerification(this.splitContainer1, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.HeaderDoubleSolid;
     this.ultraGroupBox2.Controls.Add(this.panel9);
     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(611, 289);
     this.ultraGroupBox2.TabIndex = 4;
     this.ultraGroupBox2.Text = "������Ϣ";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2003;
     //
     // panel9
     //
     this.panel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel9.Controls.Add(this.cbFlow);
     this.panel9.Controls.Add(this.cb_StoveSeatno);
     this.panel9.Controls.Add(this.label10);
     this.panel9.Controls.Add(this.label3);
     this.panel9.Controls.Add(this.tb_Stoveno);
     this.panel9.Controls.Add(this.btReceiver);
     this.panel9.Controls.Add(this.txtNetWeight);
     this.panel9.Controls.Add(this.label4);
     this.panel9.Controls.Add(this.btSender);
     this.panel9.Controls.Add(this.label12);
     this.panel9.Controls.Add(this.label15);
     this.panel9.Controls.Add(this.txtTareWeight);
     this.panel9.Controls.Add(this.btTrans);
     this.panel9.Controls.Add(this.label9);
     this.panel9.Controls.Add(this.label14);
     this.panel9.Controls.Add(this.txtJly);
     this.panel9.Controls.Add(this.btMaterial);
     this.panel9.Controls.Add(this.txtWeight);
     this.panel9.Controls.Add(this.cbSender);
     this.panel9.Controls.Add(this.txtJld);
     this.panel9.Controls.Add(this.cbTrans);
     this.panel9.Controls.Add(this.label5);
     this.panel9.Controls.Add(this.cbReceiver);
     this.panel9.Controls.Add(this.txtBc);
     this.panel9.Controls.Add(this.label1);
     this.panel9.Controls.Add(this.label6);
     this.panel9.Controls.Add(this.cbMaterial);
     this.panel9.Controls.Add(this.label7);
     this.panel9.Controls.Add(this.label8);
     this.panel9.Controls.Add(this.label11);
     this.panel9.Controls.Add(this.lblCh);
     this.panel9.Controls.Add(this.tb_POTNO);
     this.coreBind.SetDatabasecommand(this.panel9, null);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(1, 20);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(609, 268);
     this.panel9.TabIndex = 1;
     this.coreBind.SetVerification(this.panel9, null);
     //
     // cbFlow
     //
     this.coreBind.SetDatabasecommand(this.cbFlow, null);
     this.cbFlow.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbFlow.FormattingEnabled = true;
     this.cbFlow.Location = new System.Drawing.Point(441, 19);
     this.cbFlow.Name = "cbFlow";
     this.cbFlow.Size = new System.Drawing.Size(103, 24);
     this.cbFlow.TabIndex = 102;
     this.coreBind.SetVerification(this.cbFlow, null);
     //
     // cb_StoveSeatno
     //
     this.coreBind.SetDatabasecommand(this.cb_StoveSeatno, null);
     this.cb_StoveSeatno.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cb_StoveSeatno.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cb_StoveSeatno.FormattingEnabled = true;
     this.cb_StoveSeatno.Items.AddRange(new object[] {
     "1",
     "2",
     "3"});
     this.cb_StoveSeatno.Location = new System.Drawing.Point(441, 95);
     this.cb_StoveSeatno.Name = "cb_StoveSeatno";
     this.cb_StoveSeatno.Size = new System.Drawing.Size(103, 24);
     this.cb_StoveSeatno.TabIndex = 701;
     this.coreBind.SetVerification(this.cb_StoveSeatno, null);
     this.cb_StoveSeatno.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label10
     //
     this.coreBind.SetDatabasecommand(this.label10, null);
     this.label10.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(332, 95);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(83, 24);
     this.label10.TabIndex = 702;
     this.label10.Text = "¯����";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label10, null);
     //
     // label3
     //
     this.coreBind.SetDatabasecommand(this.label3, null);
     this.label3.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(4, 95);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(76, 24);
     this.label3.TabIndex = 700;
     this.label3.Text = "¯��";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label3, null);
     //
     // tb_Stoveno
     //
     this.tb_Stoveno.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.tb_Stoveno, null);
     this.tb_Stoveno.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tb_Stoveno.ForeColor = System.Drawing.SystemColors.WindowText;
     this.tb_Stoveno.Location = new System.Drawing.Point(90, 96);
     this.tb_Stoveno.MaxLength = 10;
     this.tb_Stoveno.Name = "tb_Stoveno";
     this.tb_Stoveno.Size = new System.Drawing.Size(147, 26);
     this.tb_Stoveno.TabIndex = 699;
     this.coreBind.SetVerification(this.tb_Stoveno, null);
     //
     // btReceiver
     //
     this.btReceiver.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btReceiver, null);
     this.btReceiver.Location = new System.Drawing.Point(579, 75);
     this.btReceiver.Name = "btReceiver";
     this.btReceiver.Size = new System.Drawing.Size(30, 21);
     this.btReceiver.TabIndex = 698;
     this.btReceiver.Tag = "Receiver";
     this.btReceiver.Text = "..";
     this.btReceiver.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btReceiver, null);
     this.btReceiver.Visible = false;
     this.btReceiver.Click += new System.EventHandler(this.btReceiver_Click);
     //
     // btSender
     //
     this.btSender.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btSender, null);
     this.btSender.Location = new System.Drawing.Point(585, 49);
     this.btSender.Name = "btSender";
     this.btSender.Size = new System.Drawing.Size(30, 21);
     this.btSender.TabIndex = 697;
     this.btSender.Tag = "Sender";
     this.btSender.Text = "..";
     this.btSender.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btSender, null);
     this.btSender.Visible = false;
     this.btSender.Click += new System.EventHandler(this.btSender_Click);
     //
     // btTrans
     //
     this.btTrans.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btTrans, null);
     this.btTrans.Location = new System.Drawing.Point(589, 27);
     this.btTrans.Name = "btTrans";
     this.btTrans.Size = new System.Drawing.Size(30, 21);
     this.btTrans.TabIndex = 696;
     this.btTrans.Tag = "Transport";
     this.btTrans.Text = "..";
     this.btTrans.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btTrans, null);
     this.btTrans.Visible = false;
     this.btTrans.Click += new System.EventHandler(this.btTrans_Click);
     //
     // btMaterial
     //
     this.btMaterial.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btMaterial, null);
     this.btMaterial.Location = new System.Drawing.Point(592, 0);
     this.btMaterial.Name = "btMaterial";
     this.btMaterial.Size = new System.Drawing.Size(30, 21);
     this.btMaterial.TabIndex = 695;
     this.btMaterial.Tag = "Material";
     this.btMaterial.Text = "..";
     this.btMaterial.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btMaterial, null);
     this.btMaterial.Visible = false;
     this.btMaterial.Click += new System.EventHandler(this.btMaterial_Click);
     //
     // cbTrans
     //
     this.coreBind.SetDatabasecommand(this.cbTrans, null);
     this.cbTrans.FormattingEnabled = true;
     this.cbTrans.Location = new System.Drawing.Point(552, 23);
     this.cbTrans.Name = "cbTrans";
     this.cbTrans.Size = new System.Drawing.Size(31, 20);
     this.cbTrans.TabIndex = 615;
     this.cbTrans.Tag = "Transport";
     this.coreBind.SetVerification(this.cbTrans, null);
     this.cbTrans.Visible = false;
     this.cbTrans.SelectedIndexChanged += new System.EventHandler(this.cbTrans_SelectedIndexChanged);
     this.cbTrans.Leave += new System.EventHandler(this.cbTrans_Leave);
     this.cbTrans.TextChanged += new System.EventHandler(this.cbTrans_TextChanged);
     //
     // label1
     //
     this.coreBind.SetDatabasecommand(this.label1, null);
     this.label1.Location = new System.Drawing.Point(499, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(47, 24);
     this.label1.TabIndex = 616;
     this.label1.Text = "���˵�λ";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label1, null);
     this.label1.Visible = false;
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // txtNetWeight
     //
     this.txtNetWeight.AcceptsTab = true;
     this.txtNetWeight.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.txtNetWeight, null);
     this.txtNetWeight.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtNetWeight.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtNetWeight.Location = new System.Drawing.Point(455, 154);
     this.txtNetWeight.MaxLength = 8;
     this.txtNetWeight.Name = "txtNetWeight";
     this.txtNetWeight.ReadOnly = true;
     this.txtNetWeight.Size = new System.Drawing.Size(89, 26);
     this.txtNetWeight.TabIndex = 613;
     this.coreBind.SetVerification(this.txtNetWeight, null);
     //
     // label12
     //
     this.coreBind.SetDatabasecommand(this.label12, null);
     this.label12.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label12.Location = new System.Drawing.Point(18, 158);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(71, 24);
     this.label12.TabIndex = 614;
     this.label12.Text = "����(t)";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label12, null);
     //
     // txtTareWeight
     //
     this.txtTareWeight.AcceptsTab = true;
     this.txtTareWeight.BackColor = System.Drawing.Color.White;
     this.coreBind.SetDatabasecommand(this.txtTareWeight, null);
     this.txtTareWeight.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtTareWeight.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtTareWeight.Location = new System.Drawing.Point(279, 157);
     this.txtTareWeight.MaxLength = 8;
     this.txtTareWeight.Name = "txtTareWeight";
     this.txtTareWeight.Size = new System.Drawing.Size(69, 26);
     this.txtTareWeight.TabIndex = 611;
     this.coreBind.SetVerification(this.txtTareWeight, null);
     this.txtTareWeight.Leave += new System.EventHandler(this.txtTareWeight_Leave);
     //
     // label9
     //
     this.coreBind.SetDatabasecommand(this.label9, null);
     this.label9.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(181, 158);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(97, 24);
     this.label9.TabIndex = 612;
     this.label9.Text = "��Ƥ����(t)";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label9, null);
     //
     // cbMaterial
     //
     this.coreBind.SetDatabasecommand(this.cbMaterial, null);
     this.cbMaterial.FormattingEnabled = true;
     this.cbMaterial.Location = new System.Drawing.Point(552, -3);
     this.cbMaterial.Name = "cbMaterial";
     this.cbMaterial.Size = new System.Drawing.Size(31, 20);
     this.cbMaterial.TabIndex = 104;
     this.cbMaterial.Tag = "Material";
     this.coreBind.SetVerification(this.cbMaterial, null);
     this.cbMaterial.Visible = false;
     this.cbMaterial.SelectedIndexChanged += new System.EventHandler(this.cbMaterial_SelectedIndexChanged);
     this.cbMaterial.Leave += new System.EventHandler(this.cbMaterial_Leave);
     this.cbMaterial.TextChanged += new System.EventHandler(this.cbMaterial_TextChanged);
     //
     // label4
     //
     this.coreBind.SetDatabasecommand(this.label4, null);
     this.label4.Location = new System.Drawing.Point(489, -3);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(49, 24);
     this.label4.TabIndex = 606;
     this.label4.Text = "��������";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label4, null);
     this.label4.Visible = false;
     this.label4.Click += new System.EventHandler(this.label4_Click);
     //
     // cbReceiver
     //
     this.cbReceiver.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.coreBind.SetDatabasecommand(this.cbReceiver, null);
     this.cbReceiver.FormattingEnabled = true;
     this.cbReceiver.Location = new System.Drawing.Point(544, 72);
     this.cbReceiver.Name = "cbReceiver";
     this.cbReceiver.Size = new System.Drawing.Size(29, 20);
     this.cbReceiver.TabIndex = 108;
     this.cbReceiver.Tag = "Receiver";
     this.coreBind.SetVerification(this.cbReceiver, null);
     this.cbReceiver.Visible = false;
     this.cbReceiver.SelectedIndexChanged += new System.EventHandler(this.cbReceiver_SelectedIndexChanged);
     this.cbReceiver.Leave += new System.EventHandler(this.cbReceiver_Leave);
     this.cbReceiver.TextChanged += new System.EventHandler(this.cbReceiver_TextChanged);
     //
     // txtJly
     //
     this.txtJly.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.txtJly, null);
     this.txtJly.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtJly.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtJly.Location = new System.Drawing.Point(335, 218);
     this.txtJly.MaxLength = 8;
     this.txtJly.Name = "txtJly";
     this.txtJly.ReadOnly = true;
     this.txtJly.Size = new System.Drawing.Size(78, 26);
     this.txtJly.TabIndex = 110;
     this.coreBind.SetVerification(this.txtJly, null);
     //
     // txtWeight
     //
     this.txtWeight.AcceptsTab = true;
     this.txtWeight.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.txtWeight, null);
     this.txtWeight.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtWeight.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtWeight.Location = new System.Drawing.Point(92, 157);
     this.txtWeight.MaxLength = 8;
     this.txtWeight.Name = "txtWeight";
     this.txtWeight.ReadOnly = true;
     this.txtWeight.Size = new System.Drawing.Size(83, 26);
     this.txtWeight.TabIndex = 112;
     this.coreBind.SetVerification(this.txtWeight, null);
     this.txtWeight.Leave += new System.EventHandler(this.txtWeight_Leave);
     //
     // cbSender
     //
     this.coreBind.SetDatabasecommand(this.cbSender, null);
     this.cbSender.FormattingEnabled = true;
     this.cbSender.Location = new System.Drawing.Point(552, 47);
     this.cbSender.Name = "cbSender";
     this.cbSender.Size = new System.Drawing.Size(24, 20);
     this.cbSender.TabIndex = 107;
     this.cbSender.Tag = "Sender";
     this.coreBind.SetVerification(this.cbSender, null);
     this.cbSender.Visible = false;
     this.cbSender.SelectedIndexChanged += new System.EventHandler(this.cbSender_SelectedIndexChanged);
     this.cbSender.Leave += new System.EventHandler(this.cbSender_Leave);
     this.cbSender.TextChanged += new System.EventHandler(this.cbSender_TextChanged);
     //
     // txtJld
     //
     this.txtJld.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.txtJld, null);
     this.txtJld.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtJld.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtJld.Location = new System.Drawing.Point(88, 219);
     this.txtJld.MaxLength = 8;
     this.txtJld.Name = "txtJld";
     this.txtJld.ReadOnly = true;
     this.txtJld.Size = new System.Drawing.Size(149, 26);
     this.txtJld.TabIndex = 109;
     this.coreBind.SetVerification(this.txtJld, null);
     //
     // label5
     //
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(410, 217);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 24);
     this.label5.TabIndex = 599;
     this.label5.Text = "���";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label5, null);
     //
     // txtBc
     //
     this.txtBc.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.txtBc, null);
     this.txtBc.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.txtBc.ForeColor = System.Drawing.SystemColors.WindowText;
     this.txtBc.Location = new System.Drawing.Point(486, 217);
     this.txtBc.MaxLength = 8;
     this.txtBc.Name = "txtBc";
     this.txtBc.ReadOnly = true;
     this.txtBc.Size = new System.Drawing.Size(58, 26);
     this.txtBc.TabIndex = 111;
     this.coreBind.SetVerification(this.txtBc, null);
     //
     // label6
     //
     this.coreBind.SetDatabasecommand(this.label6, null);
     this.label6.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(370, 157);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(76, 24);
     this.label6.TabIndex = 597;
     this.label6.Text = "����(t)";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label6, null);
     //
     // label7
     //
     this.coreBind.SetDatabasecommand(this.label7, null);
     this.label7.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(263, 218);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(64, 24);
     this.label7.TabIndex = 595;
     this.label7.Text = "����Ա";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label7, null);
     //
     // label8
     //
     this.coreBind.SetDatabasecommand(this.label8, null);
     this.label8.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(24, 221);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(58, 24);
     this.label8.TabIndex = 593;
     this.label8.Text = "������";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label8, null);
     //
     // label14
     //
     this.coreBind.SetDatabasecommand(this.label14, null);
     this.label14.Location = new System.Drawing.Point(480, 68);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(66, 24);
     this.label14.TabIndex = 591;
     this.label14.Text = "�ջ���λ";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label14, null);
     this.label14.Visible = false;
     this.label14.Click += new System.EventHandler(this.label14_Click);
     //
     // label15
     //
     this.coreBind.SetDatabasecommand(this.label15, null);
     this.label15.Location = new System.Drawing.Point(480, 45);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(58, 24);
     this.label15.TabIndex = 590;
     this.label15.Text = "������λ";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label15, null);
     this.label15.Visible = false;
     this.label15.Click += new System.EventHandler(this.label15_Click);
     //
     // label11
     //
     this.coreBind.SetDatabasecommand(this.label11, null);
     this.label11.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label11.Location = new System.Drawing.Point(325, 18);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(75, 24);
     this.label11.TabIndex = 589;
     this.label11.Text = "����";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.label11, null);
     //
     // lblCh
     //
     this.coreBind.SetDatabasecommand(this.lblCh, null);
     this.lblCh.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblCh.Location = new System.Drawing.Point(2, 19);
     this.lblCh.Name = "lblCh";
     this.lblCh.Size = new System.Drawing.Size(80, 24);
     this.lblCh.TabIndex = 578;
     this.lblCh.Text = "�޺�";
     this.lblCh.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lblCh, null);
     //
     // tb_POTNO
     //
     this.tb_POTNO.BackColor = System.Drawing.SystemColors.Window;
     this.coreBind.SetDatabasecommand(this.tb_POTNO, null);
     this.tb_POTNO.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tb_POTNO.ForeColor = System.Drawing.SystemColors.WindowText;
     this.tb_POTNO.Location = new System.Drawing.Point(88, 19);
     this.tb_POTNO.MaxLength = 8;
     this.tb_POTNO.Name = "tb_POTNO";
     this.tb_POTNO.Size = new System.Drawing.Size(149, 26);
     this.tb_POTNO.TabIndex = 101;
     this.coreBind.SetVerification(this.tb_POTNO, null);
     this.tb_POTNO.Leave += new System.EventHandler(this.tb_POTNO_Leave);
     this.tb_POTNO.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTRAINNO_KeyPress);
     //
     // panel11
     //
     this.panel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel11.Controls.Add(this.button1);
     this.panel11.Controls.Add(this.ck_Tare);
     this.panel11.Controls.Add(this.btnTrainTare);
     this.panel11.Controls.Add(this.btnWc);
     this.panel11.Controls.Add(this.btnSglr);
     this.panel11.Controls.Add(this.btnBC);
     this.panel11.Controls.Add(this.btnDS);
     this.coreBind.SetDatabasecommand(this.panel11, null);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(239, 289);
     this.panel11.TabIndex = 5;
     this.coreBind.SetVerification(this.panel11, null);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.button1, null);
     this.button1.Location = new System.Drawing.Point(171, 239);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(63, 32);
     this.button1.TabIndex = 32;
     this.button1.Text = "ˢ������";
     this.button1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.button1, null);
     this.button1.Visible = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // ck_Tare
     //
     this.ck_Tare.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ck_Tare, null);
     this.ck_Tare.Location = new System.Drawing.Point(22, 100);
     this.ck_Tare.Name = "ck_Tare";
     this.ck_Tare.Size = new System.Drawing.Size(96, 16);
     this.ck_Tare.TabIndex = 31;
     this.ck_Tare.Text = "��������Ƥ��";
     this.ck_Tare.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.ck_Tare, null);
     this.ck_Tare.Visible = false;
     //
     // btnTrainTare
     //
     this.btnTrainTare.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnTrainTare, null);
     this.btnTrainTare.Location = new System.Drawing.Point(108, 138);
     this.btnTrainTare.Name = "btnTrainTare";
     this.btnTrainTare.Size = new System.Drawing.Size(63, 32);
     this.btnTrainTare.TabIndex = 30;
     this.btnTrainTare.Text = "�����Ƥ����";
     this.btnTrainTare.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnTrainTare, null);
     this.btnTrainTare.Visible = false;
     this.btnTrainTare.Click += new System.EventHandler(this.btnTrainTare_Click);
     //
     // btnWc
     //
     this.btnWc.BackColor = System.Drawing.Color.Violet;
     this.coreBind.SetDatabasecommand(this.btnWc, null);
     this.btnWc.Location = new System.Drawing.Point(22, 138);
     this.btnWc.Name = "btnWc";
     this.btnWc.Size = new System.Drawing.Size(63, 32);
     this.btnWc.TabIndex = 29;
     this.btnWc.Text = "�������";
     this.btnWc.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnWc, null);
     this.btnWc.Visible = false;
     this.btnWc.Click += new System.EventHandler(this.btnWc_Click);
     //
     // btnSglr
     //
     this.btnSglr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnSglr, null);
     this.btnSglr.Location = new System.Drawing.Point(171, 191);
     this.btnSglr.Name = "btnSglr";
     this.btnSglr.Size = new System.Drawing.Size(63, 32);
     this.btnSglr.TabIndex = 28;
     this.btnSglr.Text = "�ֹ�¼��";
     this.btnSglr.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnSglr, null);
     this.btnSglr.Visible = false;
     this.btnSglr.Click += new System.EventHandler(this.btnSglr_Click);
     //
     // btnBC
     //
     this.btnBC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnBC, null);
     this.btnBC.Font = new System.Drawing.Font("����", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnBC.Location = new System.Drawing.Point(22, 197);
     this.btnBC.Name = "btnBC";
     this.btnBC.Size = new System.Drawing.Size(96, 74);
     this.btnBC.TabIndex = 3;
     this.btnBC.Text = "����";
     this.btnBC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnBC, null);
     this.btnBC.Click += new System.EventHandler(this.btnBC_Click);
     //
     // btnDS
     //
     this.btnDS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.btnDS, null);
     this.btnDS.Location = new System.Drawing.Point(9, 22);
     this.btnDS.Name = "btnDS";
     this.btnDS.Size = new System.Drawing.Size(52, 32);
     this.btnDS.TabIndex = 2;
     this.btnDS.Text = "����";
     this.btnDS.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.btnDS, null);
     this.btnDS.Visible = false;
     this.btnDS.Click += new System.EventHandler(this.btnDS_Click);
     //
     // btnQL
     //
     this.coreBind.SetDatabasecommand(this.btnQL, null);
     this.btnQL.Location = new System.Drawing.Point(251, 103);
     this.btnQL.Name = "btnQL";
     this.btnQL.Size = new System.Drawing.Size(99, 28);
     this.btnQL.TabIndex = 56;
     this.btnQL.Text = "����";
     this.btnQL.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnQL, null);
     this.btnQL.Click += new System.EventHandler(this.btnQL_Click);
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel6.Controls.Add(this.btnQL);
     this.panel6.Controls.Add(this.ultraGroupBox1);
     this.coreBind.SetDatabasecommand(this.panel6, null);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel6.Location = new System.Drawing.Point(458, 27);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(854, 105);
     this.panel6.TabIndex = 55;
     this.coreBind.SetVerification(this.panel6, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.picFDTP);
     this.ultraGroupBox1.Controls.Add(this.txtMeterWeight);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.lblMaterShow);
     this.ultraGroupBox1.Controls.Add(this.lblMater);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(850, 101);
     this.ultraGroupBox1.TabIndex = 2;
     this.ultraGroupBox1.Text = "������Ϣ";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     //
     // picFDTP
     //
     this.coreBind.SetDatabasecommand(this.picFDTP, null);
     this.picFDTP.Location = new System.Drawing.Point(70, 85);
     this.picFDTP.Name = "picFDTP";
     this.picFDTP.Size = new System.Drawing.Size(20, 13);
     this.picFDTP.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picFDTP.TabIndex = 2;
     this.picFDTP.TabStop = false;
     this.coreBind.SetVerification(this.picFDTP, null);
     this.picFDTP.Visible = false;
     this.picFDTP.DoubleClick += new System.EventHandler(this.picFDTP_DoubleClick);
     this.picFDTP.MouseLeave += new System.EventHandler(this.picFDTP_MouseLeave);
     this.picFDTP.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picFDTP_MouseMove);
     this.picFDTP.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picFDTP_MouseDown);
     this.picFDTP.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picFDTP_MouseUp);
     //
     // txtMeterWeight
     //
     this.txtMeterWeight.BackColor = System.Drawing.Color.Transparent;
     this.txtMeterWeight.BackColor_1 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.txtMeterWeight.BackColor_2 = System.Drawing.SystemColors.GradientInactiveCaption;
     this.txtMeterWeight.BevelRate = 0.5F;
     this.coreBind.SetDatabasecommand(this.txtMeterWeight, null);
     this.txtMeterWeight.FadedColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.txtMeterWeight.ForeColor = System.Drawing.Color.Green;
     this.txtMeterWeight.HighlightOpaque = ((byte)(50));
     this.txtMeterWeight.Location = new System.Drawing.Point(57, 17);
     this.txtMeterWeight.Name = "txtMeterWeight";
     this.txtMeterWeight.Size = new System.Drawing.Size(274, 67);
     this.txtMeterWeight.TabIndex = 673;
     this.txtMeterWeight.Text = "0.000";
     this.txtMeterWeight.TextAlignment = LxControl.LxLedControl.Alignment.Right;
     this.txtMeterWeight.TotalCharCount = 8;
     this.coreBind.SetVerification(this.txtMeterWeight, 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("����", 42F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(369, 28);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(81, 56);
     this.label2.TabIndex = 53;
     this.label2.Text = "��";
     this.coreBind.SetVerification(this.label2, null);
     //
     // lblMaterShow
     //
     this.lblMaterShow.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lblMaterShow, null);
     this.lblMaterShow.Font = new System.Drawing.Font("����", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblMaterShow.Location = new System.Drawing.Point(486, 46);
     this.lblMaterShow.Name = "lblMaterShow";
     this.lblMaterShow.Size = new System.Drawing.Size(120, 21);
     this.lblMaterShow.TabIndex = 55;
     this.lblMaterShow.Text = "����DZ�";
     this.coreBind.SetVerification(this.lblMaterShow, null);
     //
     // lblMater
     //
     this.coreBind.SetDatabasecommand(this.lblMater, null);
     this.lblMater.Font = new System.Drawing.Font("����", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblMater.ForeColor = System.Drawing.Color.Crimson;
     this.lblMater.Location = new System.Drawing.Point(458, 44);
     this.lblMater.Name = "lblMater";
     this.lblMater.Size = new System.Drawing.Size(30, 28);
     this.lblMater.TabIndex = 54;
     this.lblMater.Text = "��";
     this.coreBind.SetVerification(this.lblMater, null);
     //
     // BilletInfo_GD_Fill_Panel
     //
     this.BilletInfo_GD_Fill_Panel.Controls.Add(this.panel7);
     this.BilletInfo_GD_Fill_Panel.Controls.Add(this.panel8);
     this.BilletInfo_GD_Fill_Panel.Controls.Add(this.panel6);
     this.BilletInfo_GD_Fill_Panel.Controls.Add(this.panel2);
     this.BilletInfo_GD_Fill_Panel.Controls.Add(this.panel1);
     this.BilletInfo_GD_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.BilletInfo_GD_Fill_Panel, null);
     this.BilletInfo_GD_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.BilletInfo_GD_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.BilletInfo_GD_Fill_Panel.Name = "BilletInfo_GD_Fill_Panel";
     this.BilletInfo_GD_Fill_Panel.Size = new System.Drawing.Size(1312, 578);
     this.BilletInfo_GD_Fill_Panel.TabIndex = 1;
     this.coreBind.SetVerification(this.BilletInfo_GD_Fill_Panel, null);
     //
     // panel7
     //
     this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel7.Controls.Add(this.ultraTabControl1);
     this.coreBind.SetDatabasecommand(this.panel7, null);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(458, 421);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(854, 157);
     this.panel7.TabIndex = 57;
     this.coreBind.SetVerification(this.panel7, null);
     //
     // ultraTabControl1
     //
     this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
     this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
     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(850, 153);
     this.ultraTabControl1.TabIndex = 0;
     ultraTab2.TabPage = this.ultraTabPageControl2;
     ultraTab2.Text = "������Ϣ";
     ultraTab1.TabPage = this.ultraTabPageControl1;
     ultraTab1.Text = "һ�μ�����Ϣ";
     this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
     ultraTab2,
     ultraTab1});
     this.coreBind.SetVerification(this.ultraTabControl1, null);
     this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
     //
     // 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(848, 130);
     this.coreBind.SetVerification(this.ultraTabSharedControlsPage1, null);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Controls.Add(this.pnlBottom);
     this.coreBind.SetDatabasecommand(this.panel2, null);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location = new System.Drawing.Point(0, 27);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(458, 551);
     this.panel2.TabIndex = 2;
     this.coreBind.SetVerification(this.panel2, null);
     //
     // pnlBottom
     //
     this.pnlBottom.Controls.Add(this.panel5);
     this.pnlBottom.Controls.Add(this.panel3);
     this.pnlBottom.Controls.Add(this.panel4);
     this.coreBind.SetDatabasecommand(this.pnlBottom, null);
     this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlBottom.Location = new System.Drawing.Point(0, 0);
     this.pnlBottom.Name = "pnlBottom";
     this.pnlBottom.Size = new System.Drawing.Size(454, 705);
     this.pnlBottom.TabIndex = 3;
     this.coreBind.SetVerification(this.pnlBottom, null);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.VideoChannel3);
     this.coreBind.SetDatabasecommand(this.panel5, null);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel5.Location = new System.Drawing.Point(0, 470);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(454, 235);
     this.panel5.TabIndex = 6;
     this.coreBind.SetVerification(this.panel5, null);
     //
     // VideoChannel3
     //
     this.VideoChannel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.VideoChannel3, null);
     this.VideoChannel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.VideoChannel3.Location = new System.Drawing.Point(0, 0);
     this.VideoChannel3.Name = "VideoChannel3";
     this.VideoChannel3.Size = new System.Drawing.Size(454, 235);
     this.VideoChannel3.TabIndex = 1;
     this.VideoChannel3.TabStop = false;
     this.coreBind.SetVerification(this.VideoChannel3, null);
     this.VideoChannel3.DoubleClick += new System.EventHandler(this.VideoChannel3_DoubleClick);
     this.VideoChannel3.Click += new System.EventHandler(this.picBf_Click);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.VideoChannel2);
     this.coreBind.SetDatabasecommand(this.panel3, null);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 235);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(454, 235);
     this.panel3.TabIndex = 5;
     this.coreBind.SetVerification(this.panel3, null);
     //
     // VideoChannel2
     //
     this.VideoChannel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.VideoChannel2.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.VideoChannel2, null);
     this.VideoChannel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.VideoChannel2.Location = new System.Drawing.Point(0, 0);
     this.VideoChannel2.Name = "VideoChannel2";
     this.VideoChannel2.Size = new System.Drawing.Size(454, 235);
     this.VideoChannel2.TabIndex = 1;
     this.VideoChannel2.TabStop = false;
     this.coreBind.SetVerification(this.VideoChannel2, null);
     this.VideoChannel2.DoubleClick += new System.EventHandler(this.VideoChannel2_DoubleClick);
     this.VideoChannel2.Click += new System.EventHandler(this.pic12_Click);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.VideoChannel1);
     this.coreBind.SetDatabasecommand(this.panel4, null);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.panel4.Size = new System.Drawing.Size(454, 235);
     this.panel4.TabIndex = 4;
     this.coreBind.SetVerification(this.panel4, null);
     //
     // VideoChannel1
     //
     this.VideoChannel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.coreBind.SetDatabasecommand(this.VideoChannel1, null);
     this.VideoChannel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.VideoChannel1.Location = new System.Drawing.Point(0, 0);
     this.VideoChannel1.Name = "VideoChannel1";
     this.VideoChannel1.Size = new System.Drawing.Size(454, 235);
     this.VideoChannel1.TabIndex = 1;
     this.VideoChannel1.TabStop = false;
     this.coreBind.SetVerification(this.VideoChannel1, null);
     this.VideoChannel1.DoubleClick += new System.EventHandler(this.pic11_DoubleClick);
     this.VideoChannel1.Click += new System.EventHandler(this.pic11_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dtpEnd);
     this.panel1.Controls.Add(this.panel1_Fill_Panel);
     this.panel1.Controls.Add(this.dateRQ);
     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(1312, 27);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // dtpEnd
     //
     this.coreBind.SetDatabasecommand(this.dtpEnd, null);
     this.dtpEnd.Location = new System.Drawing.Point(226, 2);
     this.dtpEnd.Name = "dtpEnd";
     this.dtpEnd.Size = new System.Drawing.Size(116, 21);
     this.dtpEnd.TabIndex = 674;
     this.coreBind.SetVerification(this.dtpEnd, 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, 28);
     this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
     this.panel1_Fill_Panel.Size = new System.Drawing.Size(1312, 0);
     this.panel1_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1_Fill_Panel, null);
     //
     // dateRQ
     //
     this.coreBind.SetDatabasecommand(this.dateRQ, null);
     this.dateRQ.Location = new System.Drawing.Point(94, 3);
     this.dateRQ.Name = "dateRQ";
     this.dateRQ.Size = new System.Drawing.Size(110, 21);
     this.dateRQ.TabIndex = 57;
     this.coreBind.SetVerification(this.dateRQ, 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, 28);
     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.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool4.ControlName = "dateRQ";
     controlContainerTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool5.ControlName = "dtpEnd";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool4,
     controlContainerTool5,
     buttonTool2,
     buttonTool3,
     buttonTool6});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool1.ControlName = "dateRQ";
     controlContainerTool1.SharedPropsInternal.Caption = "ë�ؼ�������";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool2.SharedPropsInternal.Caption = "�޺�";
     controlContainerTool2.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance1.Image = ((object)(resources.GetObject("appearance1.Image")));
     buttonTool1.SharedPropsInternal.AppearancesSmall.Appearance = appearance1;
     buttonTool1.SharedPropsInternal.Caption = "��ѯ";
     buttonTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool4.SharedPropsInternal.Caption = "�򿪶Խ�";
     buttonTool4.SharedPropsInternal.CustomizerCaption = "��Ƶ";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     buttonTool5.SharedPropsInternal.Caption = "��ѯ";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool7.SharedPropsInternal.Caption = "��";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool6.ControlName = "dtpEnd";
     controlContainerTool6.SharedPropsInternal.Caption = "��";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool2,
     buttonTool1,
     buttonTool4,
     buttonTool5,
     buttonTool7,
     controlContainerTool6});
     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(1312, 28);
     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(1312, 28);
     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(1312, 0);
     this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._panel1_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraDockManager1
     //
     this.ultraDockManager1.CompressUnpinnedTabs = false;
     dockAreaPane1.DockedBefore = new System.Guid("777aa848-96d9-4a9c-8e57-ab46776d741c");
     dockableControlPane1.Control = this.panelYYBF;
     dockableControlPane1.FlyoutSize = new System.Drawing.Size(95, -1);
     dockableControlPane1.OriginalControlBounds = new System.Drawing.Rectangle(3, 73, 200, 100);
     dockableControlPane1.Pinned = false;
     dockableControlPane1.Size = new System.Drawing.Size(100, 100);
     dockableControlPane1.Text = "�������";
     dockAreaPane1.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
     dockableControlPane1});
     dockAreaPane1.Size = new System.Drawing.Size(95, 666);
     dockableControlPane2.Control = this.panelSPKZ;
     dockableControlPane2.FlyoutSize = new System.Drawing.Size(126, -1);
     dockableControlPane2.OriginalControlBounds = new System.Drawing.Rectangle(265, 22, 200, 100);
     dockableControlPane2.Pinned = false;
     dockableControlPane2.Size = new System.Drawing.Size(100, 100);
     dockableControlPane2.Text = "��Ƶ����";
     dockAreaPane2.Panes.AddRange(new Infragistics.Win.UltraWinDock.DockablePaneBase[] {
     dockableControlPane2});
     dockAreaPane2.Size = new System.Drawing.Size(95, 666);
     this.ultraDockManager1.DockAreas.AddRange(new Infragistics.Win.UltraWinDock.DockAreaPane[] {
     dockAreaPane1,
     dockAreaPane2});
     this.ultraDockManager1.HostControl = this;
     this.ultraDockManager1.WindowStyle = Infragistics.Win.UltraWinDock.WindowStyle.Office2003;
     //
     // _MoltenInfo_OneUnpinnedTabAreaLeft
     //
     this.coreBind.SetDatabasecommand(this._MoltenInfo_OneUnpinnedTabAreaLeft, null);
     this._MoltenInfo_OneUnpinnedTabAreaLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this._MoltenInfo_OneUnpinnedTabAreaLeft.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._MoltenInfo_OneUnpinnedTabAreaLeft.Location = new System.Drawing.Point(0, 0);
     this._MoltenInfo_OneUnpinnedTabAreaLeft.Name = "_MoltenInfo_OneUnpinnedTabAreaLeft";
     this._MoltenInfo_OneUnpinnedTabAreaLeft.Owner = this.ultraDockManager1;
     this._MoltenInfo_OneUnpinnedTabAreaLeft.Size = new System.Drawing.Size(0, 578);
     this._MoltenInfo_OneUnpinnedTabAreaLeft.TabIndex = 2;
     this.coreBind.SetVerification(this._MoltenInfo_OneUnpinnedTabAreaLeft, null);
     //
     // _MoltenInfo_OneUnpinnedTabAreaRight
     //
     this.coreBind.SetDatabasecommand(this._MoltenInfo_OneUnpinnedTabAreaRight, null);
     this._MoltenInfo_OneUnpinnedTabAreaRight.Dock = System.Windows.Forms.DockStyle.Right;
     this._MoltenInfo_OneUnpinnedTabAreaRight.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._MoltenInfo_OneUnpinnedTabAreaRight.Location = new System.Drawing.Point(1312, 0);
     this._MoltenInfo_OneUnpinnedTabAreaRight.Name = "_MoltenInfo_OneUnpinnedTabAreaRight";
     this._MoltenInfo_OneUnpinnedTabAreaRight.Owner = this.ultraDockManager1;
     this._MoltenInfo_OneUnpinnedTabAreaRight.Size = new System.Drawing.Size(21, 578);
     this._MoltenInfo_OneUnpinnedTabAreaRight.TabIndex = 3;
     this.coreBind.SetVerification(this._MoltenInfo_OneUnpinnedTabAreaRight, null);
     //
     // _MoltenInfo_OneUnpinnedTabAreaTop
     //
     this.coreBind.SetDatabasecommand(this._MoltenInfo_OneUnpinnedTabAreaTop, null);
     this._MoltenInfo_OneUnpinnedTabAreaTop.Dock = System.Windows.Forms.DockStyle.Top;
     this._MoltenInfo_OneUnpinnedTabAreaTop.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._MoltenInfo_OneUnpinnedTabAreaTop.Location = new System.Drawing.Point(0, 0);
     this._MoltenInfo_OneUnpinnedTabAreaTop.Name = "_MoltenInfo_OneUnpinnedTabAreaTop";
     this._MoltenInfo_OneUnpinnedTabAreaTop.Owner = this.ultraDockManager1;
     this._MoltenInfo_OneUnpinnedTabAreaTop.Size = new System.Drawing.Size(1312, 0);
     this._MoltenInfo_OneUnpinnedTabAreaTop.TabIndex = 4;
     this.coreBind.SetVerification(this._MoltenInfo_OneUnpinnedTabAreaTop, null);
     //
     // _MoltenInfo_OneUnpinnedTabAreaBottom
     //
     this.coreBind.SetDatabasecommand(this._MoltenInfo_OneUnpinnedTabAreaBottom, null);
     this._MoltenInfo_OneUnpinnedTabAreaBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this._MoltenInfo_OneUnpinnedTabAreaBottom.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._MoltenInfo_OneUnpinnedTabAreaBottom.Location = new System.Drawing.Point(0, 578);
     this._MoltenInfo_OneUnpinnedTabAreaBottom.Name = "_MoltenInfo_OneUnpinnedTabAreaBottom";
     this._MoltenInfo_OneUnpinnedTabAreaBottom.Owner = this.ultraDockManager1;
     this._MoltenInfo_OneUnpinnedTabAreaBottom.Size = new System.Drawing.Size(1312, 0);
     this._MoltenInfo_OneUnpinnedTabAreaBottom.TabIndex = 5;
     this.coreBind.SetVerification(this._MoltenInfo_OneUnpinnedTabAreaBottom, null);
     //
     // _MoltenInfo_OneAutoHideControl
     //
     this._MoltenInfo_OneAutoHideControl.Controls.Add(this.dockableWindow1);
     this._MoltenInfo_OneAutoHideControl.Controls.Add(this.dockableWindow2);
     this.coreBind.SetDatabasecommand(this._MoltenInfo_OneAutoHideControl, null);
     this._MoltenInfo_OneAutoHideControl.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this._MoltenInfo_OneAutoHideControl.Location = new System.Drawing.Point(772, 0);
     this._MoltenInfo_OneAutoHideControl.Name = "_MoltenInfo_OneAutoHideControl";
     this._MoltenInfo_OneAutoHideControl.Owner = this.ultraDockManager1;
     this._MoltenInfo_OneAutoHideControl.Size = new System.Drawing.Size(11, 578);
     this._MoltenInfo_OneAutoHideControl.TabIndex = 6;
     this.coreBind.SetVerification(this._MoltenInfo_OneAutoHideControl, null);
     //
     // dockableWindow1
     //
     this.dockableWindow1.Controls.Add(this.panelYYBF);
     this.coreBind.SetDatabasecommand(this.dockableWindow1, null);
     this.dockableWindow1.Location = new System.Drawing.Point(-10000, 0);
     this.dockableWindow1.Name = "dockableWindow1";
     this.dockableWindow1.Owner = this.ultraDockManager1;
     this.dockableWindow1.Size = new System.Drawing.Size(95, 734);
     this.dockableWindow1.TabIndex = 9;
     this.coreBind.SetVerification(this.dockableWindow1, null);
     //
     // dockableWindow2
     //
     this.dockableWindow2.Controls.Add(this.panelSPKZ);
     this.coreBind.SetDatabasecommand(this.dockableWindow2, null);
     this.dockableWindow2.Location = new System.Drawing.Point(5, 0);
     this.dockableWindow2.Name = "dockableWindow2";
     this.dockableWindow2.Owner = this.ultraDockManager1;
     this.dockableWindow2.Size = new System.Drawing.Size(126, 578);
     this.dockableWindow2.TabIndex = 10;
     this.coreBind.SetVerification(this.dockableWindow2, null);
     //
     // windowDockingArea2
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea2, null);
     this.windowDockingArea2.Dock = System.Windows.Forms.DockStyle.Right;
     this.windowDockingArea2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea2.Location = new System.Drawing.Point(871, 0);
     this.windowDockingArea2.Name = "windowDockingArea2";
     this.windowDockingArea2.Owner = this.ultraDockManager1;
     this.windowDockingArea2.Size = new System.Drawing.Size(100, 666);
     this.windowDockingArea2.TabIndex = 8;
     this.coreBind.SetVerification(this.windowDockingArea2, null);
     //
     // dsQuery
     //
     this.dsQuery.DataSetName = "NewDataSet";
     this.dsQuery.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable4});
     //
     // dataTable4
     //
     this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn120,
     this.dataColumn121,
     this.dataColumn122,
     this.dataColumn123,
     this.dataColumn124,
     this.dataColumn125,
     this.dataColumn126,
     this.dataColumn127,
     this.dataColumn128,
     this.dataColumn129,
     this.dataColumn130,
     this.dataColumn131,
     this.dataColumn132,
     this.dataColumn133,
     this.dataColumn134,
     this.dataColumn135,
     this.dataColumn136,
     this.dataColumn137,
     this.dataColumn138,
     this.dataColumn139,
     this.dataColumn140,
     this.dataColumn141});
     this.dataTable4.TableName = "һ�μ�����ʱ��";
     //
     // dataColumn120
     //
     this.dataColumn120.Caption = "�������";
     this.dataColumn120.ColumnName = "fs_weightno";
     //
     // dataColumn121
     //
     this.dataColumn121.Caption = "���ϴ���";
     this.dataColumn121.ColumnName = "fs_material";
     //
     // dataColumn122
     //
     this.dataColumn122.Caption = "�������";
     this.dataColumn122.ColumnName = "fs_weighttype";
     //
     // dataColumn123
     //
     this.dataColumn123.Caption = "���������";
     this.dataColumn123.ColumnName = "fs_senderstroeno";
     //
     // dataColumn124
     //
     this.dataColumn124.Caption = "�ջ���λ����";
     this.dataColumn124.ColumnName = "fs_receivestoreno";
     //
     // dataColumn125
     //
     this.dataColumn125.Caption = "���";
     this.dataColumn125.ColumnName = "fs_shift";
     //
     // dataColumn126
     //
     this.dataColumn126.Caption = "����";
     this.dataColumn126.ColumnName = "fs_group";
     //
     // dataColumn127
     //
     this.dataColumn127.Caption = "����";
     this.dataColumn127.ColumnName = "fs_trainno";
     //
     // dataColumn128
     //
     this.dataColumn128.Caption = "����";
     this.dataColumn128.ColumnName = "fn_weight";
     //
     // dataColumn129
     //
     this.dataColumn129.Caption = "����Ա";
     this.dataColumn129.ColumnName = "fs_weightperson";
     //
     // dataColumn130
     //
     this.dataColumn130.Caption = "����ʱ��";
     this.dataColumn130.ColumnName = "fd_weighttime";
     //
     // dataColumn131
     //
     this.dataColumn131.Caption = "������";
     this.dataColumn131.ColumnName = "fs_weightpoint";
     //
     // dataColumn132
     //
     this.dataColumn132.Caption = "ɾ����־";
     this.dataColumn132.ColumnName = "fs_deleteflag";
     //
     // dataColumn133
     //
     this.dataColumn133.Caption = "ɾ����";
     this.dataColumn133.ColumnName = "fs_deleteuser";
     //
     // dataColumn134
     //
     this.dataColumn134.Caption = "ɾ������";
     this.dataColumn134.ColumnName = "fd_deletedate";
     //
     // dataColumn135
     //
     this.dataColumn135.Caption = "���˵�λ����";
     this.dataColumn135.ColumnName = "fs_transno";
     //
     // dataColumn136
     //
     this.dataColumn136.Caption = "��������";
     this.dataColumn136.ColumnName = "fs_materialname";
     //
     // dataColumn137
     //
     this.dataColumn137.Caption = "������λ";
     this.dataColumn137.ColumnName = "fs_sender";
     //
     // dataColumn138
     //
     this.dataColumn138.Caption = "�ջ���λ";
     this.dataColumn138.ColumnName = "fs_receiver";
     //
     // dataColumn139
     //
     this.dataColumn139.Caption = "����";
     this.dataColumn139.ColumnName = "fs_typename";
     //
     // dataColumn140
     //
     this.dataColumn140.Caption = "������";
     this.dataColumn140.ColumnName = "fs_pointname";
     //
     // dataColumn141
     //
     this.dataColumn141.Caption = "���˵�λ";
     this.dataColumn141.ColumnName = "fs_trans";
     //
     // windowDockingArea1
     //
     this.coreBind.SetDatabasecommand(this.windowDockingArea1, null);
     this.windowDockingArea1.Dock = System.Windows.Forms.DockStyle.Right;
     this.windowDockingArea1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.windowDockingArea1.Location = new System.Drawing.Point(871, 0);
     this.windowDockingArea1.Name = "windowDockingArea1";
     this.windowDockingArea1.Owner = this.ultraDockManager1;
     this.windowDockingArea1.Size = new System.Drawing.Size(100, 666);
     this.windowDockingArea1.TabIndex = 7;
     this.coreBind.SetVerification(this.windowDockingArea1, null);
     //
     // TrackWeightForIron
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1333, 578);
     this.Controls.Add(this._MoltenInfo_OneAutoHideControl);
     this.Controls.Add(this.BilletInfo_GD_Fill_Panel);
     this.Controls.Add(this.windowDockingArea2);
     this.Controls.Add(this.windowDockingArea1);
     this.Controls.Add(this._MoltenInfo_OneUnpinnedTabAreaTop);
     this.Controls.Add(this._MoltenInfo_OneUnpinnedTabAreaBottom);
     this.Controls.Add(this._MoltenInfo_OneUnpinnedTabAreaLeft);
     this.Controls.Add(this._MoltenInfo_OneUnpinnedTabAreaRight);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "TrackWeightForIron";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Tag = "TrackWeight";
     this.Text = "��̬�����";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.MoltenInfo_One_Load);
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.MoltenInfo_One_KeyPress);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MoltenInfo_One_FormClosing);
     this.ultraTabPageControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
     this.ultraTabPageControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     this.panelYYBF.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uDridSound)).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.dataTable5)).EndInit();
     this.panelSPKZ.ResumeLayout(false);
     this.panel8.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);
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     this.panel11.ResumeLayout(false);
     this.panel11.PerformLayout();
     this.panel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picFDTP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMeterWeight)).EndInit();
     this.BilletInfo_GD_Fill_Panel.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
     this.ultraTabControl1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.pnlBottom.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.VideoChannel3)).EndInit();
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.VideoChannel2)).EndInit();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.VideoChannel1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDockManager1)).EndInit();
     this._MoltenInfo_OneAutoHideControl.ResumeLayout(false);
     this.dockableWindow1.ResumeLayout(false);
     this.dockableWindow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dsQuery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 56
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_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTOR");
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTDATE");
     Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��Ʒ");
     Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_ORDERNO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT_LL");
     Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_ZC_BATCHNO", 0, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_ZC_BATCHNO", 0, true);
     Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLET_COUNT", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLET_COUNT", 3, true);
     Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLET_WEIGHT", 11, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLET_WEIGHT", 11, true);
     Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLET_WEIGHT_LL", 13, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLET_WEIGHT_LL", 13, true);
     Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_WEIGHT");
     Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKED");
     Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKED");
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��ѧ�ɷ֣�%��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_WEIGHT_LL");
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT_LL");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AlS");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance167 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool13 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool14 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ѯ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���2");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���ܺ�");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���ܺ�");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Batch));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ѯ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���2");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.CodeType = new System.Windows.Forms.Panel();
     this.rbtn_CodeBC = new System.Windows.Forms.RadioButton();
     this.rbtn_CodeXC = new System.Windows.Forms.RadioButton();
     this.llb_CloseAll = new System.Windows.Forms.LinkLabel();
     this.llb_ExpandAll = new System.Windows.Forms.LinkLabel();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.rbtn_BilletInfo = new System.Windows.Forms.RadioButton();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.rbtn_BatchInfo = new System.Windows.Forms.RadioButton();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.tbQueryButtressNo = new System.Windows.Forms.TextBox();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet2 = new System.Data.DataSet();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn59 = new System.Data.DataColumn();
     this.dataColumn60 = new System.Data.DataColumn();
     this.dataColumn62 = 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.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.cbSelectAll = new System.Windows.Forms.CheckBox();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = 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.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn68 = new System.Data.DataColumn();
     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.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.tbStatics = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea2 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea3 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea4 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataColumn61 = 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.FrmBase_Fill_Panel.SuspendLayout();
     this.CodeType.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbStatics)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.CodeType);
     this.FrmBase_Fill_Panel.Controls.Add(this.llb_CloseAll);
     this.FrmBase_Fill_Panel.Controls.Add(this.llb_ExpandAll);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtn_BilletInfo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtn_BatchInfo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryButtressNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Filter);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1323, 745);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // CodeType
     //
     this.CodeType.BackColor = System.Drawing.Color.LightBlue;
     this.CodeType.Controls.Add(this.rbtn_CodeBC);
     this.CodeType.Controls.Add(this.rbtn_CodeXC);
     this.coreBind.SetDatabasecommand(this.CodeType, null);
     this.CodeType.Location = new System.Drawing.Point(971, 0);
     this.CodeType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.CodeType.Name = "CodeType";
     this.CodeType.Size = new System.Drawing.Size(267, 29);
     this.CodeType.TabIndex = 0;
     this.coreBind.SetVerification(this.CodeType, null);
     //
     // rbtn_CodeBC
     //
     this.rbtn_CodeBC.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.rbtn_CodeBC, null);
     this.rbtn_CodeBC.ForeColor = System.Drawing.Color.Red;
     this.rbtn_CodeBC.Location = new System.Drawing.Point(136, 4);
     this.rbtn_CodeBC.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_CodeBC.Name = "rbtn_CodeBC";
     this.rbtn_CodeBC.Size = new System.Drawing.Size(118, 19);
     this.rbtn_CodeBC.TabIndex = 0;
     this.rbtn_CodeBC.Text = "ʹ�ð�ı���";
     this.rbtn_CodeBC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_CodeBC, null);
     this.rbtn_CodeBC.Visible = false;
     this.rbtn_CodeBC.CheckedChanged += new System.EventHandler(this.rbtn_CodeXC_CheckedChanged);
     //
     // rbtn_CodeXC
     //
     this.rbtn_CodeXC.AutoSize = true;
     this.rbtn_CodeXC.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtn_CodeXC, null);
     this.rbtn_CodeXC.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.rbtn_CodeXC.Location = new System.Drawing.Point(4, 4);
     this.rbtn_CodeXC.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_CodeXC.Name = "rbtn_CodeXC";
     this.rbtn_CodeXC.Size = new System.Drawing.Size(118, 19);
     this.rbtn_CodeXC.TabIndex = 0;
     this.rbtn_CodeXC.TabStop = true;
     this.rbtn_CodeXC.Text = "ʹ���Ͳı���";
     this.rbtn_CodeXC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_CodeXC, null);
     this.rbtn_CodeXC.Visible = false;
     this.rbtn_CodeXC.CheckedChanged += new System.EventHandler(this.rbtn_CodeXC_CheckedChanged);
     //
     // llb_CloseAll
     //
     this.llb_CloseAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_CloseAll, null);
     this.llb_CloseAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_CloseAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.Location = new System.Drawing.Point(1051, 40);
     this.llb_CloseAll.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.llb_CloseAll.Name = "llb_CloseAll";
     this.llb_CloseAll.Size = new System.Drawing.Size(75, 18);
     this.llb_CloseAll.TabIndex = 0;
     this.llb_CloseAll.TabStop = true;
     this.llb_CloseAll.Text = "ȫ������";
     this.llb_CloseAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_CloseAll, null);
     this.llb_CloseAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_CloseAll_LinkClicked);
     //
     // llb_ExpandAll
     //
     this.llb_ExpandAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_ExpandAll, null);
     this.llb_ExpandAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_ExpandAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.Location = new System.Drawing.Point(968, 40);
     this.llb_ExpandAll.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.llb_ExpandAll.Name = "llb_ExpandAll";
     this.llb_ExpandAll.Size = new System.Drawing.Size(75, 18);
     this.llb_ExpandAll.TabIndex = 0;
     this.llb_ExpandAll.TabStop = true;
     this.llb_ExpandAll.Text = "ȫ��չ��";
     this.llb_ExpandAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_ExpandAll, null);
     this.llb_ExpandAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_ExpandAll_LinkClicked);
     //
     // 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";
     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(336, 2);
     this.dateTimePicker2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(129, 25);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // 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";
     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(128, 2);
     this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(116, 25);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // rbtn_BilletInfo
     //
     this.rbtn_BilletInfo.AutoSize = true;
     this.rbtn_BilletInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtn_BilletInfo, null);
     this.rbtn_BilletInfo.Location = new System.Drawing.Point(692, 5);
     this.rbtn_BilletInfo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_BilletInfo.Name = "rbtn_BilletInfo";
     this.rbtn_BilletInfo.Size = new System.Drawing.Size(88, 19);
     this.rbtn_BilletInfo.TabIndex = 0;
     this.rbtn_BilletInfo.Text = "¯����Ϣ";
     this.rbtn_BilletInfo.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_BilletInfo, null);
     //
     // 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(303, 35);
     this.tbQueryStoveNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(88, 25);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // rbtn_BatchInfo
     //
     this.rbtn_BatchInfo.AutoSize = true;
     this.rbtn_BatchInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.rbtn_BatchInfo.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtn_BatchInfo, null);
     this.rbtn_BatchInfo.Location = new System.Drawing.Point(597, 5);
     this.rbtn_BatchInfo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_BatchInfo.Name = "rbtn_BatchInfo";
     this.rbtn_BatchInfo.Size = new System.Drawing.Size(88, 19);
     this.rbtn_BatchInfo.TabIndex = 0;
     this.rbtn_BatchInfo.TabStop = true;
     this.rbtn_BatchInfo.Text = "������Ϣ";
     this.rbtn_BatchInfo.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_BatchInfo, null);
     this.rbtn_BatchInfo.CheckedChanged += new System.EventHandler(this.rbtn_BatchInfo_CheckedChanged);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(81, 35);
     this.tbQueryBatchNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(88, 25);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // tbQueryButtressNo
     //
     this.coreBind.SetDatabasecommand(this.tbQueryButtressNo, null);
     this.tbQueryButtressNo.Enabled = false;
     this.tbQueryButtressNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryButtressNo.Location = new System.Drawing.Point(508, 35);
     this.tbQueryButtressNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbQueryButtressNo.Name = "tbQueryButtressNo";
     this.tbQueryButtressNo.Size = new System.Drawing.Size(93, 25);
     this.tbQueryButtressNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryButtressNo, 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(1173, 40);
     this.cbx_Filter.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(59, 19);
     this.cbx_Filter.TabIndex = 0;
     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.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(15, 6);
     this.cbxDateTime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(18, 17);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     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, 61);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1323, 684);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1323, 363);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "������Ϣ";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataSource = this.dataSet2;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance61.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance61;
     ultraGridColumn1.Header.Caption = "���Ʊ��";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance62.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance62;
     ultraGridColumn2.Header.Caption = "���";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance63.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance63;
     ultraGridColumn3.Header.Caption = "����";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance64.FontData.BoldAsString = "True";
     appearance64.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance64;
     ultraGridColumn4.Header.Caption = "����";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance65.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance65;
     ultraGridColumn5.Header.Caption = "�ƺ�";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance66.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance66;
     ultraGridColumn6.Header.Caption = "���";
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance67.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance67;
     ultraGridColumn7.Header.Caption = "����";
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance68.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance68;
     ultraGridColumn8.Header.Caption = "������";
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance69.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance69;
     ultraGridColumn9.Header.Caption = "����ʱ��";
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(150, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance70.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance70;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance71.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance71;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 6;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance72.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance72;
     ultraGridColumn12.Header.Caption = "����";
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance73.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance73;
     ultraGridColumn13.Header.Caption = "����������";
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(108, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance74.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance74;
     ultraGridColumn14.Header.Caption = "����";
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15});
     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;
     summarySettings1.DisplayFormat = "�ϼƣ�{0} ����";
     summarySettings1.GroupBySummaryValueAppearance = appearance75;
     summarySettings2.DisplayFormat = "{0} ��";
     summarySettings2.GroupBySummaryValueAppearance = appearance79;
     summarySettings3.DisplayFormat = "{0} ��";
     summarySettings3.GroupBySummaryValueAppearance = appearance80;
     summarySettings4.DisplayFormat = "{0} ��";
     summarySettings4.GroupBySummaryValueAppearance = appearance81;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4});
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn16.Header.Caption = "¯��";
     ultraGridColumn16.Header.VisiblePosition = 0;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn17.Header.Caption = "�ƺ�";
     ultraGridColumn17.Header.VisiblePosition = 1;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn18.Header.Caption = "���";
     ultraGridColumn18.Header.VisiblePosition = 2;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.Caption = "����";
     ultraGridColumn19.Header.VisiblePosition = 3;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance82.FontData.BoldAsString = "True";
     ultraGridColumn20.CellAppearance = appearance82;
     ultraGridColumn20.Header.Caption = "������";
     ultraGridColumn20.Header.VisiblePosition = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn21.Header.Caption = "������";
     ultraGridColumn21.Header.VisiblePosition = 5;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn22.Header.Caption = "C";
     ultraGridColumn22.Header.VisiblePosition = 6;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn23.Header.Caption = "Si";
     ultraGridColumn23.Header.VisiblePosition = 7;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn24.Header.Caption = "Mn";
     ultraGridColumn24.Header.VisiblePosition = 8;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn25.Header.Caption = "S";
     ultraGridColumn25.Header.VisiblePosition = 9;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn26.Header.Caption = "P";
     ultraGridColumn26.Header.VisiblePosition = 10;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn27.Header.Caption = "Ni";
     ultraGridColumn27.Header.VisiblePosition = 11;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn28.Header.Caption = "Cr";
     ultraGridColumn28.Header.VisiblePosition = 12;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn29.Header.Caption = "Cu";
     ultraGridColumn29.Header.VisiblePosition = 13;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn30.Header.Caption = "V";
     ultraGridColumn30.Header.VisiblePosition = 14;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn31.Header.Caption = "Mo";
     ultraGridColumn31.Header.VisiblePosition = 15;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn32.Header.Caption = "Ceq";
     ultraGridColumn32.Header.VisiblePosition = 16;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn33.Header.Caption = "��ע";
     ultraGridColumn33.Header.VisiblePosition = 17;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn34.Header.Caption = "�ж�Ա";
     ultraGridColumn34.Header.VisiblePosition = 18;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn35.Header.Caption = "�ж�ʱ��";
     ultraGridColumn35.Header.VisiblePosition = 19;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn36.Header.Caption = "���Ʊ��";
     ultraGridColumn36.Header.VisiblePosition = 20;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn37.Header.Caption = "��������";
     ultraGridColumn37.Header.VisiblePosition = 21;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn38.Header.VisiblePosition = 22;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 23;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 24;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 25;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand2.Columns.AddRange(new object[] {
     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});
     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;
     appearance83.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance83.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance83.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.HeaderAppearance = appearance83;
     appearance84.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance84.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance84.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.RowSelectorAppearance = appearance84;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance44.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance44;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance45.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance45;
     appearance46.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance46;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance47.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance47.TextHAlignAsString = "Center";
     appearance47.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance47;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance48.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance48;
     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;
     appearance49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance49.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance49.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance49.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance49;
     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("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 21);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1317, 339);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     //
     // dataSet2
     //
     this.dataSet2.DataSetName = "NewDataSet";
     this.dataSet2.Relations.AddRange(new System.Data.DataRelation[] {
     new System.Data.DataRelation("Relation1", "Table1", "Table2", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_ZC_BATCHNO"}, false)});
     this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable2,
     this.dataTable3});
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn48,
     this.dataColumn8,
     this.dataColumn11});
     this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.UniqueConstraint("Constraint1", new string[] {
                 "FS_ZC_BATCHNO"}, false)});
     this.dataTable2.TableName = "Table1";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "FS_ZC_BATCHNO";
     this.dataColumn21.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "FN_ZZ_SPEC";
     this.dataColumn33.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "FN_LENGTH";
     this.dataColumn34.ColumnName = "FN_LENGTH";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "FN_BILLET_COUNT";
     this.dataColumn35.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "FS_GP_STEELTYPE";
     this.dataColumn36.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "FS_GP_SPE";
     this.dataColumn37.ColumnName = "FS_GP_SPE";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "FN_GP_LEN";
     this.dataColumn38.ColumnName = "FN_GP_LEN";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "FS_BATCH_OPTOR";
     this.dataColumn39.ColumnName = "FS_BATCH_OPTOR";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "FS_BATCH_OPTDATE";
     this.dataColumn40.ColumnName = "FS_BATCH_OPTDATE";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "��Ʒ";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "����";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FS_ZC_ORDERNO";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FN_BILLET_WEIGHT_LL";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn62,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn72,
     this.dataColumn73,
     this.dataColumn74,
     this.dataColumn75});
     this.dataTable3.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.ForeignKeyConstraint("Relation1", "Table1", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_ZC_BATCHNO"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
     this.dataTable3.TableName = "Table2";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FS_GP_SPE";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FN_GP_LEN";
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn50
     //
     this.dataColumn50.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FN_GP_C";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FN_GP_SI";
     //
     // dataColumn53
     //
     this.dataColumn53.ColumnName = "FN_GP_MN";
     //
     // dataColumn54
     //
     this.dataColumn54.ColumnName = "FN_GP_S";
     //
     // dataColumn55
     //
     this.dataColumn55.ColumnName = "FN_GP_P";
     //
     // dataColumn56
     //
     this.dataColumn56.ColumnName = "FN_GP_NI";
     //
     // dataColumn57
     //
     this.dataColumn57.ColumnName = "FN_GP_CR";
     //
     // dataColumn58
     //
     this.dataColumn58.ColumnName = "FN_GP_CU";
     //
     // dataColumn59
     //
     this.dataColumn59.ColumnName = "FN_GP_V";
     //
     // dataColumn60
     //
     this.dataColumn60.ColumnName = "FN_GP_MO";
     //
     // dataColumn62
     //
     this.dataColumn62.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn63
     //
     this.dataColumn63.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn64
     //
     this.dataColumn64.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn65
     //
     this.dataColumn65.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn66
     //
     this.dataColumn66.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn67
     //
     this.dataColumn67.ColumnName = "FS_CARDNO";
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1323, 321);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 363);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1323, 321);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "������Ϣ";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.cbSelectAll);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraGrid2);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.tbStatics);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
     this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1317, 297);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // cbSelectAll
     //
     this.cbSelectAll.AutoSize = true;
     this.cbSelectAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbSelectAll, null);
     this.cbSelectAll.Location = new System.Drawing.Point(31, 19);
     this.cbSelectAll.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbSelectAll.Name = "cbSelectAll";
     this.cbSelectAll.Size = new System.Drawing.Size(59, 19);
     this.cbSelectAll.TabIndex = 1;
     this.cbSelectAll.Text = "ȫѡ";
     this.cbSelectAll.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbSelectAll.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbSelectAll, null);
     this.cbSelectAll.CheckedChanged += new System.EventHandler(this.cbSelectAll_CheckedChanged);
     //
     // ultraGrid2
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "Table1";
     this.ultraGrid2.DataSource = this.dataSet1;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance22.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance22;
     ultraGridColumn42.Header.Caption = "¯��";
     ultraGridColumn42.Header.VisiblePosition = 0;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance23.TextVAlignAsString = "Middle";
     ultraGridColumn43.CellAppearance = appearance23;
     ultraGridColumn43.Header.Caption = "�ƺ�";
     ultraGridColumn43.Header.VisiblePosition = 1;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance24.TextVAlignAsString = "Middle";
     ultraGridColumn44.CellAppearance = appearance24;
     ultraGridColumn44.Header.Caption = "���";
     ultraGridColumn44.Header.VisiblePosition = 2;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance26.TextVAlignAsString = "Middle";
     ultraGridColumn45.CellAppearance = appearance26;
     ultraGridColumn45.Header.Caption = "����";
     ultraGridColumn45.Header.VisiblePosition = 3;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     appearance27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance27.TextVAlignAsString = "Middle";
     ultraGridColumn46.CellAppearance = appearance27;
     ultraGridColumn46.Header.Caption = "������";
     ultraGridColumn46.Header.VisiblePosition = 4;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
     appearance28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance28.TextVAlignAsString = "Middle";
     ultraGridColumn47.CellAppearance = appearance28;
     ultraGridColumn47.Header.Caption = "������";
     ultraGridColumn47.Header.VisiblePosition = 5;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance29.TextVAlignAsString = "Middle";
     ultraGridColumn48.CellAppearance = appearance29;
     ultraGridColumn48.Header.Caption = "C";
     ultraGridColumn48.Header.VisiblePosition = 6;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance30.TextVAlignAsString = "Middle";
     ultraGridColumn49.CellAppearance = appearance30;
     ultraGridColumn49.Header.Caption = "Si";
     ultraGridColumn49.Header.VisiblePosition = 7;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance31.TextVAlignAsString = "Middle";
     ultraGridColumn50.CellAppearance = appearance31;
     ultraGridColumn50.Header.Caption = "Mn";
     ultraGridColumn50.Header.VisiblePosition = 8;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance32.TextVAlignAsString = "Middle";
     ultraGridColumn51.CellAppearance = appearance32;
     ultraGridColumn51.Header.Caption = "S";
     ultraGridColumn51.Header.VisiblePosition = 9;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance33.TextVAlignAsString = "Middle";
     ultraGridColumn52.CellAppearance = appearance33;
     ultraGridColumn52.Header.Caption = "P";
     ultraGridColumn52.Header.VisiblePosition = 10;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance34.TextVAlignAsString = "Middle";
     ultraGridColumn53.CellAppearance = appearance34;
     ultraGridColumn53.Header.Caption = "Ni";
     ultraGridColumn53.Header.VisiblePosition = 11;
     ultraGridColumn53.Hidden = true;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance35.TextVAlignAsString = "Middle";
     ultraGridColumn54.CellAppearance = appearance35;
     ultraGridColumn54.Header.Caption = "Cr";
     ultraGridColumn54.Header.VisiblePosition = 12;
     ultraGridColumn54.Hidden = true;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance36.TextVAlignAsString = "Middle";
     ultraGridColumn55.CellAppearance = appearance36;
     ultraGridColumn55.Header.Caption = "Cu";
     ultraGridColumn55.Header.VisiblePosition = 13;
     ultraGridColumn55.Hidden = true;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance37.TextVAlignAsString = "Middle";
     ultraGridColumn56.CellAppearance = appearance37;
     ultraGridColumn56.Header.Caption = "V";
     ultraGridColumn56.Header.VisiblePosition = 14;
     ultraGridColumn56.Hidden = true;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance38.TextVAlignAsString = "Middle";
     ultraGridColumn57.CellAppearance = appearance38;
     ultraGridColumn57.Header.Caption = "Mo";
     ultraGridColumn57.Header.VisiblePosition = 15;
     ultraGridColumn57.Hidden = true;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance39.TextVAlignAsString = "Middle";
     ultraGridColumn58.CellAppearance = appearance39;
     ultraGridColumn58.Header.Caption = "Ceq";
     ultraGridColumn58.Header.VisiblePosition = 16;
     ultraGridColumn58.Hidden = true;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance40.TextVAlignAsString = "Middle";
     ultraGridColumn59.CellAppearance = appearance40;
     ultraGridColumn59.Header.Caption = "��ע";
     ultraGridColumn59.Header.VisiblePosition = 17;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 25;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance41.TextVAlignAsString = "Middle";
     ultraGridColumn60.CellAppearance = appearance41;
     ultraGridColumn60.Header.Caption = "�ж�Ա";
     ultraGridColumn60.Header.VisiblePosition = 18;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance42.TextVAlignAsString = "Middle";
     ultraGridColumn61.CellAppearance = appearance42;
     ultraGridColumn61.Header.Caption = "�ж�ʱ��";
     ultraGridColumn61.Header.VisiblePosition = 19;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance43.TextVAlignAsString = "Middle";
     ultraGridColumn62.CellAppearance = appearance43;
     ultraGridColumn62.Header.Caption = "��������";
     ultraGridColumn62.Header.VisiblePosition = 20;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance50.TextVAlignAsString = "Middle";
     ultraGridColumn63.CellAppearance = appearance50;
     ultraGridColumn63.Header.Caption = "����";
     ultraGridColumn63.Header.VisiblePosition = 21;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance51.TextVAlignAsString = "Middle";
     ultraGridColumn64.CellAppearance = appearance51;
     ultraGridColumn64.Header.Caption = "����";
     ultraGridColumn64.Header.VisiblePosition = 22;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn65.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance52.TextVAlignAsString = "Middle";
     ultraGridColumn65.CellAppearance = appearance52;
     ultraGridColumn65.Header.Caption = "״̬";
     ultraGridColumn65.Header.VisiblePosition = 23;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn65.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 1;
     appearance53.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn66.CellAppearance = appearance53;
     ultraGridColumn66.Header.VisiblePosition = 24;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn66.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn67.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn67.Header.VisiblePosition = 25;
     ultraGridColumn67.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn68.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn68.Header.VisiblePosition = 26;
     ultraGridColumn68.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn68.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn68.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn68.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn69.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn69.Header.VisiblePosition = 27;
     ultraGridColumn69.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn69.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn69.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(428, 0);
     ultraGridColumn69.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn70.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn70.CellAppearance = appearance54;
     ultraGridColumn70.Header.Caption = "����";
     ultraGridColumn70.Header.VisiblePosition = 28;
     ultraGridColumn70.Hidden = true;
     ultraGridColumn70.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn70.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn70.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn70.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn70.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn71.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn71.CellAppearance = appearance55;
     ultraGridColumn71.Header.Caption = "����";
     ultraGridColumn71.Header.VisiblePosition = 29;
     ultraGridColumn71.Hidden = true;
     ultraGridColumn71.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn71.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn72.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn72.Header.VisiblePosition = 30;
     ultraGridColumn72.Hidden = true;
     ultraGridColumn72.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn72.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn73.Header.VisiblePosition = 31;
     ultraGridColumn73.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn73.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn73.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn74.Header.VisiblePosition = 32;
     ultraGridColumn74.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn74.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn74.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn75.Header.VisiblePosition = 33;
     ultraGridColumn75.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn75.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
     ultraGridColumn75.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn75.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn76.Header.VisiblePosition = 34;
     ultraGridColumn76.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn76.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn76.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn76.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn76.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand3.Columns.AddRange(new object[] {
     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,
     ultraGridColumn75,
     ultraGridColumn76});
     ultraGridBand3.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand3.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand3.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand3.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand3.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 8;
     appearance56.FontData.BoldAsString = "True";
     this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance56;
     this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance57.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance57;
     this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid2.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance58.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance58.TextHAlignAsString = "Center";
     appearance58.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance58;
     this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid2.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid2.DisplayLayout.Override.MinRowHeight = 21;
     appearance59.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance59;
     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;
     appearance60.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance60.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance60.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance60;
     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.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(1317, 273);
     this.ultraGrid2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid2, null);
     this.ultraGrid2.AfterCellUpdate += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_AfterCellUpdate);
     this.ultraGrid2.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_CellChange);
     //
     // 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.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn47,
     this.dataColumn68,
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn12,
     this.dataColumn61,
     this.dataColumn69,
     this.dataColumn70,
     this.dataColumn71});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "FS_GP_SPE";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FN_GP_LEN";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FN_GP_C";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FN_GP_SI";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FN_GP_MN";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_GP_S";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FN_GP_P";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FN_GP_NI";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FN_GP_CR";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FN_GP_CU";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FN_GP_V";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FN_GP_MO";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn68
     //
     this.dataColumn68.ColumnName = "FS_CARDNO";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "FN_GPYS_WEIGHT";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FS_CHECKED";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "";
     this.dataColumn4.ColumnName = "CHECKED";
     this.dataColumn4.DataType = typeof(bool);
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "����";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "����";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "��ѧ�ɷ֣�%��";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FN_GPYS_WEIGHT_LL";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "FN_BILLET_WEIGHT_LL";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "�������";
     this.dataColumn12.ColumnName = "FS_UNQUALIFIED";
     //
     // tbStatics
     //
     appearance167.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance167.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     appearance167.TextHAlignAsString = "Center";
     appearance167.TextVAlignAsString = "Middle";
     this.tbStatics.Appearance = appearance167;
     this.tbStatics.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.tbStatics, null);
     this.tbStatics.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tbStatics.Location = new System.Drawing.Point(0, 273);
     this.tbStatics.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbStatics.Name = "tbStatics";
     this.tbStatics.ReadOnly = true;
     this.tbStatics.Size = new System.Drawing.Size(1317, 24);
     this.tbStatics.TabIndex = 1;
     this.coreBind.SetVerification(this.tbStatics, null);
     this.tbStatics.Visible = false;
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool1.InstanceProps.Width = 25;
     controlContainerTool2.ControlName = "dateTimePicker1";
     controlContainerTool2.InstanceProps.Width = 204;
     controlContainerTool13.ControlName = "dateTimePicker2";
     controlContainerTool13.InstanceProps.Width = 155;
     controlContainerTool14.ControlName = "rbtn_BatchInfo";
     controlContainerTool14.InstanceProps.IsFirstInGroup = true;
     controlContainerTool15.ControlName = "rbtn_BilletInfo";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool2,
     controlContainerTool13,
     controlContainerTool14,
     controlContainerTool15});
     ultraToolbar1.Text = "UltraToolbar2";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     controlContainerTool4.ControlName = "tbQueryBatchNo";
     controlContainerTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool4.InstanceProps.Width = 160;
     controlContainerTool8.ControlName = "tbQueryStoveNo";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     controlContainerTool8.InstanceProps.Width = 160;
     controlContainerTool9.ControlName = "tbQueryButtressNo";
     controlContainerTool9.InstanceProps.IsFirstInGroup = true;
     controlContainerTool9.InstanceProps.Width = 150;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool4,
     controlContainerTool8,
     controlContainerTool9,
     buttonTool1,
     buttonTool2,
     buttonTool3});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool10.ControlName = "tbQueryButtressNo";
     controlContainerTool10.SharedPropsInternal.Caption = "���ܺ�";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 150;
     appearance76.Image = ((object)(resources.GetObject("appearance76.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance76;
     buttonTool6.SharedPropsInternal.Caption = "��ѯ";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool11.ControlName = "tbQueryStoveNo";
     controlContainerTool11.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool11.SharedPropsInternal.Width = 160;
     appearance77.Image = ((object)(resources.GetObject("appearance77.Image")));
     buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance77;
     buttonTool7.SharedPropsInternal.Caption = "����";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance78.Image = ((object)(resources.GetObject("appearance78.Image")));
     buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance78;
     buttonTool8.SharedPropsInternal.Caption = "��������";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.ControlName = "tbQueryBatchNo";
     controlContainerTool12.SharedPropsInternal.Caption = "���Ʊ��";
     controlContainerTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.SharedPropsInternal.Width = 160;
     controlContainerTool3.ControlName = "cbxDateTime";
     controlContainerTool3.SharedPropsInternal.Caption = " ";
     controlContainerTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool3.SharedPropsInternal.Width = 25;
     controlContainerTool5.ControlName = "dateTimePicker1";
     controlContainerTool5.SharedPropsInternal.Caption = "����ʱ���";
     controlContainerTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool5.SharedPropsInternal.Width = 204;
     controlContainerTool6.ControlName = "dateTimePicker2";
     controlContainerTool6.SharedPropsInternal.Caption = "��";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.SharedPropsInternal.Width = 155;
     controlContainerTool7.ControlName = "rbtn_BatchInfo";
     controlContainerTool7.SharedPropsInternal.Caption = "��ѯ���";
     controlContainerTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool17.ControlName = "rbtn_BilletInfo";
     controlContainerTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool10,
     buttonTool6,
     controlContainerTool11,
     buttonTool7,
     buttonTool8,
     controlContainerTool12,
     controlContainerTool3,
     controlContainerTool5,
     controlContainerTool6,
     controlContainerTool7,
     controlContainerTool17});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1323, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1323, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 745);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1323, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraToolbarsDockArea1
     //
     this.ultraToolbarsDockArea1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea1, null);
     this.ultraToolbarsDockArea1.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this.ultraToolbarsDockArea1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea1.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea1.Name = "ultraToolbarsDockArea1";
     this.ultraToolbarsDockArea1.Size = new System.Drawing.Size(1323, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea1, null);
     //
     // ultraToolbarsDockArea2
     //
     this.ultraToolbarsDockArea2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea2, null);
     this.ultraToolbarsDockArea2.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this.ultraToolbarsDockArea2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea2.Location = new System.Drawing.Point(0, 745);
     this.ultraToolbarsDockArea2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea2.Name = "ultraToolbarsDockArea2";
     this.ultraToolbarsDockArea2.Size = new System.Drawing.Size(1323, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea2, null);
     //
     // ultraToolbarsDockArea3
     //
     this.ultraToolbarsDockArea3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea3, null);
     this.ultraToolbarsDockArea3.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this.ultraToolbarsDockArea3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea3.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea3.Name = "ultraToolbarsDockArea3";
     this.ultraToolbarsDockArea3.Size = new System.Drawing.Size(0, 745);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea3, null);
     //
     // ultraToolbarsDockArea4
     //
     this.ultraToolbarsDockArea4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea4, null);
     this.ultraToolbarsDockArea4.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this.ultraToolbarsDockArea4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea4.Location = new System.Drawing.Point(1323, 0);
     this.ultraToolbarsDockArea4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea4.Name = "ultraToolbarsDockArea4";
     this.ultraToolbarsDockArea4.Size = new System.Drawing.Size(0, 745);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea4, null);
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "As";
     this.dataColumn61.ColumnName = "FN_GP_AS";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "Ti";
     this.dataColumn69.ColumnName = "FN_GP_TI";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "Sb";
     this.dataColumn70.ColumnName = "FN_GP_SB";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "Als";
     this.dataColumn71.ColumnName = "FN_GP_AlS";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "As";
     this.dataColumn72.ColumnName = "FN_GP_AS";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "Ti";
     this.dataColumn73.ColumnName = "FN_GP_TI";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "Sb";
     this.dataColumn74.ColumnName = "FN_GP_SB";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "Als";
     this.dataColumn75.ColumnName = "FN_GP_ALS";
     //
     // Batch
     //
     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.FrmBase_Fill_Panel);
     this.Controls.Add(this.ultraToolbarsDockArea3);
     this.Controls.Add(this.ultraToolbarsDockArea4);
     this.Controls.Add(this.ultraToolbarsDockArea1);
     this.Controls.Add(this.ultraToolbarsDockArea2);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.Name = "Batch";
     this.Text = "����";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.Batch_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.CodeType.ResumeLayout(false);
     this.CodeType.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbStatics)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 57
0
        public void ShowMe(Model.Requerimiento_Cabecera _MRC,
                           Model.Requerimiento_Detalle _MRD,
                           Model.Requerimiento_Detalle_Bien _MRDB,
                           Model.Requerimiento_Detalle_Servicio _MRDS,
                           string strNomFuenteFinanciamiento,
                           string strNomCentroCosto,
                           string strNomProyecto,
                           string strNomPosicionPresupuestal,
                           string strNomClasificador,
                           string strNomTipoGasto,
                           string strNomMaterial,
                           string strNomServicio,
                           Infragistics.Win.UltraWinGrid.UltraGrid Grid,
                           Infragistics.Win.UltraWinEditors.UltraTextEditor text
                           )
        {
            if (_MRC.CcodTipoAdquisicion.TrimEnd() == "B")
            {
                this.UTC_Principal.SelectedTab = this.UTC_Principal.Tabs["Bien"];
                this.Text = "REQUERIMIENTO DE BIEN";
            }
            else
            {
                this.UTC_Principal.SelectedTab = this.UTC_Principal.Tabs["Servicio"];
                this.Text = "REQUERIMIENTO DE SERVICIO";
            }



            MRC  = _MRC;
            MRD  = _MRD;
            MRDB = _MRDB;
            MRDS = _MRDS;

            m_Grid = Grid;
            m_text = text;

            Model.PosicionPresupuestal   MPP = new Model.PosicionPresupuestal();
            Service.PosicionPresupuestal SPP = new Service.PosicionPresupuestal();
            Service.Clasificacion        SC  = new Service.Clasificacion();

            if (MyStuff.UsaWCF == true)
            {
                DS_Bien     = objWCF.Ayuda_Material("");
                DS_Servicio = objWCF.Ayuda_Servicio("");
                this.Cbo_CodUnidadMedida.CargaDT(objWCF.Combo_UnidadMedida().Tables[0]);
            }
            else
            {
                Service.Material    SM  = new Service.Material();
                Service.DataGeneral SDG = new Service.DataGeneral();

                DS_Bien     = SM.Ayuda_Material("");
                DS_Servicio = SM.Ayuda_Servicio("");
                this.Cbo_CodUnidadMedida.CargaDT(SDG.Combo_UnidadMedida().Tables[0]);
            }

            this.Txt_CodMaterial.nombreDS = DS_Bien;
            this.Txt_CodServicio.nombreDS = DS_Servicio;

            if (MRD.IidRequerimiento_Detalle != 0)
            {
                this.Btn_Grabar_Salir.Visible = false;

                this.Txt_CodFuenteFinanciamiento.Value = MRD.CcodFuenteFinanciamiento;
                this.Txt_NomFuenteFinanciamiento.Value = strNomFuenteFinanciamiento;
                this.Txt_CodCentroCosto.Value          = MRD.CcodCeCo;
                this.Txt_NomCentroCosto.Value          = strNomCentroCosto;
                this.Txt_CodProyecto.Value             = MRD.CcodProyecto;
                this.Txt_NomProyecto.Value             = strNomProyecto;
                this.Txt_CodPosicionPresupuestal.Value = MRD.CcodPosPre;
                this.Txt_NomPosicionPresupuestal.Value = strNomPosicionPresupuestal;
                this.Txt_CodClasificacion.Value        = MRD.CcodClasificador;
                this.Txt_NomClasificacion.Value        = strNomClasificador;
                this.Txt_CodTipoGasto.Value            = MRD.CcodTipoGasto;
                this.Txt_NomTipoGasto.Value            = strNomTipoGasto;

                if (MRC.CcodTipoAdquisicion.TrimEnd() == "B")
                {
                    this.Txt_CodMaterial.Value             = MRDB.CcodMaterial;
                    this.Txt_NomMaterial.Value             = strNomMaterial;
                    this.Txt_Stock.Value                   = MRDB.Fstock;
                    this.Edt_EspecificacionTecnica.Value   = MRDB.TespecificacionTecnica;
                    this.Txt_Cantidad.Value                = MRDB.Fcantidad;
                    this.Cbo_CodUnidadMedida.SelectedValue = MRDB.CcodUnidadMedida;
                    this.Txt_Precio.Value                  = MRDB.FprecioUnitario;
                    this.Txt_ImporteTotal_B.Value          = MRD.FimporteTotal;
                }
                else
                {
                    this.Txt_CodServicio.Value            = MRDS.CcodServicio;
                    this.Txt_NomServicio.Value            = strNomServicio;
                    this.Txt_EspecificacionServicio.Value = MRDS.TespecificacionTecnica;
                    this.Txt_ImporteTotal_S.Value         = MRD.FimporteTotal;
                }
            }

            this.ShowDialog();
        }
Ejemplo n.º 58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATIONNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TABLENAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DEPART");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_TIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_OPERATOR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATA");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_IP");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GRAPHNAME", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DATANAME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_WEIGHTTYPE");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ccBeginDate");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("to");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("开始");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("至");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("查询日期");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CarWeightLogQuery));
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Update");
     Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
     Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ccBeginDate");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("to");
     this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.tbLogData = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tbWeight = new System.Windows.Forms.TextBox();
     this.tbCardNo = new System.Windows.Forms.TextBox();
     this.tbCarNo = new System.Windows.Forms.TextBox();
     this.cbBF = new System.Windows.Forms.ComboBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid3 = 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.dataTable2 = new System.Data.DataTable();
     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.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     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_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._ClientArea_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.EndTime = new System.Windows.Forms.DateTimePicker();
     this.BeginTime = new System.Windows.Forms.DateTimePicker();
     this.dataColumn23 = new System.Data.DataColumn();
     this.ultraPanel1.ClientArea.SuspendLayout();
     this.ultraPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPanel1
     //
     //
     // ultraPanel1.ClientArea
     //
     this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox1);
     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.Top;
     this.ultraPanel1.Location = new System.Drawing.Point(0, 26);
     this.ultraPanel1.Name = "ultraPanel1";
     this.ultraPanel1.Size = new System.Drawing.Size(992, 180);
     this.ultraPanel1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel1, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.tbLogData);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.tbWeight);
     this.ultraGroupBox1.Controls.Add(this.tbCardNo);
     this.ultraGroupBox1.Controls.Add(this.tbCarNo);
     this.ultraGroupBox1.Controls.Add(this.cbBF);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(992, 180);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "操作日志";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // tbLogData
     //
     this.coreBind.SetDatabasecommand(this.tbLogData, null);
     this.tbLogData.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbLogData.Location = new System.Drawing.Point(356, 22);
     this.tbLogData.Multiline = true;
     this.tbLogData.Name = "tbLogData";
     this.tbLogData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.tbLogData.Size = new System.Drawing.Size(608, 158);
     this.tbLogData.TabIndex = 733;
     this.coreBind.SetVerification(this.tbLogData, 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(12, 43);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(53, 12);
     this.label3.TabIndex = 732;
     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.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(34, 104);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(29, 12);
     this.label1.TabIndex = 731;
     this.label1.Text = "卡号";
     this.coreBind.SetVerification(this.label1, null);
     this.label1.Visible = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.label5, null);
     this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(31, 156);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 12);
     this.label5.TabIndex = 730;
     this.label5.Text = "期限重量";
     this.coreBind.SetVerification(this.label5, null);
     this.label5.Visible = false;
     //
     // 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(43, 131);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 722;
     this.label2.Text = "车号";
     this.coreBind.SetVerification(this.label2, null);
     this.label2.Visible = false;
     //
     // tbWeight
     //
     this.coreBind.SetDatabasecommand(this.tbWeight, null);
     this.tbWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbWeight.Location = new System.Drawing.Point(89, 153);
     this.tbWeight.Name = "tbWeight";
     this.tbWeight.Size = new System.Drawing.Size(56, 21);
     this.tbWeight.TabIndex = 711;
     this.coreBind.SetVerification(this.tbWeight, null);
     this.tbWeight.Visible = false;
     //
     // tbCardNo
     //
     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(69, 101);
     this.tbCardNo.Name = "tbCardNo";
     this.tbCardNo.Size = new System.Drawing.Size(76, 21);
     this.tbCardNo.TabIndex = 706;
     this.coreBind.SetVerification(this.tbCardNo, null);
     this.tbCardNo.Visible = false;
     //
     // tbCarNo
     //
     this.coreBind.SetDatabasecommand(this.tbCarNo, null);
     this.tbCarNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbCarNo.Location = new System.Drawing.Point(78, 128);
     this.tbCarNo.Name = "tbCarNo";
     this.tbCarNo.Size = new System.Drawing.Size(67, 21);
     this.tbCarNo.TabIndex = 705;
     this.coreBind.SetVerification(this.tbCarNo, null);
     this.tbCarNo.Visible = false;
     //
     // cbBF
     //
     this.cbBF.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cbBF.BackColor = System.Drawing.Color.Bisque;
     this.coreBind.SetDatabasecommand(this.cbBF, null);
     this.cbBF.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBF.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbBF.FormattingEnabled = true;
     this.cbBF.Location = new System.Drawing.Point(69, 38);
     this.cbBF.Name = "cbBF";
     this.cbBF.Size = new System.Drawing.Size(154, 20);
     this.cbBF.TabIndex = 703;
     this.coreBind.SetVerification(this.cbBF, null);
     this.cbBF.SelectedIndexChanged += new System.EventHandler(this.cbBF_SelectedIndexChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     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, 206);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 460);
     this.ultraPanel2.TabIndex = 1;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(992, 460);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "日志数据";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid3
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid3, null);
     this.ultraGrid3.DataMember = "Table2";
     this.ultraGrid3.DataSource = this.dataSet1;
     appearance1.BackColor = System.Drawing.Color.White;
     appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
     this.ultraGrid3.DisplayLayout.Appearance = appearance1;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.Hidden = true;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Hidden = true;
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn4.Header.VisiblePosition = 4;
     ultraGridColumn5.Header.VisiblePosition = 5;
     ultraGridColumn6.Header.VisiblePosition = 6;
     ultraGridColumn7.Header.VisiblePosition = 7;
     ultraGridColumn8.Header.VisiblePosition = 8;
     ultraGridColumn9.Header.VisiblePosition = 9;
     ultraGridColumn10.Header.VisiblePosition = 2;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11});
     this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid3.DisplayLayout.InterBandSpacing = 10;
     this.ultraGrid3.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance2.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance2;
     this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.ultraGrid3.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     this.ultraGrid3.DisplayLayout.Override.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Contains;
     this.ultraGrid3.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
     appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance3.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance3.ForeColor = System.Drawing.Color.White;
     appearance3.TextHAlignAsString = "Left";
     appearance3.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance3;
     this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance4;
     appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(61)))), ((int)(((byte)(149)))), ((int)(((byte)(255)))));
     appearance5.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(68)))), ((int)(((byte)(208)))));
     appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorAppearance = appearance5;
     this.ultraGrid3.DisplayLayout.Override.RowSelectorWidth = 12;
     this.ultraGrid3.DisplayLayout.Override.RowSpacingBefore = 2;
     appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance6.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance6;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid3.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     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.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid3.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid3.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid3.Location = new System.Drawing.Point(3, 18);
     this.ultraGrid3.Name = "ultraGrid3";
     this.ultraGrid3.Size = new System.Drawing.Size(986, 439);
     this.ultraGrid3.TabIndex = 7;
     this.coreBind.SetVerification(this.ultraGrid3, null);
     this.ultraGrid3.Click += new System.EventHandler(this.ultraGrid3_Click);
     //
     // 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.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption = "卡号";
     this.dataColumn1.ColumnName = "FS_CARDNUMBER";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "车号";
     this.dataColumn2.ColumnName = "FS_CARNO";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "期限皮重";
     this.dataColumn3.ColumnName = "FN_TAREWEIGHT";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "开始时间";
     this.dataColumn4.ColumnName = "FD_STARTTIME";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "结束时间";
     this.dataColumn5.ColumnName = "FD_ENDTIME";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption = "计量点";
     this.dataColumn6.ColumnName = "FS_POINTNAME";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "计量员";
     this.dataColumn7.ColumnName = "FS_PERSON";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "计量时间";
     this.dataColumn8.ColumnName = "FD_DATETIME";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "操作编号";
     this.dataColumn9.ColumnName = "FS_WEIGHTNO";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "班次";
     this.dataColumn10.ColumnName = "FS_SHIFT";
     //
     // dataColumn11
     //
     this.dataColumn11.Caption = "数据状态";
     this.dataColumn11.ColumnName = "FS_DATASTATE";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "有效标志";
     this.dataColumn12.ColumnName = "FS_ISVAILD";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FS_OPERATIONNO";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "数据表名称";
     this.dataColumn14.ColumnName = "FS_TABLENAME";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "操作部门";
     this.dataColumn15.ColumnName = "FS_DEPART";
     //
     // dataColumn16
     //
     this.dataColumn16.Caption = "操作类型";
     this.dataColumn16.ColumnName = "FS_TYPE";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "操作时间";
     this.dataColumn17.ColumnName = "FD_TIME";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "操作人";
     this.dataColumn18.ColumnName = "FS_OPERATOR";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "操作数据";
     this.dataColumn19.ColumnName = "FS_DATA";
     //
     // dataColumn20
     //
     this.dataColumn20.Caption = "主机IP地址";
     this.dataColumn20.ColumnName = "FS_IP";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "界面名称";
     this.dataColumn21.ColumnName = "FS_GRAPHNAME";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "数据表名称";
     this.dataColumn22.ColumnName = "FS_DATANAME";
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.ultraPanel1.ClientArea;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool3.InstanceProps.Width = 190;
     controlContainerTool5.InstanceProps.Width = 112;
     buttonTool14.InstanceProps.IsFirstInGroup = true;
     buttonTool15.InstanceProps.IsFirstInGroup = true;
     buttonTool16.InstanceProps.IsFirstInGroup = true;
     controlContainerTool2.ControlName = "BeginTime";
     controlContainerTool2.InstanceProps.Width = 169;
     controlContainerTool8.ControlName = "EndTime";
     controlContainerTool8.InstanceProps.Width = 130;
     buttonTool13.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool3,
     controlContainerTool5,
     buttonTool14,
     buttonTool15,
     buttonTool16,
     controlContainerTool2,
     controlContainerTool8,
     buttonTool13});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     controlContainerTool1.SharedPropsInternal.Caption = "查询时间  开始";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Enabled = false;
     controlContainerTool1.SharedPropsInternal.Visible = false;
     controlContainerTool1.SharedPropsInternal.Width = 190;
     controlContainerTool6.SharedPropsInternal.Caption = "至";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.SharedPropsInternal.Enabled = false;
     controlContainerTool6.SharedPropsInternal.Visible = false;
     controlContainerTool6.SharedPropsInternal.Width = 112;
     controlContainerTool7.ControlName = "cbDateField";
     controlContainerTool7.SharedPropsInternal.Caption = "查询时间";
     controlContainerTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.TextOnlyAlways;
     controlContainerTool7.SharedPropsInternal.Enabled = false;
     controlContainerTool7.SharedPropsInternal.Visible = false;
     appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
     buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance11;
     buttonTool9.SharedPropsInternal.Caption = "查询";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance12.Image = ((object)(resources.GetObject("appearance12.Image")));
     buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
     buttonTool10.SharedPropsInternal.Caption = "增加";
     buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool10.SharedPropsInternal.Enabled = false;
     buttonTool10.SharedPropsInternal.Visible = false;
     appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
     buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance13;
     buttonTool11.SharedPropsInternal.Caption = "修改";
     buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool11.SharedPropsInternal.Enabled = false;
     buttonTool11.SharedPropsInternal.Visible = false;
     appearance14.Image = ((object)(resources.GetObject("appearance14.Image")));
     buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance14;
     buttonTool12.SharedPropsInternal.Caption = "删除";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool12.SharedPropsInternal.Enabled = false;
     buttonTool12.SharedPropsInternal.Visible = false;
     controlContainerTool4.ControlName = "BeginTime";
     controlContainerTool4.SharedPropsInternal.Caption = "开始时间";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.SharedPropsInternal.Width = 169;
     controlContainerTool9.ControlName = "EndTime";
     controlContainerTool9.SharedPropsInternal.Caption = "至";
     controlContainerTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool9.SharedPropsInternal.Width = 130;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool6,
     controlContainerTool7,
     buttonTool9,
     buttonTool10,
     buttonTool11,
     buttonTool12,
     controlContainerTool4,
     controlContainerTool9});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 0);
     this._ClientArea_Toolbars_Dock_Area_Top.Name = "_ClientArea_Toolbars_Dock_Area_Top";
     this._ClientArea_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._ClientArea_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 666);
     this._ClientArea_Toolbars_Dock_Area_Bottom.Name = "_ClientArea_Toolbars_Dock_Area_Bottom";
     this._ClientArea_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._ClientArea_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Bottom, 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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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, 26);
     this._ClientArea_Toolbars_Dock_Area_Left.Name = "_ClientArea_Toolbars_Dock_Area_Left";
     this._ClientArea_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 640);
     this._ClientArea_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Left, null);
     //
     // _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)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     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(992, 26);
     this._ClientArea_Toolbars_Dock_Area_Right.Name = "_ClientArea_Toolbars_Dock_Area_Right";
     this._ClientArea_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 640);
     this._ClientArea_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._ClientArea_Toolbars_Dock_Area_Right, null);
     //
     // EndTime
     //
     this.coreBind.SetDatabasecommand(this.EndTime, null);
     this.EndTime.Location = new System.Drawing.Point(202, 2);
     this.EndTime.Name = "EndTime";
     this.EndTime.Size = new System.Drawing.Size(108, 21);
     this.EndTime.TabIndex = 735;
     this.coreBind.SetVerification(this.EndTime, null);
     //
     // BeginTime
     //
     this.coreBind.SetDatabasecommand(this.BeginTime, null);
     this.BeginTime.Location = new System.Drawing.Point(69, 2);
     this.BeginTime.Name = "BeginTime";
     this.BeginTime.Size = new System.Drawing.Size(110, 21);
     this.BeginTime.TabIndex = 734;
     this.coreBind.SetVerification(this.BeginTime, null);
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "计量类型";
     this.dataColumn23.ColumnName = "FS_WEIGHTTYPE";
     //
     // CarWeightLogQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 666);
     this.Controls.Add(this.EndTime);
     this.Controls.Add(this.ultraPanel2);
     this.Controls.Add(this.BeginTime);
     this.Controls.Add(this.ultraPanel1);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Left);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Right);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Top);
     this.Controls.Add(this._ClientArea_Toolbars_Dock_Area_Bottom);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "CarWeightLogQuery";
     this.Text = "操作日志查询";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.HandRecordTermTare_Load);
     this.ultraPanel1.ClientArea.ResumeLayout(false);
     this.ultraPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 59
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 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);
 }
Ejemplo n.º 60
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column1");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column2");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column3");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Column4");
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FOQCDetail));
     this.ultraGrid1  = new Infragistics.Win.UltraWinGrid.UltraGrid();
     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.groupBox4   = new System.Windows.Forms.GroupBox();
     this.ucButton4   = new UserControl.UCButton();
     this.ucButton3   = new UserControl.UCButton();
     this.dataSet1    = new System.Data.DataSet();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.Cursor     = System.Windows.Forms.Cursors.Default;
     this.ultraGrid1.DataSource = this.dataTable1;
     appearance1.BackColor      = System.Drawing.Color.White;
     this.ultraGrid1.DisplayLayout.Appearance = appearance1;
     ultraGridColumn1.Header.Caption          = "抽检项目";
     ultraGridColumn2.Header.Caption          = "等级";
     ultraGridColumn3.Header.Caption          = "结果";
     ultraGridColumn4.Header.Caption          = "备注";
     ultraGridBand1.Columns.Add(ultraGridColumn1);
     ultraGridBand1.Columns.Add(ultraGridColumn2);
     ultraGridBand1.Columns.Add(ultraGridColumn3);
     ultraGridBand1.Columns.Add(ultraGridColumn4);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid1.Name     = "ultraGrid1";
     this.ultraGrid1.Size     = new System.Drawing.Size(528, 273);
     this.ultraGrid1.TabIndex = 0;
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.dataColumn2,
         this.dataColumn3,
         this.dataColumn4
     });
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Column1";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "Column2";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "Column3";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "Column4";
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.White;
     this.groupBox4.Controls.Add(this.ucButton4);
     this.groupBox4.Controls.Add(this.ucButton3);
     this.groupBox4.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox4.Location = new System.Drawing.Point(0, 209);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(528, 64);
     this.groupBox4.TabIndex = 156;
     this.groupBox4.TabStop  = false;
     //
     // ucButton4
     //
     this.ucButton4.BackColor       = System.Drawing.SystemColors.Control;
     this.ucButton4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucButton4.BackgroundImage")));
     this.ucButton4.ButtonType      = UserControl.ButtonTypes.Exit;
     this.ucButton4.Caption         = "退出";
     this.ucButton4.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucButton4.Location        = new System.Drawing.Point(288, 24);
     this.ucButton4.Name            = "ucButton4";
     this.ucButton4.Size            = new System.Drawing.Size(88, 22);
     this.ucButton4.TabIndex        = 9;
     //
     // ucButton3
     //
     this.ucButton3.BackColor       = System.Drawing.SystemColors.Control;
     this.ucButton3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ucButton3.BackgroundImage")));
     this.ucButton3.ButtonType      = UserControl.ButtonTypes.Confirm;
     this.ucButton3.Caption         = "确认";
     this.ucButton3.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.ucButton3.Location        = new System.Drawing.Point(144, 24);
     this.ucButton3.Name            = "ucButton3";
     this.ucButton3.Size            = new System.Drawing.Size(88, 22);
     this.ucButton3.TabIndex        = 8;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("zh-CN");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // FOQCDetail
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(528, 273);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.ultraGrid1);
     this.Name = "FOQCDetail";
     this.Text = "抽检详细";
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     this.ResumeLayout(false);
 }