Beispiel #1
0
		public System.Data.DataTable DataReaderToDataTable(MySqlDataReader Reader)
		{
			System.Data.DataTable dt = new System.Data.DataTable();
			System.Data.DataColumn dc;
			System.Data.DataRow dr;
			ArrayList arr = new ArrayList();
			int i;

			for(i=0;i<Reader.FieldCount;i++)
			{
				dc = new System.Data.DataColumn();

				dc.ColumnName = Reader.GetName(i);					
				arr.Add(dc.ColumnName);

				dt.Columns.Add(dc);
			}
			
			while(Reader.Read())
			{
				dr = dt.NewRow();

				for (i=0;i<Reader.FieldCount;i++)
				{
					dr[(string)arr[i]] = Reader[i].ToString();
				}
				dt.Rows.Add(dr);
			}

			Reader.Close();
			return dt;
		}
Beispiel #2
0
        public static void Init()
        {
            dataTable = new System.Data.DataTable("Ivas");
            System.Data.DataColumn myDataColumn;

            myDataColumn = new System.Data.DataColumn();
            myDataColumn.DataType = System.Type.GetType("System.Int32");
            myDataColumn.ColumnName = "Codigo";
            dataTable.Columns.Add(myDataColumn);

            myDataColumn = new System.Data.DataColumn();
            myDataColumn.DataType = System.Type.GetType("System.Int32");
            myDataColumn.ColumnName = "Porcentaje";
            dataTable.Columns.Add(myDataColumn);

            dataTable.PrimaryKey = new System.Data.DataColumn[]{dataTable.Columns["Codigo"]} ;

            System.Data.DataRow dataRow ;
            for ( int i = 0 ; i < 5 ; i++ )
            {
                dataRow = dataTable.NewRow();
                dataRow["Codigo"] = i+1 ;
                dataRow["Porcentaje"] = 0 ;
                dataTable.Rows.Add(dataRow);
            }
        }
Beispiel #3
0
        public Plaza()
        {
            x = y = 0 ;
            tipoMesa = false ;
            estado = EstadoActiva ;
            juntadaCon = -1 ;

            //Generamos la tabla
            dataLineas.Columns.Clear();

            System.Data.DataColumn miColumna ;

            miColumna = new System.Data.DataColumn();
            miColumna.DataType = System.Type.GetType("System.String");
            miColumna.ColumnName = "Nombre" ;
            dataLineas.Columns.Add(miColumna);

            miColumna = new System.Data.DataColumn();
            miColumna.DataType = System.Type.GetType("System.String");
            miColumna.ColumnName = "Estado" ;
            dataLineas.Columns.Add(miColumna);

            miColumna = new System.Data.DataColumn();
            miColumna.DataType = System.Type.GetType("System.Double");
            miColumna.ColumnName = "Precio" ;
            dataLineas.Columns.Add(miColumna);
        }
Beispiel #4
0
 /// <summary>
 /// Export data from CSV file given the full filename.
 /// </summary>
 /// <param name="FileName">CSV file</param>
 /// <returns>DataTable containing data from CSV file. All columns are in string type.</returns>
 public static System.Data.DataTable CSVToDataTable(string FileName)
 {
     #region logic
     System.Data.DataTable result = new System.Data.DataTable();
     System.IO.StreamReader fileReader = null;
     if (!System.IO.File.Exists(FileName))
     {
         throw new System.IO.IOException("File not found!");
     }
     if (new System.IO.FileInfo(FileName).Length == 0)
     {
         throw new Exception("File is EMPTY!");
     }
     try
     {
         fileReader = new System.IO.StreamReader(FileName);
         List<string> headers = RowToList(fileReader.ReadLine());
         foreach (string header in headers)
         {
             System.Data.DataColumn tempColumn = new System.Data.DataColumn();
             tempColumn.ColumnName = header;
             tempColumn.DataType = Type.GetType("System.String");
             result.Columns.Add(tempColumn);
             tempColumn = null;
         }
         string singleRow = "";
         while ((singleRow = fileReader.ReadLine()) != null)
         {
             System.Data.DataRow tempRow = result.NewRow();
             List<string> dataInList = RowToList(singleRow);
             for (int i = 0; i < result.Columns.Count; i++)
             {
                 tempRow.ItemArray[i] = dataInList[i];
             }
         }
     }
     #endregion
     #region exception handling
     catch (Exception AllEx)
     {
         throw AllEx;
     }
     finally
     {
         if (fileReader.BaseStream.CanRead)
         {
             fileReader.Close();
         }
         fileReader = null;
     }
     #endregion
     return result;
 }
        public static System.Data.DataTable GetEmptyDataTable(List<string> ColumnNames)
        {
            System.Data.DataTable table = new System.Data.DataTable();

            System.Data.DataColumn column;
            foreach (string s in ColumnNames)
            {
                if (!string.IsNullOrWhiteSpace(s))
                {
                    column = new System.Data.DataColumn();
                    column.DataType = typeof(System.String);
                    column.ColumnName = s;
                    table.Columns.Add(column);
                }
            }

            return table;
        }
Beispiel #6
0
 internal void InitVars()
 {
     this.columnCaption     = base.Columns["Caption"];
     this.columnTooltip     = base.Columns["Tooltip"];
     this.columnDescription = base.Columns["Description"];
 }
Beispiel #7
0
        public static async void UpdateDataAsync() //This method should be rewritten to for your task
        {
            IndexRow = Convert.ToInt32(keeper.GetParam("IndexRow"));
            SqlCommand dbCommand1 = new SqlCommand
            {
                CommandText    = "GetErrorDrawingsArchivation",
                Connection     = connect as SqlConnection,
                CommandType    = System.Data.CommandType.StoredProcedure,
                CommandTimeout = 3600
            };

            System.Data.IDataParameter ParamInput = new SqlParameter {
                ParameterName = "@LastIndexError", Value = IndexRow
            };
            dbCommand1.Parameters.Add(ParamInput);
            Task <System.Data.DataTable> task1 = Task <System.Data.DataTable> .Factory.StartNew(() =>
            {
                System.Data.DataTable TaskTable    = new System.Data.DataTable();
                System.Data.DataColumn dataColumn1 = new System.Data.DataColumn("ID");
                System.Data.DataColumn dataColumn2 = new System.Data.DataColumn("NameFile");
                System.Data.DataColumn dataColumn3 = new System.Data.DataColumn("IDLast");
                TaskTable.Columns.Add(dataColumn1);
                TaskTable.Columns.Add(dataColumn2);
                TaskTable.Columns.Add(dataColumn3);
                try
                {
                    lock (CountConnectedLock)
                    {
                        if (CountConnected == 0)
                        {
                            connect.Open();
                        }
                        CountConnected++;
                    }


                    System.Data.IDataReader dataReader = dbCommand1.ExecuteReader();

                    while (dataReader.Read())
                    {
                        var newRow = TaskTable.Rows.Add();
                        foreach (System.Data.DataColumn col in TaskTable.Columns)
                        {
                            newRow[col.ColumnName] = dataReader[col.ColumnName];
                        }
                    }
                    System.Diagnostics.Debug.WriteLine(TaskTable.Rows[0][0].ToString());
                    System.Diagnostics.Debug.WriteLine(TaskTable.Rows[0][1].ToString());
                    System.Diagnostics.Debug.WriteLine(TaskTable.Rows[0][2].ToString());
                }
                catch (Exception err)
                {
                    log.Save("Task Reader errors", err.Message);
                }
                finally
                {
                    lock (CountConnectedLock)
                    {
                        if (CountConnected == 1)
                        {
                            connect.Close();
                        }
                        CountConnected--;
                    }
                }
                return(TaskTable);
            });

            table = await task1;
            int CountTable = table.Rows.Count;

            if (CountTable > 0)
            {
                keeper.Save("IndexRow", table.Rows[0][2].ToString());
            }
            System.Diagnostics.Debug.WriteLine(CountTable);
            DataUpdateEventArgs eventArgs = new DataUpdateEventArgs {
                Count = CountTable
            };

            DataUpdated?.Invoke(null, eventArgs);
        }
Beispiel #8
0
 private void InitClass() {
     this.columnID_IZG = new System.Data.DataColumn("ID_IZG", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnID_IZG);
     this.columnNAME_IZG = new System.Data.DataColumn("NAME_IZG", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnNAME_IZG);
     this.columnPR_NAC = new System.Data.DataColumn("PR_NAC", typeof(decimal), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnPR_NAC);
     this.columnCR_DATE = new System.Data.DataColumn("CR_DATE", typeof(System.DateTime), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCR_DATE);
     this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                     this.columnID_IZG}, true));
     this.columnID_IZG.AllowDBNull = false;
     this.columnID_IZG.Unique = true;
     this.columnNAME_IZG.MaxLength = 255;
 }
Beispiel #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dataGrid1              = new System.Windows.Forms.DataGrid();
     this.dsContacts             = 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.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.panel1  = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsContacts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGrid1
     //
     this.dataGrid1.CaptionVisible  = false;
     this.dataGrid1.DataMember      = "Contacts";
     this.dataGrid1.DataSource      = this.dsContacts;
     this.dataGrid1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(0, 0);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.ReadOnly        = true;
     this.dataGrid1.Size            = new System.Drawing.Size(544, 266);
     this.dataGrid1.TabIndex        = 0;
     this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     //
     // dsContacts
     //
     this.dsContacts.DataSetName = "NewDataSet";
     this.dsContacts.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsContacts.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 = "Contacts";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName   = "DisplayName";
     this.dataColumn1.DefaultValue = "";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName   = "Address";
     this.dataColumn2.DefaultValue = "";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName   = "AddressType";
     this.dataColumn3.DefaultValue = "";
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.DataGrid = this.dataGrid1;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.dataGridTextBoxColumn1,
         this.dataGridTextBoxColumn2,
         this.dataGridTextBoxColumn3
     });
     this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName     = "Contacts";
     this.dataGridTableStyle1.ReadOnly        = true;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format      = "";
     this.dataGridTextBoxColumn1.FormatInfo  = null;
     this.dataGridTextBoxColumn1.HeaderText  = "Display Name";
     this.dataGridTextBoxColumn1.MappingName = "DisplayName";
     this.dataGridTextBoxColumn1.NullText    = "(none)";
     this.dataGridTextBoxColumn1.Width       = 175;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format      = "";
     this.dataGridTextBoxColumn2.FormatInfo  = null;
     this.dataGridTextBoxColumn2.HeaderText  = "Address";
     this.dataGridTextBoxColumn2.MappingName = "Address";
     this.dataGridTextBoxColumn2.NullText    = "(none)";
     this.dataGridTextBoxColumn2.ReadOnly    = true;
     this.dataGridTextBoxColumn2.Width       = 200;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format      = "";
     this.dataGridTextBoxColumn3.FormatInfo  = null;
     this.dataGridTextBoxColumn3.HeaderText  = "Address Type";
     this.dataGridTextBoxColumn3.MappingName = "AddressType";
     this.dataGridTextBoxColumn3.NullText    = "(none)";
     this.dataGridTextBoxColumn3.ReadOnly    = true;
     this.dataGridTextBoxColumn3.Width       = 110;
     //
     // button1
     //
     this.button1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location     = new System.Drawing.Point(360, 16);
     this.button1.Name         = "button1";
     this.button1.Size         = new System.Drawing.Size(75, 23);
     this.button1.TabIndex     = 1;
     this.button1.Text         = "OK";
     //
     // button2
     //
     this.button2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button2.Location     = new System.Drawing.Point(448, 16);
     this.button2.Name         = "button2";
     this.button2.Size         = new System.Drawing.Size(75, 23);
     this.button2.TabIndex     = 2;
     this.button2.Text         = "Cancel";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 266);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(544, 56);
     this.panel1.TabIndex = 3;
     //
     // ContactsForm
     //
     this.AcceptButton      = this.button1;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.button2;
     this.ClientSize        = new System.Drawing.Size(544, 322);
     this.Controls.Add(this.dataGrid1);
     this.Controls.Add(this.panel1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(540, 360);
     this.Name          = "ContactsForm";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Contacts";
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsContacts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #10
0
 private void InitClass() {
     this.columnmenuTitle = new System.Data.DataColumn("menuTitle", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnmenuTitle);
     this.columnleftmenuUrl = new System.Data.DataColumn("leftmenuUrl", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnleftmenuUrl);
     this.columncontentUrl = new System.Data.DataColumn("contentUrl", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columncontentUrl);
 }
 private void InitClass() {
     this.columnid = new System.Data.DataColumn("id", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnid);
     this.columnFIO = new System.Data.DataColumn("FIO", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnFIO);
     this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                     this.columnid}, true));
     this.columnid.AutoIncrement = true;
     this.columnid.AllowDBNull = false;
     this.columnid.ReadOnly = true;
     this.columnid.Unique = true;
     this.columnFIO.AllowDBNull = false;
     this.columnFIO.MaxLength = 200;
 }
Beispiel #12
0
 internal void InitVars()
 {
     this.column名称  = base.Columns["名称"];
     this.column退号数 = base.Columns["退号数"];
 }
 internal void InitVars() {
     this.columnSourceUniqueName = base.Columns["SourceUniqueName"];
     this.columnDestUniqueName = base.Columns["DestUniqueName"];
 }
Beispiel #14
0
 public static void SetField <T>(this System.Data.DataRow row, System.Data.DataColumn column, T value)
 {
 }
Beispiel #15
0
 internal void InitVars()
 {
     this.column登记员 = base.Columns["登记员"];
     this.column发卡量 = base.Columns["发卡量"];
 }
 internal void InitVars()
 {
     this.columnMaNgayCong = base.Columns["MaNgayCong"];
     this.columnSoNgay     = base.Columns["SoNgay"];
 }
 internal void InitVars()
 {
     this.columnId   = base.Columns["Id"];
     this.columnName = base.Columns["Name"];
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.dataTable1           = new System.Data.DataTable();
     this.date                 = new System.Data.DataColumn();
     this.PatientName          = new System.Data.DataColumn();
     this.DifficultyNo         = new System.Data.DataColumn();
     this.InvoiceNo            = new System.Data.DataColumn();
     this.RegisterCost         = new System.Data.DataColumn();
     this.CheckSelfPay         = new System.Data.DataColumn();
     this.CheckChargeUp        = new System.Data.DataColumn();
     this.CureSelfPay          = new System.Data.DataColumn();
     this.CureChargeUp         = new System.Data.DataColumn();
     this.MedicineSelfPay      = new System.Data.DataColumn();
     this.MedicineChargeUp     = new System.Data.DataColumn();
     this.SumChargeUp          = new System.Data.DataColumn();
     this.Operator             = new System.Data.DataColumn();
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.panel1               = new System.Windows.Forms.Panel();
     this.btExit               = new PinkieControls.ButtonXP();
     this.btOK                 = new PinkieControls.ButtonXP();
     this.dateTimePicker2      = new System.Windows.Forms.DateTimePicker();
     this.label2               = new System.Windows.Forms.Label();
     this.dateTimePicker1      = new System.Windows.Forms.DateTimePicker();
     this.label1               = new System.Windows.Forms.Label();
     this.dataSet1             = new System.Data.DataSet();
     this.panel2               = new System.Windows.Forms.Panel();
     this.printDocument1       = new System.Drawing.Printing.PrintDocument();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.date,
         this.PatientName,
         this.DifficultyNo,
         this.InvoiceNo,
         this.RegisterCost,
         this.CheckSelfPay,
         this.CheckChargeUp,
         this.CureSelfPay,
         this.CureChargeUp,
         this.MedicineSelfPay,
         this.MedicineChargeUp,
         this.SumChargeUp,
         this.Operator
     });
     this.dataTable1.TableName = "Table1";
     //
     // date
     //
     this.date.ColumnName = "date";
     //
     // PatientName
     //
     this.PatientName.ColumnName = "PatientName";
     //
     // DifficultyNo
     //
     this.DifficultyNo.ColumnName = "DifficultyNo";
     //
     // InvoiceNo
     //
     this.InvoiceNo.ColumnName = "InvoiceNo";
     //
     // RegisterCost
     //
     this.RegisterCost.ColumnName = "RegisterCost";
     this.RegisterCost.DataType   = typeof(System.Decimal);
     //
     // CheckSelfPay
     //
     this.CheckSelfPay.ColumnName = "CheckSelfPay";
     this.CheckSelfPay.DataType   = typeof(System.Decimal);
     //
     // CheckChargeUp
     //
     this.CheckChargeUp.ColumnName = "CheckChargeUp";
     this.CheckChargeUp.DataType   = typeof(System.Decimal);
     //
     // CureSelfPay
     //
     this.CureSelfPay.ColumnName = "CureSelfPay";
     this.CureSelfPay.DataType   = typeof(System.Decimal);
     //
     // CureChargeUp
     //
     this.CureChargeUp.ColumnName = "CureChargeUp";
     this.CureChargeUp.DataType   = typeof(System.Decimal);
     //
     // MedicineSelfPay
     //
     this.MedicineSelfPay.ColumnName = "MedicineSelfPay";
     this.MedicineSelfPay.DataType   = typeof(System.Decimal);
     //
     // MedicineChargeUp
     //
     this.MedicineChargeUp.ColumnName = "MedicineChargeUp";
     this.MedicineChargeUp.DataType   = typeof(System.Decimal);
     //
     // SumChargeUp
     //
     this.SumChargeUp.ColumnName = "SumChargeUp";
     this.SumChargeUp.DataType   = typeof(System.Decimal);
     //
     // Operator
     //
     this.Operator.ColumnName = "Operator";
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex  = -1;
     this.crystalReportViewer1.DisplayGroupTree = false;
     this.crystalReportViewer1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.crystalReportViewer1.Location         = new System.Drawing.Point(0, 0);
     this.crystalReportViewer1.Name             = "crystalReportViewer1";
     this.crystalReportViewer1.ReportSource     = null;
     this.crystalReportViewer1.Size             = new System.Drawing.Size(788, 446);
     this.crystalReportViewer1.TabIndex         = 3;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Controls.Add(this.btExit);
     this.panel1.Controls.Add(this.btOK);
     this.panel1.Controls.Add(this.dateTimePicker2);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.dateTimePicker1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(790, 60);
     this.panel1.TabIndex = 2;
     //
     // btExit
     //
     this.btExit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.btExit.DefaultScheme = true;
     this.btExit.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.btExit.Hint          = "";
     this.btExit.Location      = new System.Drawing.Point(524, 16);
     this.btExit.Name          = "btExit";
     this.btExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.btExit.Size          = new System.Drawing.Size(104, 32);
     this.btExit.TabIndex      = 5;
     this.btExit.Text          = "退出";
     this.btExit.Click        += new System.EventHandler(this.btExit_Click);
     //
     // btOK
     //
     this.btOK.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.btOK.DefaultScheme = true;
     this.btOK.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.btOK.Hint          = "";
     this.btOK.Location      = new System.Drawing.Point(372, 16);
     this.btOK.Name          = "btOK";
     this.btOK.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.btOK.Size          = new System.Drawing.Size(104, 32);
     this.btOK.TabIndex      = 4;
     this.btOK.Text          = "生成报表";
     this.btOK.Click        += new System.EventHandler(this.btOK_Click);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CustomFormat = "yyyy年MM月";
     this.dateTimePicker2.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location     = new System.Drawing.Point(204, 20);
     this.dateTimePicker2.Name         = "dateTimePicker2";
     this.dateTimePicker2.Size         = new System.Drawing.Size(108, 23);
     this.dateTimePicker2.TabIndex     = 3;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(176, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(20, 19);
     this.label2.TabIndex = 2;
     this.label2.Text     = "到";
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CustomFormat = "yyyy年MM月";
     this.dateTimePicker1.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location     = new System.Drawing.Point(60, 20);
     this.dateTimePicker1.Name         = "dateTimePicker1";
     this.dateTimePicker1.Size         = new System.Drawing.Size(108, 23);
     this.dateTimePicker1.TabIndex     = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(28, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(27, 19);
     this.label1.TabIndex = 0;
     this.label1.Text     = "从:";
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("zh-CN");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // panel2
     //
     this.panel2.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.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.crystalReportViewer1);
     this.panel2.Location = new System.Drawing.Point(0, 72);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(790, 448);
     this.panel2.TabIndex = 4;
     //
     // frmDifficultyReportOfMonth
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(792, 525);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Font  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Name  = "frmDifficultyReportOfMonth";
     this.Text  = "禅城区特困门诊基本医疗服务费用减免统计表";
     this.Load += new System.EventHandler(this.frmDifficultyReportOfMonth_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 internal void InitVars() {
     this.columnCustomerID = base.Columns["CustomerID"];
     this.columnCompanyName = base.Columns["CompanyName"];
     this.columnContactName = base.Columns["ContactName"];
     this.columnContactTitle = base.Columns["ContactTitle"];
     this.columnAddress = base.Columns["Address"];
     this.columnCity = base.Columns["City"];
     this.columnRegion = base.Columns["Region"];
     this.columnPostalCode = base.Columns["PostalCode"];
     this.columnCountry = base.Columns["Country"];
     this.columnPhone = base.Columns["Phone"];
     this.columnFax = base.Columns["Fax"];
 }
Beispiel #20
0
 internal void InitVars()
 {
     this.columnGID = base.Columns["GID"];
 }
 internal void InitVars() {
     this.columnOrderID = base.Columns["OrderID"];
     this.columnCustomerID = base.Columns["CustomerID"];
     this.columnEmployeeID = base.Columns["EmployeeID"];
     this.columnOrderDate = base.Columns["OrderDate"];
     this.columnRequiredDate = base.Columns["RequiredDate"];
     this.columnShippedDate = base.Columns["ShippedDate"];
     this.columnShipVia = base.Columns["ShipVia"];
     this.columnFreight = base.Columns["Freight"];
     this.columnShipName = base.Columns["ShipName"];
     this.columnShipAddress = base.Columns["ShipAddress"];
     this.columnShipCity = base.Columns["ShipCity"];
     this.columnShipRegion = base.Columns["ShipRegion"];
     this.columnShipPostalCode = base.Columns["ShipPostalCode"];
     this.columnShipCountry = base.Columns["ShipCountry"];
 }
Beispiel #22
0
        /// <summary>
        /// Checks whether the date is not undefined. DateTime.MinValue is seen as undefined by this Method.
        /// Null values are accepted.
        /// </summary>
        /// <param name="ADate">The date to check.</param>
        /// <param name="ADescription">The name of the date value.</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <param name="AAlternativeFirstDayOfPeriod"></param>
        /// <remarks>Usage in the Data Validation Framework: rather than using this Method, use Method
        /// 'TSharedValidationControlHelper.IsNotInvalidDate' for checking the validity of dates as the latter can deal not only with
        /// empty dates, but dates that are invalid in other respects (e.g. exceeding a valid date range)!!!</remarks>
        /// <returns>Null if validation succeeded, otherwise a <see cref="TVerificationResult" /> is
        /// returned that contains details about the problem.</returns>
        public static TVerificationResult IsNotCorporateDateTime(DateTime?ADate, String ADescription,
                                                                 object AResultContext = null, System.Data.DataColumn AResultColumn = null,
                                                                 System.Windows.Forms.Control AResultControl = null, int AAlternativeFirstDayOfPeriod = 1)
        {
            TVerificationResult ReturnValue;
            DateTime            TheDate = TSaveConvert.ObjectToDate(ADate);
            DateTime            FirstOfMonth;
            DateTime            FirstOfMonthAlternative;
            String Description = THelper.NiceValueDescription(ADescription);

            if (!ADate.HasValue)
            {
                return(null);
            }

            FirstOfMonth            = new DateTime(TheDate.Year, TheDate.Month, 1);
            FirstOfMonthAlternative = new DateTime(TheDate.Year, TheDate.Month, AAlternativeFirstDayOfPeriod);

            // Checks
            if ((TheDate == FirstOfMonth) || (TheDate == FirstOfMonthAlternative))
            {
                //MessageBox.Show('Date <> DateTime.MinValue');
                ReturnValue = null;
            }
            else
            {
                if (AAlternativeFirstDayOfPeriod == 1)
                {
                    ReturnValue = new TVerificationResult(AResultContext,
                                                          ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_INVALIDDATE,
                                                                                  CommonResourcestrings.StrInvalidDateEntered + Environment.NewLine +
                                                                                  StrDateMustNotBeLaterThanFirstDayOfMonth, new string[] { Description }));
                }
                else
                {
                    ReturnValue = new TVerificationResult(AResultContext,
                                                          ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_INVALIDDATE,
                                                                                  CommonResourcestrings.StrInvalidDateEntered + Environment.NewLine +
                                                                                  String.Format(Catalog.GetString("The first day of the period should be either 1 or {0}."), AAlternativeFirstDayOfPeriod)));
                }

                if (AResultColumn != null)
                {
                    ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                }
            }

            return(ReturnValue);
        }
 /// <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);
 }
Beispiel #24
0
        /// <summary>
        /// Checks whether the string <paramref name="AString" /> contains a valid DateTime.
        /// </summary>
        /// <param name="AString">The date to check.</param>
        /// <param name="ADescription">The name of the date value.</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <returns>Null if <paramref name="AString" /> contains a valid DateTime, otherwise a
        /// <see cref="TVerificationResult" /> with a message which uses
        /// <paramref name="ADescription" /> is returned.</returns>
        public static TVerificationResult IsValidDateTime(String AString, String ADescription,
                                                          object AResultContext = null, System.Data.DataColumn AResultColumn = null, System.Windows.Forms.Control AResultControl = null)
        {
            TVerificationResult ReturnValue = null;
            String Description = THelper.NiceValueDescription(ADescription);

            DateTime temp;

            if (!DateTime.TryParse(AString, out temp))
            {
                ReturnValue = GetInvalidDateVerificationResult(Description, AResultContext);

                if (AResultColumn != null)
                {
                    ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                }
            }

            return(ReturnValue);
        }
Beispiel #25
0
        public static void ReadCSV(this System.Data.DataTable dt, string path, string token)
        {
            var iterator = Regulus.Utility.CSV.Read(path, token).GetEnumerator();

            //System.Data.DataTable dt = new System.Data.DataTable();
            // 第一行
            //iterator.MoveNext();
            // 第二行
            iterator.MoveNext();
            Regulus.Utility.CSV.Row rowNames = iterator.Current;
            // 第三行
            iterator.MoveNext();
            Regulus.Utility.CSV.Row rowTypes = iterator.Current;

            if (rowTypes.Fields.Length != rowNames.Fields.Length)
            {
                throw new System.Exception(string.Format("名稱與型別數量不符: RowNameCount={0},RowTypeCount={1}", rowNames.Fields.Length, rowTypes.Fields.Length));
            }

            string[] defaultValues = new string[rowTypes.Fields.Length];
            for (int i = 0; i < rowNames.Fields.Length; ++i)
            {
                string name = rowNames.Fields[i];
                string strType = rowTypes.Fields[i];
                var result = (from ddt in DataTableType.Types where ddt.Name == strType select ddt).FirstOrDefault();
                defaultValues[i] = result.Default;
                if (result != null)
                {
                    System.Data.DataColumn dc = new System.Data.DataColumn(name, result.Type);

                    dt.Columns.Add(dc);
                }
                else
                {
                    throw new System.Exception("無效的型別:" + strType);
                }
            }

            int rowCount = rowNames.Fields.Length;
            while (iterator.MoveNext() == true)
            {
                var row = iterator.Current;
                string[] fields = row.Fields;

                if (fields.Length == rowCount)
                {
                    System.Data.DataRow dtRow = dt.NewRow();
                    int i = 0;
                    foreach (var name in rowNames.Fields)
                    {
                        var field = fields[i] == "" ? defaultValues[i] : fields[i] ;
                        dtRow[name] = field;
                        ++i;
                    }
                    dt.Rows.Add(dtRow);
                }
                else
                {
                    throw new System.Exception(string.Format("資料欄位與名稱數量不符: Index={0},RowCount={1},FieldCount={2}", row.Index, rowCount, fields.Length));
                }
            }
        }
Beispiel #26
0
        /// <summary>
        /// Checks whether the date is today or in the past. Null values are accepted.
        /// </summary>
        /// <param name="ADate">The date to check.</param>
        /// <param name="ADescription">The name of the date value.</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <returns>Null if the date <paramref name="ADate" /> is today or in the past,
        /// otherwise a verification result with a message that uses <paramref name="ADescription" />.
        /// </returns>
        public static TVerificationResult IsCurrentOrPastDate(DateTime?ADate, String ADescription,
                                                              object AResultContext = null, System.Data.DataColumn AResultColumn = null, System.Windows.Forms.Control AResultControl = null)
        {
            TVerificationResult ReturnValue;
            String Description = THelper.NiceValueDescription(ADescription);

            if (!ADate.HasValue)
            {
                return(null);
            }

            // Check
            if (ADate <= DateTime.Today)
            {
                //MessageBox.Show('Date <= Today');
                ReturnValue = null;
            }
            else
            {
                ReturnValue = new TVerificationResult(AResultContext,
                                                      ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_NOFUTUREDATE, CommonResourcestrings.StrInvalidDateEntered +
                                                                              Environment.NewLine + StrDateMustNotBeFutureDate, new string[] { Description }));

                if (AResultColumn != null)
                {
                    ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                }
            }

            return(ReturnValue);
        }
Beispiel #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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);
 }
Beispiel #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmIntelligentSearch));
     this.trvSearchType          = new System.Windows.Forms.TreeView();
     this.m_lblForTitle          = new System.Windows.Forms.Label();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.m_lblSearchDesc        = new System.Windows.Forms.Label();
     this.dataGrid1              = new System.Windows.Forms.DataGrid();
     this.m_dtbSearchContent     = 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.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dtsTemp             = new System.Data.DataSet();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.m_lsvQueryResult    = new System.Windows.Forms.ListView();
     this.label1              = new System.Windows.Forms.Label();
     this.m_cmdPerformQuery   = new System.Windows.Forms.Button();
     this.dataColumn5         = new System.Data.DataColumn();
     this.dataGridBoolColumn1 = new System.Windows.Forms.DataGridBoolColumn();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_dtbSearchContent)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtsTemp)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // trvSearchType
     //
     this.trvSearchType.BackColor          = System.Drawing.Color.FromArgb(((System.Byte)(51)), ((System.Byte)(102)), ((System.Byte)(153)));
     this.trvSearchType.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.trvSearchType.Font               = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.trvSearchType.ForeColor          = System.Drawing.SystemColors.Window;
     this.trvSearchType.HideSelection      = false;
     this.trvSearchType.ImageIndex         = -1;
     this.trvSearchType.ItemHeight         = 18;
     this.trvSearchType.Location           = new System.Drawing.Point(40, 68);
     this.trvSearchType.Name               = "trvSearchType";
     this.trvSearchType.SelectedImageIndex = -1;
     this.trvSearchType.ShowRootLines      = false;
     this.trvSearchType.Size               = new System.Drawing.Size(260, 240);
     this.trvSearchType.TabIndex           = 502;
     this.trvSearchType.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.trvSearchType_AfterSelect);
     this.trvSearchType.BeforeExpand      += new System.Windows.Forms.TreeViewCancelEventHandler(this.trvSearchType_BeforeExpand);
     //
     // m_lblForTitle
     //
     this.m_lblForTitle.Font      = new System.Drawing.Font("SimSun", 26.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_lblForTitle.Location  = new System.Drawing.Point(324, 8);
     this.m_lblForTitle.Name      = "m_lblForTitle";
     this.m_lblForTitle.Size      = new System.Drawing.Size(416, 48);
     this.m_lblForTitle.TabIndex  = 503;
     this.m_lblForTitle.Text      = "智 能 查 询";
     this.m_lblForTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.m_lblSearchDesc,
         this.dataGrid1
     });
     this.groupBox1.Location = new System.Drawing.Point(316, 56);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(660, 252);
     this.groupBox1.TabIndex = 504;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "查询内容";
     //
     // m_lblSearchDesc
     //
     this.m_lblSearchDesc.Location = new System.Drawing.Point(16, 28);
     this.m_lblSearchDesc.Name     = "m_lblSearchDesc";
     this.m_lblSearchDesc.Size     = new System.Drawing.Size(632, 40);
     this.m_lblSearchDesc.TabIndex = 2;
     this.m_lblSearchDesc.Text     = "查询说明:";
     //
     // dataGrid1
     //
     this.dataGrid1.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.dataGrid1.CaptionVisible  = false;
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.DataSource      = this.m_dtbSearchContent;
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(16, 76);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(632, 160);
     this.dataGrid1.TabIndex        = 1;
     this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     //
     // m_dtbSearchContent
     //
     this.m_dtbSearchContent.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn1,
         this.dataColumn2,
         this.dataColumn3,
         this.dataColumn4,
         this.dataColumn5
     });
     this.m_dtbSearchContent.TableName = "SearchContent";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption    = "名称";
     this.dataColumn1.ColumnName = "ConditionName";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption    = "条件值";
     this.dataColumn2.ColumnName = "ConditionValue";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption    = "说明";
     this.dataColumn3.ColumnName = "ConditionExplain";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "XmlNode";
     this.dataColumn4.DataType   = typeof(object);
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.DataGrid = this.dataGrid1;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.dataGridTextBoxColumn1,
         this.dataGridTextBoxColumn2,
         this.dataGridBoolColumn1,
         this.dataGridTextBoxColumn3
     });
     this.dataGridTableStyle1.HeaderForeColor   = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName       = "SearchContent";
     this.dataGridTableStyle1.RowHeadersVisible = false;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format      = "";
     this.dataGridTextBoxColumn1.FormatInfo  = null;
     this.dataGridTextBoxColumn1.HeaderText  = "名称";
     this.dataGridTextBoxColumn1.MappingName = "ConditionName";
     this.dataGridTextBoxColumn1.NullText    = "";
     this.dataGridTextBoxColumn1.ReadOnly    = true;
     this.dataGridTextBoxColumn1.Width       = 120;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format      = "";
     this.dataGridTextBoxColumn2.FormatInfo  = null;
     this.dataGridTextBoxColumn2.HeaderText  = "条件值";
     this.dataGridTextBoxColumn2.MappingName = "ConditionValue";
     this.dataGridTextBoxColumn2.NullText    = "";
     this.dataGridTextBoxColumn2.Width       = 120;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format      = "";
     this.dataGridTextBoxColumn3.FormatInfo  = null;
     this.dataGridTextBoxColumn3.HeaderText  = "说明";
     this.dataGridTextBoxColumn3.MappingName = "ConditionExplain";
     this.dataGridTextBoxColumn3.NullText    = "";
     this.dataGridTextBoxColumn3.ReadOnly    = true;
     this.dataGridTextBoxColumn3.Width       = 300;
     //
     // dtsTemp
     //
     this.dtsTemp.DataSetName = "TempDTS";
     this.dtsTemp.Locale      = new System.Globalization.CultureInfo("zh-CN");
     this.dtsTemp.Tables.AddRange(new System.Data.DataTable[] {
         this.m_dtbSearchContent
     });
     //
     // groupBox2
     //
     this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.m_lsvQueryResult,
         this.label1,
         this.m_cmdPerformQuery
     });
     this.groupBox2.Location = new System.Drawing.Point(40, 324);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(936, 304);
     this.groupBox2.TabIndex = 505;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "查询结果";
     //
     // m_lsvQueryResult
     //
     this.m_lsvQueryResult.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(51)), ((System.Byte)(102)), ((System.Byte)(153)));
     this.m_lsvQueryResult.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.m_lsvQueryResult.Font          = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_lsvQueryResult.ForeColor     = System.Drawing.Color.White;
     this.m_lsvQueryResult.FullRowSelect = true;
     this.m_lsvQueryResult.GridLines     = true;
     this.m_lsvQueryResult.Location      = new System.Drawing.Point(16, 76);
     this.m_lsvQueryResult.MultiSelect   = false;
     this.m_lsvQueryResult.Name          = "m_lsvQueryResult";
     this.m_lsvQueryResult.Size          = new System.Drawing.Size(904, 208);
     this.m_lsvQueryResult.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     this.m_lsvQueryResult.TabIndex      = 171;
     this.m_lsvQueryResult.View          = System.Windows.Forms.View.Details;
     this.m_lsvQueryResult.DoubleClick  += new System.EventHandler(this.m_lsvQueryResult_DoubleClick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(88, 40);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(312, 23);
     this.label1.TabIndex = 142;
     this.label1.Text     = "提示:双击结果来查看具体内容";
     //
     // m_cmdPerformQuery
     //
     this.m_cmdPerformQuery.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_cmdPerformQuery.Location  = new System.Drawing.Point(16, 32);
     this.m_cmdPerformQuery.Name      = "m_cmdPerformQuery";
     this.m_cmdPerformQuery.Size      = new System.Drawing.Size(64, 32);
     this.m_cmdPerformQuery.TabIndex  = 141;
     this.m_cmdPerformQuery.Text      = "查询";
     this.m_cmdPerformQuery.Click    += new System.EventHandler(this.m_cmdPerformQuery_Click);
     //
     // dataColumn5
     //
     this.dataColumn5.AllowDBNull  = false;
     this.dataColumn5.ColumnName   = "IsUse";
     this.dataColumn5.DataType     = typeof(bool);
     this.dataColumn5.DefaultValue = false;
     //
     // dataGridBoolColumn1
     //
     this.dataGridBoolColumn1.AllowNull   = false;
     this.dataGridBoolColumn1.FalseValue  = false;
     this.dataGridBoolColumn1.HeaderText  = "使用";
     this.dataGridBoolColumn1.MappingName = "IsUse";
     this.dataGridBoolColumn1.NullText    = "";
     this.dataGridBoolColumn1.NullValue   = ((System.DBNull)(resources.GetObject("dataGridBoolColumn1.NullValue")));
     this.dataGridBoolColumn1.TrueValue   = true;
     this.dataGridBoolColumn1.Width       = 60;
     //
     // frmIntelligentSearch
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 19);
     this.ClientSize        = new System.Drawing.Size(1016, 733);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.groupBox1,
         this.groupBox2,
         this.m_lblForTitle,
         this.trvSearchType
     });
     this.Name  = "frmIntelligentSearch";
     this.Text  = "智能查询";
     this.Load += new System.EventHandler(this.frmIntelligentSearch_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_dtbSearchContent)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtsTemp)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #29
0
 private void InitClass() {
     this.columnKOD_T = new System.Data.DataColumn("KOD_T", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnKOD_T);
     this.columnNAME_T = new System.Data.DataColumn("NAME_T", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnNAME_T);
     this.columnDOZA = new System.Data.DataColumn("DOZA", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnDOZA);
     this.columnFORMA_VIP = new System.Data.DataColumn("FORMA_VIP", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnFORMA_VIP);
     this.columnOBJEM = new System.Data.DataColumn("OBJEM", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnOBJEM);
     this.columnED_IZM = new System.Data.DataColumn("ED_IZM", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnED_IZM);
     this.columnVES = new System.Data.DataColumn("VES", typeof(decimal), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnVES);
     this.columnCENA_IZG = new System.Data.DataColumn("CENA_IZG", typeof(decimal), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCENA_IZG);
     this.columnPROC_REG = new System.Data.DataColumn("PROC_REG", typeof(short), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnPROC_REG);
     this.columnID_IZG = new System.Data.DataColumn("ID_IZG", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnID_IZG);
     this.columnID_KL1 = new System.Data.DataColumn("ID_KL1", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnID_KL1);
     this.columnID_KL2 = new System.Data.DataColumn("ID_KL2", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnID_KL2);
     this.columnID_KL3 = new System.Data.DataColumn("ID_KL3", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnID_KL3);
     this.columnPR_NDS = new System.Data.DataColumn("PR_NDS", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnPR_NDS);
     this.columnKOL_UP = new System.Data.DataColumn("KOL_UP", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnKOL_UP);
     this.columnDATA_REG = new System.Data.DataColumn("DATA_REG", typeof(System.DateTime), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnDATA_REG);
     this.columnN_REG = new System.Data.DataColumn("N_REG", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnN_REG);
     this.columnAUTOR = new System.Data.DataColumn("AUTOR", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnAUTOR);
     this.columnCR_DATE = new System.Data.DataColumn("CR_DATE", typeof(System.DateTime), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCR_DATE);
     this.columnSNAME_T = new System.Data.DataColumn("SNAME_T", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnSNAME_T);
     this.columnOLD_NAMET = new System.Data.DataColumn("OLD_NAMET", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnOLD_NAMET);
     this.columnNAMET1 = new System.Data.DataColumn("NAMET1", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnNAMET1);
     this.columnIS_RECEPT = new System.Data.DataColumn("IS_RECEPT", typeof(short), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnIS_RECEPT);
     this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                     this.columnKOD_T}, true));
     this.columnKOD_T.AllowDBNull = false;
     this.columnKOD_T.Unique = true;
     this.columnNAME_T.MaxLength = 255;
     this.columnDOZA.MaxLength = 10;
     this.columnFORMA_VIP.MaxLength = 10;
     this.columnOBJEM.MaxLength = 10;
     this.columnED_IZM.MaxLength = 5;
     this.columnPR_NDS.MaxLength = 1;
     this.columnN_REG.MaxLength = 20;
     this.columnAUTOR.MaxLength = 10;
     this.columnSNAME_T.MaxLength = 12;
     this.columnOLD_NAMET.MaxLength = 35;
     this.columnNAMET1.MaxLength = 255;
 }
 private void InitClass() {
     this.columntaniKodu = new System.Data.DataColumn("taniKodu", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columntaniKodu);
     this.columntaniKodu.MaxLength = 10;
 }
 public static T Field <T>(this System.Data.DataRow row, System.Data.DataColumn column)
 {
     throw null;
 }
 private void InitClass() {
     this.columnyatisTarihi = new System.Data.DataColumn("yatisTarihi", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnyatisTarihi);
     this.columncikisTarihi = new System.Data.DataColumn("cikisTarihi", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columncikisTarihi);
 }
Beispiel #33
0
        /// <summary>
        /// Checks whether the date is within a specified date range. Null values are accepted.
        /// </summary>
        /// <remarks>This Method is capable of returning varying<see cref="TVerificationResult" /> objects! The objects
        /// returned are determined by the values specified for <paramref name="ALowerRangeCheckType" /> and
        ///  <paramref name="AUpperRangeCheckType" />!</remarks>
        /// <param name="ADate">Date to check.</param>
        /// <param name="ALowerDateRangeEnd">Lower end of the valid Date Range.</param>
        /// <param name="AUpperDateRangeEnd">Upper end of the valid Date Range.</param>
        /// <param name="ADescription">Name of the date value.</param>
        /// <param name="ALowerRangeCheckType">Type of Date Check: lower end of the valid Date Range (defaults to <see cref="TDateBetweenDatesCheckType.dbdctUnspecific" />).</param>
        /// <param name="AUpperRangeCheckType">Type of Date Check: upper end of the valid Date Range (defaults to <see cref="TDateBetweenDatesCheckType.dbdctUnspecific" />).</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <returns>Null if the date <paramref name="ADate" /> is between the lower and the upper end of the Date Range specified
        /// (lower and upper end dates are included), otherwise a verification result with a message that uses
        /// <paramref name="ADescription" />.
        /// </returns>
        public static TVerificationResult IsDateBetweenDates(DateTime?ADate, DateTime?ALowerDateRangeEnd, DateTime?AUpperDateRangeEnd,
                                                             String ADescription,
                                                             TDateBetweenDatesCheckType ALowerRangeCheckType = TDateBetweenDatesCheckType.dbdctUnspecific,
                                                             TDateBetweenDatesCheckType AUpperRangeCheckType = TDateBetweenDatesCheckType.dbdctUnspecific,
                                                             object AResultContext = null, System.Data.DataColumn AResultColumn = null, System.Windows.Forms.Control AResultControl = null)
        {
            TVerificationResult ReturnValue           = null;
            DateTime            TheDate               = TSaveConvert.ObjectToDate(ADate);
            DateTime            LowerDateRangeEndDate = TSaveConvert.ObjectToDate(ALowerDateRangeEnd);
            DateTime            UpperDateRangeEndDate = TSaveConvert.ObjectToDate(AUpperDateRangeEnd);
            String Description = THelper.NiceValueDescription(ADescription);

            if ((!ADate.HasValue) ||
                (!ALowerDateRangeEnd.HasValue) ||
                (!AUpperDateRangeEnd.HasValue))
            {
                return(null);
            }

            // Check
            if ((TheDate < LowerDateRangeEndDate) ||
                (TheDate > UpperDateRangeEndDate))
            {
                if ((ALowerRangeCheckType == TDateBetweenDatesCheckType.dbdctUnspecific) &&
                    (AUpperRangeCheckType == TDateBetweenDatesCheckType.dbdctUnspecific))
                {
                    ReturnValue = GetUnspecificDateRangeCheckVerificationResult(LowerDateRangeEndDate,
                                                                                UpperDateRangeEndDate,
                                                                                Description,
                                                                                AResultContext);
                }
                else if (TheDate < LowerDateRangeEndDate)
                {
                    if (ALowerRangeCheckType == TDateBetweenDatesCheckType.dbdctNoPastDate)
                    {
                        ReturnValue = new TVerificationResult(AResultContext,
                                                              ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_NOPASTDATE, CommonResourcestrings.StrInvalidDateEntered +
                                                                                      Environment.NewLine +
                                                                                      StrDateMustNotBePastDate, new string[] { Description }));
                    }
                    else if (ALowerRangeCheckType == TDateBetweenDatesCheckType.dbdctUnrealisticDate)
                    {
                        ReturnValue = new TVerificationResult(AResultContext,
                                                              ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_UNREALISTICDATE_ERROR, CommonResourcestrings.StrInvalidDateEntered +
                                                                                      Environment.NewLine +
                                                                                      StrDateNotSensible, new string[] { Description }));
                    }
                    else
                    {
                        ReturnValue = GetUnspecificDateRangeCheckVerificationResult(LowerDateRangeEndDate,
                                                                                    UpperDateRangeEndDate,
                                                                                    Description,
                                                                                    AResultContext);
                    }
                }
                else if (TheDate > UpperDateRangeEndDate)
                {
                    if (AUpperRangeCheckType == TDateBetweenDatesCheckType.dbdctNoFutureDate)
                    {
                        ReturnValue = new TVerificationResult(AResultContext,
                                                              ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_NOFUTUREDATE, CommonResourcestrings.StrInvalidDateEntered +
                                                                                      Environment.NewLine +
                                                                                      StrDateMustNotBeFutureDate, new string[] { Description }));
                    }
                    else if (AUpperRangeCheckType == TDateBetweenDatesCheckType.dbdctUnrealisticDate)
                    {
                        ReturnValue = new TVerificationResult(AResultContext,
                                                              ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_UNREALISTICDATE_ERROR, CommonResourcestrings.StrInvalidDateEntered +
                                                                                      Environment.NewLine +
                                                                                      StrDateNotSensible, new string[] { Description }));
                    }
                    else
                    {
                        ReturnValue = GetUnspecificDateRangeCheckVerificationResult(LowerDateRangeEndDate,
                                                                                    UpperDateRangeEndDate,
                                                                                    Description,
                                                                                    AResultContext);
                    }
                }

                if (AResultColumn != null)
                {
                    ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                }
            }
            else
            {
                ReturnValue = null;
            }

            return(ReturnValue);
        }
Beispiel #34
0
 internal void InitVars()
 {
     this.columnDemoID    = base.Columns["DemoID"];
     this.columnDemoValue = base.Columns["DemoValue"];
 }
 internal void InitVars() {
     this.columntaniKodu = base.Columns["taniKodu"];
 }
Beispiel #36
0
        /// <summary>
        /// Checks whether the first submitted date is later than the second submitted
        /// date. Null dates are accepted.
        /// </summary>
        /// <param name="ADate1">First date.</param>
        /// <param name="ADate2">Second date.</param>
        /// <param name="AFirstDateDescription">Description what the first date is about (for the
        /// error message).</param>
        /// <param name="ASecondDateDescription">Description what the second date is about (for
        /// the error message).</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <returns>Null if validation succeeded, otherwise a <see cref="TVerificationResult" /> is
        /// returned that contains details about the problem, with a message that uses
        /// <paramref name="AFirstDateDescription" /> and <paramref name="ASecondDateDescription" />.</returns>
        public static TVerificationResult FirstGreaterThanSecondDate(DateTime?ADate1,
                                                                     DateTime?ADate2, string AFirstDateDescription, string ASecondDateDescription,
                                                                     object AResultContext = null, System.Data.DataColumn AResultColumn = null, System.Windows.Forms.Control AResultControl = null)
        {
            TVerificationResult ReturnValue;
            String FirstDateDescription  = THelper.NiceValueDescription(AFirstDateDescription);
            String SecondDateDescription = THelper.NiceValueDescription(ASecondDateDescription);

            if ((!ADate1.HasValue) || (!ADate2.HasValue))
            {
                return(null);
            }

            // Check
            if (ADate1 > ADate2)
            {
                //MessageBox.Show('ADate1 <= ADate2');
                ReturnValue = null;
            }
            else
            {
                if (ADate1 != new DateTime(0001, 1, 1))
                {
                    ReturnValue = new TVerificationResult(AResultContext,
                                                          ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_INVALIDDATE, CommonResourcestrings.StrInvalidDateEntered + Environment.NewLine +
                                                                                  StrDateCannotBeEarlierOrEqual, new string[] { FirstDateDescription, SecondDateDescription }));

                    if (AResultColumn != null)
                    {
                        ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                    }
                }
                else
                {
                    ReturnValue = null;
                }
            }

            return(ReturnValue);
        }
 internal void InitVars() {
     this.columnyatisTarihi = base.Columns["yatisTarihi"];
     this.columncikisTarihi = base.Columns["cikisTarihi"];
 }
Beispiel #38
0
        /// <summary>
        /// Checks whether an integer time is in the range 0..86399
        /// </summary>
        /// <param name="AValue">Integer number.</param>
        /// <param name="ADescription">Description what the integer number is about (for the error
        /// message).</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <returns>Null if <paramref name="AValue" /> contains a valid integer number or is null,
        /// otherwise a <see cref="TVerificationResult" /> is returned that contains details about the problem,
        /// with a message that uses <paramref name="ADescription" />.</returns>
        public static TVerificationResult IsValidIntegerTime(Int64?AValue, String ADescription,
                                                             object AResultContext = null, System.Data.DataColumn AResultColumn = null, System.Windows.Forms.Control AResultControl = null)
        {
            TVerificationResult ReturnValue = null;
            String Description = THelper.NiceValueDescription(ADescription);

            if (!AValue.HasValue)
            {
                return(null);
            }

            // Check
            if ((AValue.Value < 0) || (AValue.Value >= 86400))
            {
                ReturnValue = new TVerificationResult(AResultContext,
                                                      ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_INVALIDINTEGERTIME, CommonResourcestrings.StrInvalidStringEntered +
                                                                              Environment.NewLine +
                                                                              StrMustBeTime, new string[] { Description }));

                if (AResultColumn != null)
                {
                    ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                }
            }

            return(ReturnValue);
        }
Beispiel #39
0
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "application/json";

            List<NFMT.Charts.ChartModel> list = new List<NFMT.Charts.ChartModel>();
            NFMT.Charts.ChartModel model = new NFMT.Charts.ChartModel();
            //X横向轴说明数据
            model.XAxis.Categories.Add("一月");
            model.XAxis.Categories.Add("二月");
            model.XAxis.Categories.Add("三月");
            model.XAxis.Categories.Add("四月");
            model.XAxis.Categories.Add("五月");
            model.XAxis.Categories.Add("六月");
            model.XAxis.Categories.Add("七月");
            model.XAxis.Categories.Add("八月");
            model.XAxis.Categories.Add("九月");
            model.XAxis.Categories.Add("十月");
            model.XAxis.Categories.Add("十一月");
            model.XAxis.Categories.Add("十二月");

            //主标题
            model.Title ="2013年迈科入库表";
            //model.Title.X.Add("-20");

            model.SubTitle = "副标题";

            //Y轴数据
            model.YAxis.Title ="重量(吨)";
            model.Tooltip = "吨";
            //model.YAxis.PlotLines.Value.Add("0");
            //model.YAxis.PlotLines.Width.Add("1");
            //model.YAxis.PlotLines.Color.Add("#808080");

            //提示框数据单位
            //model.Tooltip.ValueSuffix.Add("吨");

            //图形选项配置数据
            //model.Legend.Layout.Add("vertical");
            //model.Legend.Align.Add("right");
            //model.Legend.VerticalAlign.Add("middle");
            //model.Legend.BorderWidth.Add("0");

            //线性数据
            //model.Series["铜"]["12000, 12300, 26000, 15822, 15201, 18005, 25001, 25410, 12546, 21542, 15800, 16500"];

            //model.Series.Add("铜");
            //model.Series.Add("铝");
            //model.Series.Add("锌");
            //model.Series.Add("其他");
            //model.Series.Add("12000, 12300, 26000, 15822, 15201, 18005, 25001, 25410, 12546, 21542, 15800, 16500");
            //model.Series.Add("2000, 1300, 2000, 5822, 5201, 8005, 5001, 5410, 2546, 1542, 5800, 6500");
            //model.Series.Add("1500, 2300, 6000, 1822, 1201, 1005, 2001, 1410, 1546, 5542, 5800, 2500");
            //model.Series.Add("5841, 2800, 1200, 1422, 800, 2000, 1200, 1810, 1500, 5181, 2800, 5500");

            //NFMT.Data.DAL.BDStyleDAL dal = new NFMT.Data.DAL.BDStyleDAL();

            //for (int i = 15; i < 17; i++)
            //{
            //    NFMT.Common.IModel bDStyle = dal.Get(NFMT.Common.DefaultValue.SysUser, i).ReturnValue as NFMT.Common.IModel;
            //    model.Series.Add(i.ToString(), bDStyle);
            //}
            //model.Series.Add("Name:铝", "Data:12000, 12300, 26000, 15822, 15201, 18005, 25001, 25410, 12546, 21542, 15800, 16500");
            //model.Series.Add("Name:锌", "Data:12000, 12300, 26000, 15822, 15201, 18005, 25001, 25410, 12546, 21542, 15800, 16500");
            //model.Series.Add("Name:其他", "Data:12000, 12300, 26000, 15822, 15201, 18005, 25001, 25410, 12546, 21542, 15800, 16500");

            System.Data.DataTable dt = new System.Data.DataTable();
            System.Data.DataColumn column = new System.Data.DataColumn("asset");
            dt.Columns.Add(column);

            column = new System.Data.DataColumn("一月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("二月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("三月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("四月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("五月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("六月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("七月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("八月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("九月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("十月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("十一月");
            dt.Columns.Add(column);
            column = new System.Data.DataColumn("十二月");
            dt.Columns.Add(column);

            System.Random random = new Random();
            System.Data.DataRow row = null;

            row = dt.NewRow();
            row[0] = "铜";
            for (int i = 1; i < 13; i++)
            {
                row[i] = random.Next(10000, 30000);
            }
            dt.Rows.Add(row);

            row = dt.NewRow();
            row[0] = "锌";
            for (int i = 1; i < 13; i++)
            {
                row[i] = random.Next(2000, 20000);
            }
            dt.Rows.Add(row);

            dt.TableName = "Series";
            model.SourceTable = dt;

            string postData = NFMT.Charts.ChartJson.CreateJosn(model);
            context.Response.Write(postData);
        }
Beispiel #40
0
        /// <summary>
        /// Checks whether the date is not undefined. DateTime.MinValue is seen as undefined by this Method.
        /// Null values are accepted. They are treated as valid, unless <paramref name="ATreatNullAsInvalid" /> is
        /// set to true.
        /// </summary>
        /// <param name="ADate">The date to check.</param>
        /// <param name="ADescription">The name of the date value.</param>
        /// <param name="ATreatNullAsInvalid">Set this to true to treated null value in <paramref name="ADate" /> as invalid.</param>
        /// <param name="AResultContext">Context of verification (can be null).</param>
        /// <param name="AResultColumn">Which <see cref="System.Data.DataColumn" /> failed (can be null).</param>
        /// <param name="AResultControl">Which <see cref="System.Windows.Forms.Control" /> is involved (can be null).</param>
        /// <remarks>Usage in the Data Validation Framework: rather than using this Method, use Method
        /// 'TSharedValidationControlHelper.IsNotInvalidDate' for checking the validity of dates as the latter can deal not only with
        /// empty dates, but dates that are invalid in other respects (e.g. exceeding a valid date range)!!!</remarks>
        /// <returns>Null if validation succeeded, otherwise a <see cref="TVerificationResult" /> is
        /// returned that contains details about the problem.</returns>
        public static TVerificationResult IsNotUndefinedDateTime(DateTime?ADate, String ADescription,
                                                                 bool ATreatNullAsInvalid = false, object AResultContext = null, System.Data.DataColumn AResultColumn = null,
                                                                 System.Windows.Forms.Control AResultControl = null)
        {
            TVerificationResult ReturnValue;
            DateTime            TheDate = TSaveConvert.ObjectToDate(ADate);
            String Description          = THelper.NiceValueDescription(ADescription);

            if (!ADate.HasValue)
            {
                if (!ATreatNullAsInvalid)
                {
                    return(null);
                }
                else
                {
                    ReturnValue = new TVerificationResult(AResultContext,
                                                          ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_NOUNDEFINEDDATE,
                                                                                  CommonResourcestrings.StrInvalidDateEntered + Environment.NewLine +
                                                                                  StrDateMustNotBeEmpty, new string[] { Description }));

                    if (AResultColumn != null)
                    {
                        ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                    }
                }
            }

            // Check
            if (TheDate != DateTime.MinValue)
            {
                //MessageBox.Show('Date <> DateTime.MinValue');
                ReturnValue = null;
            }
            else
            {
                ReturnValue = new TVerificationResult(AResultContext,
                                                      ErrorCodes.GetErrorInfo(CommonErrorCodes.ERR_NOUNDEFINEDDATE,
                                                                              CommonResourcestrings.StrInvalidDateEntered + Environment.NewLine +
                                                                              StrDateMustNotBeEmpty, new string[] { Description }));

                if (AResultColumn != null)
                {
                    ReturnValue = new TScreenVerificationResult(ReturnValue, AResultColumn, AResultControl);
                }
            }

            return(ReturnValue);
        }
 private void InitClass() {
     this.columnCustomerID = new System.Data.DataColumn("CustomerID", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCustomerID);
     this.columnCompanyName = new System.Data.DataColumn("CompanyName", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCompanyName);
     this.columnContactName = new System.Data.DataColumn("ContactName", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnContactName);
     this.columnContactTitle = new System.Data.DataColumn("ContactTitle", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnContactTitle);
     this.columnAddress = new System.Data.DataColumn("Address", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnAddress);
     this.columnCity = new System.Data.DataColumn("City", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCity);
     this.columnRegion = new System.Data.DataColumn("Region", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnRegion);
     this.columnPostalCode = new System.Data.DataColumn("PostalCode", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnPostalCode);
     this.columnCountry = new System.Data.DataColumn("Country", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCountry);
     this.columnPhone = new System.Data.DataColumn("Phone", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnPhone);
     this.columnFax = new System.Data.DataColumn("Fax", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnFax);
     this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                     this.columnCustomerID}, false));
     this.columnCustomerID.AllowDBNull = false;
     this.columnCustomerID.Unique = true;
     this.columnCustomerID.MaxLength = 5;
     this.columnCompanyName.AllowDBNull = false;
     this.columnCompanyName.MaxLength = 40;
     this.columnContactName.MaxLength = 30;
     this.columnContactTitle.MaxLength = 30;
     this.columnAddress.MaxLength = 60;
     this.columnCity.MaxLength = 15;
     this.columnRegion.MaxLength = 15;
     this.columnPostalCode.MaxLength = 10;
     this.columnCountry.MaxLength = 15;
     this.columnPhone.MaxLength = 24;
     this.columnFax.MaxLength = 24;
 }
Beispiel #42
0
 internal void InitVars()
 {
     this.columnSite_Id                 = base.Columns["Site_Id"];
     this.columnAccount_Nbr             = base.Columns["Account_Nbr"];
     this.columnCust_Value_Segmentation = base.Columns["Cust_Value_Segmentation"];
 }
 private void InitClass() {
     this.columnOrderID = new System.Data.DataColumn("OrderID", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnOrderID);
     this.columnCustomerID = new System.Data.DataColumn("CustomerID", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnCustomerID);
     this.columnEmployeeID = new System.Data.DataColumn("EmployeeID", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnEmployeeID);
     this.columnOrderDate = new System.Data.DataColumn("OrderDate", typeof(System.DateTime), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnOrderDate);
     this.columnRequiredDate = new System.Data.DataColumn("RequiredDate", typeof(System.DateTime), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnRequiredDate);
     this.columnShippedDate = new System.Data.DataColumn("ShippedDate", typeof(System.DateTime), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShippedDate);
     this.columnShipVia = new System.Data.DataColumn("ShipVia", typeof(int), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipVia);
     this.columnFreight = new System.Data.DataColumn("Freight", typeof(decimal), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnFreight);
     this.columnShipName = new System.Data.DataColumn("ShipName", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipName);
     this.columnShipAddress = new System.Data.DataColumn("ShipAddress", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipAddress);
     this.columnShipCity = new System.Data.DataColumn("ShipCity", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipCity);
     this.columnShipRegion = new System.Data.DataColumn("ShipRegion", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipRegion);
     this.columnShipPostalCode = new System.Data.DataColumn("ShipPostalCode", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipPostalCode);
     this.columnShipCountry = new System.Data.DataColumn("ShipCountry", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnShipCountry);
     this.columnOrderID.AutoIncrement = true;
     this.columnOrderID.AllowDBNull = false;
     this.columnOrderID.ReadOnly = true;
     this.columnCustomerID.MaxLength = 5;
     this.columnShipName.MaxLength = 40;
     this.columnShipAddress.MaxLength = 60;
     this.columnShipCity.MaxLength = 15;
     this.columnShipRegion.MaxLength = 15;
     this.columnShipPostalCode.MaxLength = 10;
     this.columnShipCountry.MaxLength = 15;
 }
Beispiel #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.xrControlStyle1   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell19     = new DevExpress.XtraReports.UI.XRTableCell();
     this.dtDetail          = 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.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.xrTableCell16     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.dataSet1          = new System.Data.DataSet();
     this.dtHead            = new System.Data.DataTable();
     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.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13     = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.PageFooter        = new DevExpress.XtraReports.UI.PageFooterBand();
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtHead)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.BackColor       = System.Drawing.Color.Transparent;
     this.xrControlStyle1.BorderColor     = System.Drawing.Color.Black;
     this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrControlStyle1.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.xrControlStyle1.BorderWidth     = 1;
     this.xrControlStyle1.Font            = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrControlStyle1.ForeColor       = System.Drawing.Color.Black;
     this.xrControlStyle1.Name            = "xrControlStyle1";
     //
     // Detail
     //
     this.Detail.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                   | DevExpress.XtraPrinting.BorderSide.Right)
                                                                  | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(8F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF         = new System.Drawing.SizeF(1109F, 25F);
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell19,
         this.xrTableCell16,
         this.xrTableCell1,
         this.xrTableCell9,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell2,
         this.xrTableCell22,
         this.xrTableCell20,
         this.xrTableCell3,
         this.xrTableCell4
     });
     this.xrTableRow1.Name          = "xrTableRow1";
     this.xrTableRow1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableRow1.Weight        = 1;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column9")
     });
     this.xrTableCell19.Name          = "xrTableCell19";
     this.xrTableCell19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell19.Text          = "xrTableCell19";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell19.Weight        = 0.067628494138863834;
     //
     // dtDetail
     //
     this.dtDetail.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.dataColumn16,
         this.dataColumn17,
         this.dataColumn18,
         this.dataColumn19,
         this.dataColumn20,
         this.dataColumn21
     });
     this.dtDetail.TableName = "dtDetail";
     //
     // dataColumn1
     //
     this.dataColumn1.Caption    = "订单号";
     this.dataColumn1.ColumnName = "Column1";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption    = "入库单号";
     this.dataColumn2.ColumnName = "Column2";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption    = "入库日期";
     this.dataColumn3.ColumnName = "Column3";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption    = "存货编码";
     this.dataColumn4.ColumnName = "Column4";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption    = "存货名称";
     this.dataColumn5.ColumnName = "Column5";
     //
     // dataColumn6
     //
     this.dataColumn6.Caption    = "规格型号";
     this.dataColumn6.ColumnName = "Column6";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption    = "数量";
     this.dataColumn7.ColumnName = "Column7";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption    = "含税单价";
     this.dataColumn8.ColumnName = "Column8";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption    = "价税合计";
     this.dataColumn9.ColumnName = "Column9";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "Column10";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "Column11";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "Column12";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "Column13";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "Column14";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "Column15";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "Column16";
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column10")
     });
     this.xrTableCell16.Name          = "xrTableCell16";
     this.xrTableCell16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell16.Text          = "xrTableCell16";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell16.Weight        = 0.090171325518485126;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Angle = 1F;
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column1")
     });
     this.xrTableCell1.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell1.Name          = "xrTableCell1";
     this.xrTableCell1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell1.Text          = "xrTableCell1";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell1.Weight        = 0.0829576194770063;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Angle = 1F;
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column2")
     });
     this.xrTableCell9.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell9.Name          = "xrTableCell9";
     this.xrTableCell9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell9.Weight        = 0.18034265103697025;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Angle = 1F;
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column3")
     });
     this.xrTableCell7.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell7.Name          = "xrTableCell7";
     this.xrTableCell7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell7.Text          = "xrTableCell7";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell7.Weight        = 0.12623985572587917;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Angle = 1F;
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column4")
     });
     this.xrTableCell8.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell8.Name          = "xrTableCell8";
     this.xrTableCell8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell8.Text          = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell8.Weight        = 0.067628494138863834;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Angle = 1F;
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column5")
     });
     this.xrTableCell2.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell2.Name          = "xrTableCell2";
     this.xrTableCell2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell2.Text          = "xrTableCell2";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell2.Weight        = 0.054102795311091072;
     //
     // xrTableCell22
     //
     this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column11")
     });
     this.xrTableCell22.Name          = "xrTableCell22";
     this.xrTableCell22.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell22.Text          = "xrTableCell22";
     this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell22.Weight        = 0.05229936880072137;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtDetail, "Column6")
     });
     this.xrTableCell20.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell20.Name          = "xrTableCell20";
     this.xrTableCell20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell20.Text          = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell20.Weight        = 0.090171325518485126;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Angle = 1F;
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Column7")
     });
     this.xrTableCell3.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell3.Name          = "xrTableCell3";
     this.xrTableCell3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell3.Text          = "xrTableCell3";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell3.Weight        = 0.09107303877366997;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dtDetail,
         this.dtHead
     });
     //
     // dtHead
     //
     this.dtHead.Columns.AddRange(new System.Data.DataColumn[] {
         this.dataColumn11,
         this.dataColumn12,
         this.dataColumn13,
         this.dataColumn14,
         this.dataColumn15
     });
     this.dtHead.TableName = "dtHead";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "Column1";
     //
     // dataColumn12
     //
     this.dataColumn12.ColumnName = "Column2";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "Column3";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "Column4";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "Column5";
     //
     // xrTableCell4
     //
     this.xrTableCell4.Angle = 1F;
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Column8")
     });
     this.xrTableCell4.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell4.Name          = "xrTableCell4";
     this.xrTableCell4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell4.Text          = "xrTableCell4";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell4.Weight        = 0.097385031559963933;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.HeightF       = 25F;
     this.GroupHeader1.Name          = "GroupHeader1";
     this.GroupHeader1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.GroupHeader1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(8F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF         = new System.Drawing.SizeF(1109F, 25F);
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell14,
         this.xrTableCell10,
         this.xrTableCell18,
         this.xrTableCell15,
         this.xrTableCell11,
         this.xrTableCell17,
         this.xrTableCell21,
         this.xrTableCell5,
         this.xrTableCell12,
         this.xrTableCell13
     });
     this.xrTableRow2.Name          = "xrTableRow2";
     this.xrTableRow2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 96F);
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableRow2.Weight        = 1;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Name          = "xrTableCell6";
     this.xrTableCell6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell6.Text          = "单据ID";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell6.Weight        = 0.067628494138863834;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell14.Name          = "xrTableCell14";
     this.xrTableCell14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell14.Text          = "销售单号";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell14.Weight        = 0.090171325518485126;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell10.Name          = "xrTableCell10";
     this.xrTableCell10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell10.Text          = "存货编码";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell10.Weight        = 0.0829576194770063;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell18.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell18.Name          = "xrTableCell18";
     this.xrTableCell18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell18.Text          = "存货名称";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell18.Weight        = 0.18034265103697025;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell15.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell15.Name          = "xrTableCell15";
     this.xrTableCell15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell15.Text          = "规格型号";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell15.Weight        = 0.12623985572587917;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell11.Name          = "xrTableCell11";
     this.xrTableCell11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell11.Text          = "主计量单位";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell11.Weight        = 0.066726780883678991;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell17.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell17.Name          = "xrTableCell17";
     this.xrTableCell17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell17.Text          = "计划数量";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell17.Weight        = 0.055004508566275923;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell21.Name          = "xrTableCell21";
     this.xrTableCell21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell21.Text          = "已下单";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell21.Weight        = 0.05229936880072137;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell5.Name          = "xrTableCell5";
     this.xrTableCell5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell5.Text          = "托外结束日期";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell5.Weight        = 0.090171325518485126;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell12.Name          = "xrTableCell12";
     this.xrTableCell12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell12.Text          = "需求日期";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell12.Weight        = 0.09107303877366997;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell13.Font          = new System.Drawing.Font("Times New Roman", 8F);
     this.xrTableCell13.Name          = "xrTableCell13";
     this.xrTableCell13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTableCell13.Text          = "供应商交货日期";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrTableCell13.Weight        = 0.097385031559963933;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLabel2
     });
     this.ReportHeader.HeightF       = 106F;
     this.ReportHeader.Name          = "ReportHeader";
     this.ReportHeader.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(408F, 17F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(350F, 42F);
     this.xrLabel1.Text          = "委外计划供应商确认";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", this.dtHead, "Column1")
     });
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(8F, 75F);
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(283F, 25F);
     this.xrLabel2.Text          = "xrLabel2";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1050F, 8F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(50F, 25F);
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.PageFooter.HeightF       = 39F;
     this.PageFooter.Name          = "PageFooter";
     this.PageFooter.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 20F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // RepOMPlanVen
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.GroupHeader1,
         this.ReportHeader,
         this.PageFooter,
         this.topMarginBand1,
         this.bottomMarginBand1
     });
     this.DataSource = this.dataSet1;
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(20, 20, 20, 100);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.xrControlStyle1
     });
     this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.Version       = "11.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtHead)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 private void InitClass() {
     this.columnSourceUniqueName = new System.Data.DataColumn("SourceUniqueName", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnSourceUniqueName);
     this.columnDestUniqueName = new System.Data.DataColumn("DestUniqueName", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnDestUniqueName);
     this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                     this.columnSourceUniqueName}, true));
     this.columnSourceUniqueName.AllowDBNull = false;
     this.columnSourceUniqueName.Unique = true;
 }
Beispiel #46
0
 internal void InitVars()
 {
     this.columnShipperID   = base.Columns["ShipperID"];
     this.columnCompanyName = base.Columns["CompanyName"];
     this.columnPhone       = base.Columns["Phone"];
 }
Beispiel #47
0
 internal void InitVars() {
     this.columnmenuTitle = base.Columns["menuTitle"];
     this.columnleftmenuUrl = base.Columns["leftmenuUrl"];
     this.columncontentUrl = base.Columns["contentUrl"];
 }
 internal void InitVars()
 {
     this.columnColumn1 = base.Columns["Column1"];
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDBConfig));
     this.cbDatabaseName = new System.Windows.Forms.ComboBox();
     this.dtDatabaseName = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.txtServerName = new System.Windows.Forms.TextBox();
     this.rbSQLSecurity = new System.Windows.Forms.RadioButton();
     this.lblHeader = new System.Windows.Forms.Label();
     this.picLOGO = new System.Windows.Forms.PictureBox();
     this.ds = new System.Data.DataSet();
     this.picHeader = new System.Windows.Forms.PictureBox();
     this.bttnInfo = new System.Windows.Forms.Button();
     this.bttnAdd = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.rbNTSecurity = new System.Windows.Forms.RadioButton();
     this.label6 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.txtUserId = new System.Windows.Forms.TextBox();
     this.txtPassword = new System.Windows.Forms.TextBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dtDatabaseName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picLOGO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ds)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picHeader)).BeginInit();
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // cbDatabaseName
     //
     this.cbDatabaseName.DataSource = this.dtDatabaseName;
     this.cbDatabaseName.DisplayMember = "Name";
     this.cbDatabaseName.Location = new System.Drawing.Point(140, 190);
     this.cbDatabaseName.Name = "cbDatabaseName";
     this.cbDatabaseName.Size = new System.Drawing.Size(153, 21);
     this.cbDatabaseName.TabIndex = 160;
     this.cbDatabaseName.ValueMember = "Name";
     this.cbDatabaseName.DropDown += new System.EventHandler(this.cbDatabaseName_DropDown);
     //
     // dtDatabaseName
     //
     this.dtDatabaseName.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1});
     this.dtDatabaseName.TableName = "DatabaseName";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "Name";
     //
     // txtServerName
     //
     this.txtServerName.Location = new System.Drawing.Point(226, 21);
     this.txtServerName.Name = "txtServerName";
     this.txtServerName.Size = new System.Drawing.Size(192, 20);
     this.txtServerName.TabIndex = 159;
     this.txtServerName.Text = ".";
     //
     // rbSQLSecurity
     //
     this.rbSQLSecurity.Location = new System.Drawing.Point(45, 90);
     this.rbSQLSecurity.Name = "rbSQLSecurity";
     this.rbSQLSecurity.Size = new System.Drawing.Size(233, 24);
     this.rbSQLSecurity.TabIndex = 158;
     this.rbSQLSecurity.Text = "Sử dụng tên đăng nhập và mật khẩu riêng.";
     this.rbSQLSecurity.CheckedChanged += new System.EventHandler(this.rbSQLSecurity_CheckedChanged);
     //
     // lblHeader
     //
     this.lblHeader.AutoSize = true;
     this.lblHeader.BackColor = System.Drawing.Color.Transparent;
     this.lblHeader.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblHeader.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHeader.ForeColor = System.Drawing.Color.White;
     this.lblHeader.Location = new System.Drawing.Point(138, 9);
     this.lblHeader.Name = "lblHeader";
     this.lblHeader.Size = new System.Drawing.Size(198, 19);
     this.lblHeader.TabIndex = 171;
     this.lblHeader.Text = "Cấu Hình Cơ Sở Dữ Liệu";
     //
     // picLOGO
     //
     this.picLOGO.Image = ((System.Drawing.Image)(resources.GetObject("picLOGO.Image")));
     this.picLOGO.Location = new System.Drawing.Point(0, 0);
     this.picLOGO.Name = "picLOGO";
     this.picLOGO.Size = new System.Drawing.Size(32, 24);
     this.picLOGO.TabIndex = 170;
     this.picLOGO.TabStop = false;
     //
     // ds
     //
     this.ds.DataSetName = "NewDataSet";
     this.ds.Locale = new System.Globalization.CultureInfo("en-US");
     this.ds.Tables.AddRange(new System.Data.DataTable[] {
     this.dtDatabaseName});
     //
     // picHeader
     //
     this.picHeader.BackColor = System.Drawing.Color.Transparent;
     this.picHeader.Dock = System.Windows.Forms.DockStyle.Top;
     this.picHeader.Location = new System.Drawing.Point(0, 0);
     this.picHeader.Name = "picHeader";
     this.picHeader.Size = new System.Drawing.Size(435, 34);
     this.picHeader.TabIndex = 169;
     this.picHeader.TabStop = false;
     //
     // bttnInfo
     //
     this.bttnInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.bttnInfo.BackColor = System.Drawing.SystemColors.ControlLight;
     this.bttnInfo.Cursor = System.Windows.Forms.Cursors.Hand;
     this.bttnInfo.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bttnInfo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.bttnInfo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bttnInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.bttnInfo.Image = ((System.Drawing.Image)(resources.GetObject("bttnInfo.Image")));
     this.bttnInfo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bttnInfo.Location = new System.Drawing.Point(346, 289);
     this.bttnInfo.Name = "bttnInfo";
     this.bttnInfo.Size = new System.Drawing.Size(56, 24);
     this.bttnInfo.TabIndex = 168;
     this.bttnInfo.Text = "&Thoát";
     this.bttnInfo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.bttnInfo.UseVisualStyleBackColor = false;
     this.bttnInfo.Click += new System.EventHandler(this.bttnInfo_Click);
     //
     // bttnAdd
     //
     this.bttnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.bttnAdd.BackColor = System.Drawing.SystemColors.ControlLight;
     this.bttnAdd.Cursor = System.Windows.Forms.Cursors.Hand;
     this.bttnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.bttnAdd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bttnAdd.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.bttnAdd.Image = ((System.Drawing.Image)(resources.GetObject("bttnAdd.Image")));
     this.bttnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bttnAdd.Location = new System.Drawing.Point(15, 291);
     this.bttnAdd.Name = "bttnAdd";
     this.bttnAdd.Size = new System.Drawing.Size(112, 24);
     this.bttnAdd.TabIndex = 165;
     this.bttnAdd.Text = "&Kiểm Tra Kết Nối";
     this.bttnAdd.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.bttnAdd.UseVisualStyleBackColor = false;
     this.bttnAdd.Click += new System.EventHandler(this.bttnAdd_Click);
     //
     // button4
     //
     this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button4.BackColor = System.Drawing.SystemColors.ControlLight;
     this.button4.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.button4.Image = ((System.Drawing.Image)(resources.GetObject("button4.Image")));
     this.button4.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button4.Location = new System.Drawing.Point(256, 289);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(72, 24);
     this.button4.TabIndex = 167;
     this.button4.Text = "&Nhập Lại";
     this.button4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.Location = new System.Drawing.Point(136, 291);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(104, 24);
     this.button1.TabIndex = 166;
     this.button1.Text = "&Lưu Thông Tin";
     this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(15, 43);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(172, 13);
     this.label4.TabIndex = 11;
     this.label4.Text = "Mật khẩu đăng nhập cơ sở dữ liệu:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(15, 16);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(146, 13);
     this.label5.TabIndex = 8;
     this.label5.Text = "Tên đăng nhập cơ sở dữ liệu:";
     //
     // rbNTSecurity
     //
     this.rbNTSecurity.Checked = true;
     this.rbNTSecurity.Location = new System.Drawing.Point(45, 70);
     this.rbNTSecurity.Name = "rbNTSecurity";
     this.rbNTSecurity.Size = new System.Drawing.Size(196, 24);
     this.rbNTSecurity.TabIndex = 157;
     this.rbNTSecurity.TabStop = true;
     this.rbNTSecurity.Text = "Tích hợp bảo mật với Windows NT.";
     this.rbNTSecurity.CheckedChanged += new System.EventHandler(this.rbNTSecurity_CheckedChanged);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(18, 194);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(117, 13);
     this.label6.TabIndex = 156;
     this.label6.Text = "3. Tên cơ sở dữ liệu:";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.txtUserId);
     this.panel1.Controls.Add(this.txtPassword);
     this.panel1.Enabled = false;
     this.panel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(44, 116);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(352, 72);
     this.panel1.TabIndex = 155;
     //
     // txtUserId
     //
     this.txtUserId.Location = new System.Drawing.Point(200, 8);
     this.txtUserId.Name = "txtUserId";
     this.txtUserId.Size = new System.Drawing.Size(144, 21);
     this.txtUserId.TabIndex = 159;
     this.txtUserId.Text = "sa";
     //
     // txtPassword
     //
     this.txtPassword.Location = new System.Drawing.Point(200, 40);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(144, 21);
     this.txtPassword.TabIndex = 159;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cbDatabaseName);
     this.groupBox1.Controls.Add(this.txtServerName);
     this.groupBox1.Controls.Add(this.rbSQLSecurity);
     this.groupBox1.Controls.Add(this.rbNTSecurity);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.panel1);
     this.groupBox1.Location = new System.Drawing.Point(2, 35);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(427, 238);
     this.groupBox1.TabIndex = 164;
     this.groupBox1.TabStop = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(18, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(199, 13);
     this.label8.TabIndex = 153;
     this.label8.Text = "1. Tên máy chủ chứa cơ sở dữ liệu:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(18, 54);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(211, 13);
     this.label7.TabIndex = 154;
     this.label7.Text = "2. Thông tin đăng nhập cơ sở dữ liệu:";
     //
     // FrmDBConfig
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(435, 325);
     this.Controls.Add(this.lblHeader);
     this.Controls.Add(this.picLOGO);
     this.Controls.Add(this.picHeader);
     this.Controls.Add(this.bttnInfo);
     this.Controls.Add(this.bttnAdd);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "FrmDBConfig";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cấu hình kết nối cơ sở dữ liệu";
     this.Load += new System.EventHandler(this.FrmDBConfig_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dtDatabaseName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picLOGO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ds)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picHeader)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitClass()
 {
     this.columnColumn1 = new System.Data.DataColumn("Column1", typeof(string), null, System.Data.MappingType.Element);
     base.Columns.Add(this.columnColumn1);
 }
 internal void InitVars() {
     this.columnid = base.Columns["id"];
     this.columnFIO = base.Columns["FIO"];
 }
        void exportStudentSelectionsCommand()
        {
            var local = CommonDataManager.GetLocalCase(base.LocalID);

            System.Windows.Forms.SaveFileDialog saveDialog = new System.Windows.Forms.SaveFileDialog();
            saveDialog.Filter   = "Microsoft Excel files(*.xls)|*.xls;*.xlsx";
            saveDialog.FileName = $"{local.Name}(学生志愿)";
            var result = saveDialog.ShowDialog();

            if (result == System.Windows.Forms.DialogResult.OK)
            {
                #region 获取所有学生志愿

                var cl = CommonDataManager.GetCLCase(base.LocalID);

                var preselections = (from c in cl.Courses
                                     from cc in c.Levels
                                     select new UIPreselection()
                {
                    CourseID = c.ID,
                    Course = c.Name,
                    LevelID = cc.ID,
                    Level = cc.Name,
                })?.ToList();

                #endregion

                string filePath = saveDialog.FileName;

                System.Data.DataTable dt = new System.Data.DataTable();

                #region 学生姓名
                System.Data.DataColumn studentColumn = new System.Data.DataColumn()
                {
                    ColumnName = "姓名"
                };
                dt.Columns.Add(studentColumn);
                #endregion

                #region 动态添加其它列

                foreach (var c in cl.Courses)
                {
                    dt.Columns.Add(
                        new System.Data.DataColumn()
                    {
                        ColumnName = c.Name
                    });
                }

                #endregion

                #region 填充行内容

                foreach (var student in this.Students)
                {
                    System.Data.DataRow newRow = dt.NewRow();
                    newRow["姓名"] = student.Name;

                    student.Preselections.ForEach(sp =>
                    {
                        var ps = preselections.FirstOrDefault(p => p.CourseID.Equals(sp.CourseID) && p.LevelID.Equals(sp.LevelID));
                        if (ps != null)
                        {
                            if (string.IsNullOrEmpty(ps.Level))
                            {
                                newRow[ps.Course] = ps.Course;
                            }
                            else
                            {
                                newRow[ps.Course] = ps.Level;
                            }
                        }
                    });

                    dt.Rows.Add(newRow);
                }

                #endregion

                var excelResult = NPOIClass.DataTableToExcel(dt, filePath);
                if (excelResult.Item1)
                {
                    this.ShowDialog("提示信息", "导出成功", CustomControl.Enums.DialogSettingType.NoButton, CustomControl.Enums.DialogType.None);
                    FileHelper.OpenFilePath(filePath);
                }
                else
                {
                    this.ShowDialog("提示信息", excelResult.Item2, CustomControl.Enums.DialogSettingType.OnlyOkButton, CustomControl.Enums.DialogType.Error);
                    return;
                }
            }
        }
 /// <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);
 }
Beispiel #54
0
 internal void InitVars()
 {
     this.columnAdjudicationId   = base.Columns["AdjudicationId"];
     this.columnNameOfApplicant  = base.Columns["NameOfApplicant"];
     this.columnVillage_CityName = base.Columns["Village_CityName"];
 }
Beispiel #55
0
 internal void InitVars() {
     this.columnID_IZG = base.Columns["ID_IZG"];
     this.columnNAME_IZG = base.Columns["NAME_IZG"];
     this.columnPR_NAC = base.Columns["PR_NAC"];
     this.columnCR_DATE = base.Columns["CR_DATE"];
 }
Beispiel #56
0
 internal void InitVars()
 {
     this.columnNumber  = base.Columns["Number"];
     this.columnBalance = base.Columns["Balance"];
     this.columnName    = base.Columns["Name"];
 }
Beispiel #57
0
 internal void InitVars() {
     this.columnKOD_T = base.Columns["KOD_T"];
     this.columnNAME_T = base.Columns["NAME_T"];
     this.columnDOZA = base.Columns["DOZA"];
     this.columnFORMA_VIP = base.Columns["FORMA_VIP"];
     this.columnOBJEM = base.Columns["OBJEM"];
     this.columnED_IZM = base.Columns["ED_IZM"];
     this.columnVES = base.Columns["VES"];
     this.columnCENA_IZG = base.Columns["CENA_IZG"];
     this.columnPROC_REG = base.Columns["PROC_REG"];
     this.columnID_IZG = base.Columns["ID_IZG"];
     this.columnID_KL1 = base.Columns["ID_KL1"];
     this.columnID_KL2 = base.Columns["ID_KL2"];
     this.columnID_KL3 = base.Columns["ID_KL3"];
     this.columnPR_NDS = base.Columns["PR_NDS"];
     this.columnKOL_UP = base.Columns["KOL_UP"];
     this.columnDATA_REG = base.Columns["DATA_REG"];
     this.columnN_REG = base.Columns["N_REG"];
     this.columnAUTOR = base.Columns["AUTOR"];
     this.columnCR_DATE = base.Columns["CR_DATE"];
     this.columnSNAME_T = base.Columns["SNAME_T"];
     this.columnOLD_NAMET = base.Columns["OLD_NAMET"];
     this.columnNAMET1 = base.Columns["NAMET1"];
     this.columnIS_RECEPT = base.Columns["IS_RECEPT"];
 }
Beispiel #58
0
        public static System.Data.DataTable ExcelToDataTable(string filePath, string fileEx, int sheetIndex = 0)
        {
            var dt = new System.Data.DataTable();

            NPOI.SS.UserModel.ISheet    sheet    = null;
            NPOI.SS.UserModel.IWorkbook workbook = null;
            try
            {
                var fs = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read);
                if (string.Compare(fileEx, ".xlsx", true) == decimal.Zero)
                {
                    workbook = new NPOI.XSSF.UserModel.XSSFWorkbook(fs);
                }
                else if (string.Compare(fileEx, ".xls", true) == decimal.Zero)
                {
                    workbook = new NPOI.HSSF.UserModel.HSSFWorkbook(fs);
                }

                sheet = workbook.GetSheetAt(sheetIndex);
                if (sheet != null)
                {
                    var firstRow  = sheet.GetRow(0);
                    int cellCount = firstRow.LastCellNum;

                    for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
                    {
                        var cell = firstRow.GetCell(i);
                        if (cell != null)
                        {
                            var cellValue = cell.StringCellValue.Trim();
                            if (String.IsNullOrWhiteSpace(cellValue))
                            {
                                cellValue = i.ToString();
                            }

                            var column = new System.Data.DataColumn(cellValue);
                            dt.Columns.Add(column);
                        }
                    }

                    int startRow = sheet.FirstRowNum + 1;

                    //最后一列的标号
                    int rowCount = sheet.LastRowNum;
                    for (int i = startRow; i <= rowCount; ++i)
                    {
                        var row = sheet.GetRow(i);
                        if (row != null)
                        {
                            var dataRow = dt.NewRow();
                            for (int j = row.FirstCellNum; j < cellCount; ++j)
                            {
                                if (row.GetCell(j) != null)
                                {
                                    dataRow[j] = row.GetCell(j).ToString().Trim();
                                }
                            }
                            dt.Rows.Add(dataRow);
                        }
                    }
                }
                return(dt);
            }
            catch
            {
                return(null);
            }
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Data.DataColumn dataColumnQuestPartIF;
            System.Data.DataColumn dataColumnTriggerQuestPart;
            System.Data.DataColumn dataColumnTriggerType;
            System.Data.DataColumn dataColumnTriggerKeyword;
            System.Data.DataColumn dataColumnTriggerObject;
            System.Data.DataColumn dataColumnQuestTriggerID;
            System.Data.DataColumn datacolumnquestPartID;
            System.Data.DataColumn dataColumnRequirmentType;
            System.Data.DataColumn dataColumnRequirmeentN;
            System.Data.DataColumn dataColumnRequirementV;
            System.Data.DataColumn dataColumnRequirementComparator;
            System.Data.DataColumn dataColumnRequirementID;
            System.Data.DataColumn dataColumnActionQuestPartID;
            System.Data.DataColumn dataColumnActionType;
            System.Data.DataColumn dataColumnActionP;
            System.Data.DataColumn dataColumnActionQ;
            System.Data.DataColumn dataColumn1;
            System.Data.DataColumn dataColumnRegionID;
            System.Data.DataColumn dataColumnRegionDescription;
            System.Data.DataColumn dataColumnZoneID;
            System.Data.DataColumn dataColumnZoneRegionID;
            System.Data.DataColumn dataColumnZoneDescription;
            System.Data.DataColumn dataColumnZoneOffsetY;
            System.Data.DataColumn dataColumnZoneOffsetX;
            System.Data.DataColumn dataColumn15;
            System.Data.DataColumn dataColumn16;
            System.Data.DataColumn dataColumn17;
            System.Data.DataColumn dataColumn18;
            System.Data.DataColumn dataColumn19;
            System.Data.DataColumn dataColumn20;
            System.Data.DataColumn dataColumn21;
            System.Data.DataColumn dataColumn22;
            System.Data.DataColumn dataColumnText;
            System.Data.DataColumn dataColumnDefaultNPC;
            System.Data.DataColumn dataColumn28;
            System.Data.DataColumn dataColumn32;
            System.Data.DataColumn dataColumn23;
            System.Data.DataTable dataTableQuestCharacterClass;
            System.Data.DataColumn dataColumnCharacterClass;
            System.Data.DataColumn dataColumnDescription;
            System.Data.DataColumn dataColumnGold;
            System.Data.DataColumn dataColumnSilver;
            System.Data.DataColumn dataColumnCopper;
            System.Data.DataColumn dataColumnEmblem;
            System.Data.DataColumn dataColumnEffect;
            System.Data.DataColumn dataColumnExtension;
            System.Data.DataColumn dataColumn73;
            System.Data.DataColumn dataColumnPackSize;
            System.Data.DataColumn dataColumnCharges;
            System.Data.DataColumn dataColumnMaxCount;
            System.Data.DataColumn dataColumnSpellID;
            System.Data.DataColumn dataColumnProcSpellID;
            System.Data.DataColumn dataColumnPoisonCharges;
            System.Data.DataColumn dataColumnPoisonMaxCharges;
            System.Data.DataColumn dataColumnPoisonSpellID;
            System.Data.DataColumn dataColumnProcSpellID1;
            System.Data.DataColumn dataColumnSpellID1;
            System.Data.DataColumn dataColumnMaxCharges1;
            System.Data.DataColumn dataColumnCharges1;
            System.Data.DataColumn dataColumnIsTradable;
            System.Data.DataColumn dataColumnCanDropAsLoot;
            System.Data.DataColumn dataColumnBonus6Type;
            System.Data.DataColumn dataColumnBonus6;
            System.Data.DataColumn dataColumnBonus7Type;
            System.Data.DataColumn dataColumnBonus7;
            System.Data.DataColumn dataColumnBonus8Type;
            System.Data.DataColumn dataColumnBonus8;
            System.Data.DataColumn dataColumnBonus9Type;
            System.Data.DataColumn dataColumnBonus9;
            System.Data.DataColumn dataColumnBonus10Type;
            System.Data.DataColumn dataColumnBonus10;
            System.Data.DataColumn dataColumn59;
            System.Data.DataColumn dataColumn66;
            System.Data.DataColumn dataColumnPlatinum;
            System.Data.DataColumn dataColumnQuestDate;
            System.Data.DataColumn dataColumn26;
            System.Data.DataColumn dataColumn33;
            System.Data.DataColumn dataColumn34;
            System.Data.DataColumn dataColumn35;
            System.Data.DataColumn dataColumnQuestID;
            System.Data.DataColumn dataColumnQuestName;
            System.Data.DataColumn dataColumnQuestAuthor;
            System.Data.DataColumn dataColumnQuestVersion;
            System.Data.DataColumn dataColumnQuestDescription;
            System.Data.DataColumn dataColumn14;
            System.Data.DataColumn dataColumnMinimumLevel;
            System.Data.DataColumn dataColumnMaximumLevel;
            System.Data.DataColumn dataColumnInvintingNPC;
            System.Data.DataColumn dataColumn41;
            System.Data.DataColumn dataColumn62;
            System.Data.DataColumn dataColumn63;
            System.Data.DataColumn dataColumn64;
            System.Data.DataColumn dataColumn65;
            System.Data.DataColumn dataColumn36;
            System.Data.DataColumn dataColumn37;
            System.Data.DataColumn dataColumn39;
            System.Data.DataColumn dataColumn40;
            System.Data.DataColumn dataColumn42;
            System.Data.DataColumn dataColumn43;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QuestDesignerForm));
            NETXP.Controls.Docking.Renderers.Office2003 office20031 = new NETXP.Controls.Docking.Renderers.Office2003();
            NETXP.Library.DynamicColorTable dynamicColorTable1 = new NETXP.Library.DynamicColorTable();
            NETXP.Library.DynamicColorTable dynamicColorTable2 = new NETXP.Library.DynamicColorTable();
            this.toolStripContainerForm = new System.Windows.Forms.ToolStripContainer();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.StatusIcon = new System.Windows.Forms.ToolStripStatusLabel();
            this.StatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.StatusProgress = new System.Windows.Forms.ToolStripProgressBar();
            this.tabControlMain = new NETXP.Controls.Docking.TabControl();
            this.tabPageQuest = new NETXP.Controls.Docking.TabPage();
            this.questInfo = new DOL.Tools.QuestDesigner.QuestInfo();
            this.tabPageNPC = new NETXP.Controls.Docking.TabPage();
            this.npcView = new DOL.Tools.QuestDesigner.NPC();
            this.tabPageItem = new NETXP.Controls.Docking.TabPage();
            this.itemView = new DOL.Tools.QuestDesigner.Item();
            this.tabPageQuestPart = new NETXP.Controls.Docking.TabPage();
            this.questPartItems = new DOL.Tools.QuestDesigner.QuestPartItems();
            this.tabPageArea = new NETXP.Controls.Docking.TabPage();
            this.areaView = new DOL.Tools.QuestDesigner.Area();
            this.tabPageLocation = new NETXP.Controls.Docking.TabPage();
            this.locationView = new DOL.Tools.QuestDesigner.Location();
            this.tabPageCode = new NETXP.Controls.Docking.TabPage();
            this.customCode = new DOL.Tools.QuestDesigner.CustomCode();
            this.tabPageMap = new NETXP.Controls.Docking.TabPage();
            this.DXControl = new DOL.Tools.Mapping.Forms.DXControl();
            this.tabPageWeb = new NETXP.Controls.Docking.TabPage();
            this.webBrowser1 = new DOL.Tools.QuestDesigner.QuestDesigner.WebBrowser();
            this.xpTaskPane = new NETXP.Controls.TaskPane.XPTaskPane();
            this.xpTGQuestPart = new NETXP.Controls.TaskPane.XPTaskPaneGroup();
            this.xpTGActions = new NETXP.Controls.TaskPane.XPTaskPaneGroup();
            this.linkLabelNewQuest = new System.Windows.Forms.LinkLabel();
            this.linkSaveQuest = new System.Windows.Forms.LinkLabel();
            this.linkLoadQuest = new System.Windows.Forms.LinkLabel();
            this.menuStripMain = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.createToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItemTaskPane = new System.Windows.Forms.ToolStripMenuItem();
            this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.positionConverterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dataDownloadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.creditsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dataSetQuest = new System.Data.DataSet();
            this.dataTableQuestPart = new System.Data.DataTable();
            this.dataColumn38 = new System.Data.DataColumn();
            this.dataTableTrigger = new System.Data.DataTable();
            this.dataColumn29 = new System.Data.DataColumn();
            this.dataTableRequirement = new System.Data.DataTable();
            this.dataColumn30 = new System.Data.DataColumn();
            this.dataTableAction = new System.Data.DataTable();
            this.dataColumn31 = new System.Data.DataColumn();
            this.dataTableQuest = new System.Data.DataTable();
            this.dataTableMob = new System.Data.DataTable();
            this.dataColumnName = new System.Data.DataColumn();
            this.dataColumnModel = new System.Data.DataColumn();
            this.dataColumnGuildName = new System.Data.DataColumn();
            this.dataColumnLevel = new System.Data.DataColumn();
            this.dataColumnX = new System.Data.DataColumn();
            this.dataColumnY = new System.Data.DataColumn();
            this.dataColumnZ = new System.Data.DataColumn();
            this.dataColumnRegion = new System.Data.DataColumn();
            this.dataColumnMobID = new System.Data.DataColumn();
            this.dataColumnClassType = new System.Data.DataColumn();
            this.dataColumnSpeed = new System.Data.DataColumn();
            this.dataColumnHeading = new System.Data.DataColumn();
            this.dataColumnSize = new System.Data.DataColumn();
            this.dataColumnEquipmentTemplateID = new System.Data.DataColumn();
            this.dataColumnFlags = new System.Data.DataColumn();
            this.dataColumnAggroLevel = new System.Data.DataColumn();
            this.dataColumnAggroRange = new System.Data.DataColumn();
            this.dataColumnMobRealm = new System.Data.DataColumn();
            this.dataColumnMobRespawnInterval = new System.Data.DataColumn();
            this.dataColumnMobFactionID = new System.Data.DataColumn();
            this.dataColumnMobMeleeDamageType = new System.Data.DataColumn();
            this.dataColumnMobItemsListTemplateID = new System.Data.DataColumn();
            this.dataColumnAddToworld = new System.Data.DataColumn();
            this.dataColumnObjectName = new System.Data.DataColumn();
            this.dataTableItemTemplate = new System.Data.DataTable();
            this.dataColumnIdNb = new System.Data.DataColumn();
            this.dataColumnItemName = new System.Data.DataColumn();
            this.dataColumnItemLevel = new System.Data.DataColumn();
            this.dataColumnDurability = new System.Data.DataColumn();
            this.dataColumnMaxDurability = new System.Data.DataColumn();
            this.dataColumnCondition = new System.Data.DataColumn();
            this.dataColumnMaxcondition = new System.Data.DataColumn();
            this.dataColumnQuality = new System.Data.DataColumn();
            this.dataColumnDPS_AF = new System.Data.DataColumn();
            this.dataColumnSPD_ABS = new System.Data.DataColumn();
            this.dataColumnHand = new System.Data.DataColumn();
            this.dataColumnTypeDamage = new System.Data.DataColumn();
            this.dataColumnObjectType = new System.Data.DataColumn();
            this.dataColumnItemType = new System.Data.DataColumn();
            this.dataColumnWeight = new System.Data.DataColumn();
            this.dataColumnItemModel = new System.Data.DataColumn();
            this.dataColumnRealm = new System.Data.DataColumn();
            this.dataColumnIsPickable = new System.Data.DataColumn();
            this.dataColumnIsDropable = new System.Data.DataColumn();
            this.dataColumnBonus = new System.Data.DataColumn();
            this.dataColumnBonus1 = new System.Data.DataColumn();
            this.dataColumnBonus1Type = new System.Data.DataColumn();
            this.dataColumnBonus2 = new System.Data.DataColumn();
            this.dataColumnBonus2Type = new System.Data.DataColumn();
            this.dataColumnBonus3 = new System.Data.DataColumn();
            this.dataColumnBonus3Type = new System.Data.DataColumn();
            this.dataColumnBonus4 = new System.Data.DataColumn();
            this.dataColumnBonus4Type = new System.Data.DataColumn();
            this.dataColumnBonus5 = new System.Data.DataColumn();
            this.dataColumnBonus5Type = new System.Data.DataColumn();
            this.dataColumnExtraBonus = new System.Data.DataColumn();
            this.dataColumnExtraBonusType = new System.Data.DataColumn();
            this.dataColumnColor = new System.Data.DataColumn();
            this.dataTableQuestStep = new System.Data.DataTable();
            this.dataColumnStep = new System.Data.DataColumn();
            this.dataColumnStepDescription = new System.Data.DataColumn();
            this.dataTableArea = new System.Data.DataTable();
            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.dataColumn44 = new System.Data.DataColumn();
            this.dataTableLocation = new System.Data.DataTable();
            this.dataSetData = new System.Data.DataSet();
            this.dataTableRegion = new System.Data.DataTable();
            this.dataTableZone = new System.Data.DataTable();
            this.dataTableTriggerType = new System.Data.DataTable();
            this.dataColumnTriggerTypeValue = new System.Data.DataColumn();
            this.dataColumnTriggerTypeDescription = new System.Data.DataColumn();
            this.dataColumnTriggerTypeHelp = new System.Data.DataColumn();
            this.dataColumnTriggerTypeK = new System.Data.DataColumn();
            this.dataColumnTriggerTypeI = new System.Data.DataColumn();
            this.dataColumnTriggerTypeID = new System.Data.DataColumn();
            this.dataTableActionType = new System.Data.DataTable();
            this.dataColumnActionTypeValue = new System.Data.DataColumn();
            this.dataColumnActionTypeDescription = new System.Data.DataColumn();
            this.dataColumnActionTypeHelp = new System.Data.DataColumn();
            this.dataColumnActionTypeP = new System.Data.DataColumn();
            this.dataColumnActionTypeQ = new System.Data.DataColumn();
            this.dataColumnActionTypeID = new System.Data.DataColumn();
            this.dataColumn25 = new System.Data.DataColumn();
            this.dataTableRequirementType = new System.Data.DataTable();
            this.dataColumnRequirementTypeValue = new System.Data.DataColumn();
            this.dataColumnRequirementTypeDescription = new System.Data.DataColumn();
            this.dataColumnRequirementTypeHelp = new System.Data.DataColumn();
            this.dataColumnRequirementTypeN = new System.Data.DataColumn();
            this.dataColumnRequirementTypeV = new System.Data.DataColumn();
            this.dataColumnRequirementTypeID = new System.Data.DataColumn();
            this.dataColumn24 = new System.Data.DataColumn();
            this.dataColumn27 = new System.Data.DataColumn();
            this.dataTableeEnumeration = new System.Data.DataTable();
            this.dataColumnEnumerationType = new System.Data.DataColumn();
            this.dataColumnEnumerationValue = new System.Data.DataColumn();
            this.dataColumnEnumerationName = new System.Data.DataColumn();
            this.dataColumnEnumerationDescription = new System.Data.DataColumn();
            this.dataColumnRealmValue = new System.Data.DataColumn();
            this.dataColumnRealmDescription = new System.Data.DataColumn();
            this.dataColumnTextTypeValue = new System.Data.DataColumn();
            this.dataColumnTextTypeDescription = new System.Data.DataColumn();
            this.dataColumn2 = new System.Data.DataColumn();
            this.dataColumn3 = 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.dataColumn60 = new System.Data.DataColumn();
            this.dataColumn61 = new System.Data.DataColumn();
            this.dataColumn4 = new System.Data.DataColumn();
            this.dataColumn5 = new System.Data.DataColumn();
            this.saveQuestDialog = new System.Windows.Forms.SaveFileDialog();
            this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel();
            this.ContentPanel = new System.Windows.Forms.ToolStripContentPanel();
            this.openQuestDialog = new System.Windows.Forms.OpenFileDialog();
            this.saveScriptDialog = new System.Windows.Forms.SaveFileDialog();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            dataColumnQuestPartIF = new System.Data.DataColumn();
            dataColumnTriggerQuestPart = new System.Data.DataColumn();
            dataColumnTriggerType = new System.Data.DataColumn();
            dataColumnTriggerKeyword = new System.Data.DataColumn();
            dataColumnTriggerObject = new System.Data.DataColumn();
            dataColumnQuestTriggerID = new System.Data.DataColumn();
            datacolumnquestPartID = new System.Data.DataColumn();
            dataColumnRequirmentType = new System.Data.DataColumn();
            dataColumnRequirmeentN = new System.Data.DataColumn();
            dataColumnRequirementV = new System.Data.DataColumn();
            dataColumnRequirementComparator = new System.Data.DataColumn();
            dataColumnRequirementID = new System.Data.DataColumn();
            dataColumnActionQuestPartID = new System.Data.DataColumn();
            dataColumnActionType = new System.Data.DataColumn();
            dataColumnActionP = new System.Data.DataColumn();
            dataColumnActionQ = new System.Data.DataColumn();
            dataColumn1 = new System.Data.DataColumn();
            dataColumnRegionID = new System.Data.DataColumn();
            dataColumnRegionDescription = new System.Data.DataColumn();
            dataColumnZoneID = new System.Data.DataColumn();
            dataColumnZoneRegionID = new System.Data.DataColumn();
            dataColumnZoneDescription = new System.Data.DataColumn();
            dataColumnZoneOffsetY = new System.Data.DataColumn();
            dataColumnZoneOffsetX = new System.Data.DataColumn();
            dataColumn15 = new System.Data.DataColumn();
            dataColumn16 = new System.Data.DataColumn();
            dataColumn17 = new System.Data.DataColumn();
            dataColumn18 = new System.Data.DataColumn();
            dataColumn19 = new System.Data.DataColumn();
            dataColumn20 = new System.Data.DataColumn();
            dataColumn21 = new System.Data.DataColumn();
            dataColumn22 = new System.Data.DataColumn();
            dataColumnText = new System.Data.DataColumn();
            dataColumnDefaultNPC = new System.Data.DataColumn();
            dataColumn28 = new System.Data.DataColumn();
            dataColumn32 = new System.Data.DataColumn();
            dataColumn23 = new System.Data.DataColumn();
            dataTableQuestCharacterClass = new System.Data.DataTable();
            dataColumnCharacterClass = new System.Data.DataColumn();
            dataColumnDescription = new System.Data.DataColumn();
            dataColumnGold = new System.Data.DataColumn();
            dataColumnSilver = new System.Data.DataColumn();
            dataColumnCopper = new System.Data.DataColumn();
            dataColumnEmblem = new System.Data.DataColumn();
            dataColumnEffect = new System.Data.DataColumn();
            dataColumnExtension = new System.Data.DataColumn();
            dataColumn73 = new System.Data.DataColumn();
            dataColumnPackSize = new System.Data.DataColumn();
            dataColumnCharges = new System.Data.DataColumn();
            dataColumnMaxCount = new System.Data.DataColumn();
            dataColumnSpellID = new System.Data.DataColumn();
            dataColumnProcSpellID = new System.Data.DataColumn();
            dataColumnPoisonCharges = new System.Data.DataColumn();
            dataColumnPoisonMaxCharges = new System.Data.DataColumn();
            dataColumnPoisonSpellID = new System.Data.DataColumn();
            dataColumnProcSpellID1 = new System.Data.DataColumn();
            dataColumnSpellID1 = new System.Data.DataColumn();
            dataColumnMaxCharges1 = new System.Data.DataColumn();
            dataColumnCharges1 = new System.Data.DataColumn();
            dataColumnIsTradable = new System.Data.DataColumn();
            dataColumnCanDropAsLoot = new System.Data.DataColumn();
            dataColumnBonus6Type = new System.Data.DataColumn();
            dataColumnBonus6 = new System.Data.DataColumn();
            dataColumnBonus7Type = new System.Data.DataColumn();
            dataColumnBonus7 = new System.Data.DataColumn();
            dataColumnBonus8Type = new System.Data.DataColumn();
            dataColumnBonus8 = new System.Data.DataColumn();
            dataColumnBonus9Type = new System.Data.DataColumn();
            dataColumnBonus9 = new System.Data.DataColumn();
            dataColumnBonus10Type = new System.Data.DataColumn();
            dataColumnBonus10 = new System.Data.DataColumn();
            dataColumn59 = new System.Data.DataColumn();
            dataColumn66 = new System.Data.DataColumn();
            dataColumnPlatinum = new System.Data.DataColumn();
            dataColumnQuestDate = new System.Data.DataColumn();
            dataColumn26 = new System.Data.DataColumn();
            dataColumn33 = new System.Data.DataColumn();
            dataColumn34 = new System.Data.DataColumn();
            dataColumn35 = new System.Data.DataColumn();
            dataColumnQuestID = new System.Data.DataColumn();
            dataColumnQuestName = new System.Data.DataColumn();
            dataColumnQuestAuthor = new System.Data.DataColumn();
            dataColumnQuestVersion = new System.Data.DataColumn();
            dataColumnQuestDescription = new System.Data.DataColumn();
            dataColumn14 = new System.Data.DataColumn();
            dataColumnMinimumLevel = new System.Data.DataColumn();
            dataColumnMaximumLevel = new System.Data.DataColumn();
            dataColumnInvintingNPC = new System.Data.DataColumn();
            dataColumn41 = new System.Data.DataColumn();
            dataColumn62 = new System.Data.DataColumn();
            dataColumn63 = new System.Data.DataColumn();
            dataColumn64 = new System.Data.DataColumn();
            dataColumn65 = new System.Data.DataColumn();
            dataColumn36 = new System.Data.DataColumn();
            dataColumn37 = new System.Data.DataColumn();
            dataColumn39 = new System.Data.DataColumn();
            dataColumn40 = new System.Data.DataColumn();
            dataColumn42 = new System.Data.DataColumn();
            dataColumn43 = new System.Data.DataColumn();
            ((System.ComponentModel.ISupportInitialize)(dataTableQuestCharacterClass)).BeginInit();
            this.toolStripContainerForm.BottomToolStripPanel.SuspendLayout();
            this.toolStripContainerForm.ContentPanel.SuspendLayout();
            this.toolStripContainerForm.TopToolStripPanel.SuspendLayout();
            this.toolStripContainerForm.SuspendLayout();
            this.statusStrip.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).BeginInit();
            this.tabControlMain.SuspendLayout();
            this.tabPageQuest.SuspendLayout();
            this.tabPageNPC.SuspendLayout();
            this.tabPageItem.SuspendLayout();
            this.tabPageQuestPart.SuspendLayout();
            this.tabPageArea.SuspendLayout();
            this.tabPageLocation.SuspendLayout();
            this.tabPageCode.SuspendLayout();
            this.tabPageMap.SuspendLayout();
            this.tabPageWeb.SuspendLayout();
            this.xpTaskPane.SuspendLayout();
            this.xpTGActions.SuspendLayout();
            this.menuStripMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataSetQuest)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableQuestPart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableTrigger)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableRequirement)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableAction)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableQuest)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableMob)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableItemTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableQuestStep)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableArea)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableLocation)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSetData)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableRegion)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableZone)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableTriggerType)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableActionType)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableRequirementType)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableeEnumeration)).BeginInit();
            this.SuspendLayout();
            // 
            // dataColumnQuestPartIF
            // 
            dataColumnQuestPartIF.AllowDBNull = false;
            dataColumnQuestPartIF.AutoIncrement = true;
            dataColumnQuestPartIF.ColumnName = "ID";
            dataColumnQuestPartIF.DataType = typeof(int);
            // 
            // dataColumnTriggerQuestPart
            // 
            dataColumnTriggerQuestPart.ColumnName = "QuestPartID";
            dataColumnTriggerQuestPart.DataType = typeof(int);
            // 
            // dataColumnTriggerType
            // 
            dataColumnTriggerType.ColumnName = "Type";
            dataColumnTriggerType.DataType = typeof(int);
            // 
            // dataColumnTriggerKeyword
            // 
            dataColumnTriggerKeyword.ColumnName = "K";
            // 
            // dataColumnTriggerObject
            // 
            dataColumnTriggerObject.ColumnName = "I";
            // 
            // dataColumnQuestTriggerID
            // 
            dataColumnQuestTriggerID.AllowDBNull = false;
            dataColumnQuestTriggerID.AutoIncrement = true;
            dataColumnQuestTriggerID.ColumnName = "ID";
            dataColumnQuestTriggerID.DataType = typeof(int);
            // 
            // datacolumnquestPartID
            // 
            datacolumnquestPartID.ColumnName = "QuestPartID";
            datacolumnquestPartID.DataType = typeof(int);
            // 
            // dataColumnRequirmentType
            // 
            dataColumnRequirmentType.ColumnName = "Type";
            dataColumnRequirmentType.DataType = typeof(int);
            // 
            // dataColumnRequirmeentN
            // 
            dataColumnRequirmeentN.ColumnName = "N";
            // 
            // dataColumnRequirementV
            // 
            dataColumnRequirementV.ColumnName = "V";
            // 
            // dataColumnRequirementComparator
            // 
            dataColumnRequirementComparator.ColumnName = "Comparator";
            dataColumnRequirementComparator.DataType = typeof(int);
            // 
            // dataColumnRequirementID
            // 
            dataColumnRequirementID.AllowDBNull = false;
            dataColumnRequirementID.AutoIncrement = true;
            dataColumnRequirementID.ColumnName = "ID";
            dataColumnRequirementID.DataType = typeof(int);
            // 
            // dataColumnActionQuestPartID
            // 
            dataColumnActionQuestPartID.ColumnName = "QuestPartID";
            dataColumnActionQuestPartID.DataType = typeof(int);
            // 
            // dataColumnActionType
            // 
            dataColumnActionType.ColumnName = "Type";
            dataColumnActionType.DataType = typeof(int);
            // 
            // dataColumnActionP
            // 
            dataColumnActionP.ColumnName = "P";
            // 
            // dataColumnActionQ
            // 
            dataColumnActionQ.ColumnName = "Q";
            // 
            // dataColumn1
            // 
            dataColumn1.AllowDBNull = false;
            dataColumn1.AutoIncrement = true;
            dataColumn1.ColumnName = "ID";
            dataColumn1.DataType = typeof(int);
            // 
            // dataColumnRegionID
            // 
            dataColumnRegionID.ColumnName = "id";
            dataColumnRegionID.DataType = typeof(int);
            // 
            // dataColumnRegionDescription
            // 
            dataColumnRegionDescription.ColumnName = "description";
            // 
            // dataColumnZoneID
            // 
            dataColumnZoneID.ColumnName = "zoneID";
            dataColumnZoneID.DataType = typeof(int);
            // 
            // dataColumnZoneRegionID
            // 
            dataColumnZoneRegionID.ColumnName = "regionID";
            dataColumnZoneRegionID.DataType = typeof(int);
            // 
            // dataColumnZoneDescription
            // 
            dataColumnZoneDescription.ColumnName = "description";
            // 
            // dataColumnZoneOffsetY
            // 
            dataColumnZoneOffsetY.ColumnName = "offsety";
            dataColumnZoneOffsetY.DataType = typeof(int);
            // 
            // dataColumnZoneOffsetX
            // 
            dataColumnZoneOffsetX.ColumnName = "offsetx";
            dataColumnZoneOffsetX.DataType = typeof(int);
            // 
            // dataColumn15
            // 
            dataColumn15.AutoIncrement = true;
            dataColumn15.ColumnName = "ID";
            dataColumn15.DataType = typeof(int);
            // 
            // dataColumn16
            // 
            dataColumn16.ColumnName = "Name";
            // 
            // dataColumn17
            // 
            dataColumn17.Caption = "Region";
            dataColumn17.ColumnName = "RegionID";
            dataColumn17.DataType = typeof(int);
            // 
            // dataColumn18
            // 
            dataColumn18.AllowDBNull = false;
            dataColumn18.ColumnName = "X";
            dataColumn18.DataType = typeof(int);
            dataColumn18.DefaultValue = 0;
            // 
            // dataColumn19
            // 
            dataColumn19.AllowDBNull = false;
            dataColumn19.ColumnName = "Y";
            dataColumn19.DataType = typeof(int);
            dataColumn19.DefaultValue = 0;
            // 
            // dataColumn20
            // 
            dataColumn20.AllowDBNull = false;
            dataColumn20.ColumnName = "Z";
            dataColumn20.DataType = typeof(int);
            dataColumn20.DefaultValue = 0;
            // 
            // dataColumn21
            // 
            dataColumn21.AllowDBNull = false;
            dataColumn21.ColumnName = "Heading";
            dataColumn21.DataType = typeof(int);
            dataColumn21.DefaultValue = 0;
            // 
            // dataColumn22
            // 
            dataColumn22.ColumnName = "ObjectName";
            // 
            // dataColumnText
            // 
            dataColumnText.Caption = "Text";
            dataColumnText.ColumnName = "text";
            dataColumnText.DefaultValue = "";
            // 
            // dataColumnDefaultNPC
            // 
            dataColumnDefaultNPC.ColumnName = "defaultNPC";
            // 
            // dataColumn28
            // 
            dataColumn28.ColumnName = "width";
            dataColumn28.DataType = typeof(int);
            // 
            // dataColumn32
            // 
            dataColumn32.ColumnName = "height";
            dataColumn32.DataType = typeof(int);
            // 
            // dataColumn23
            // 
            dataColumn23.AllowDBNull = false;
            dataColumn23.AutoIncrement = true;
            dataColumn23.ColumnName = "Position";
            dataColumn23.DataType = typeof(int);
            // 
            // dataTableQuestCharacterClass
            // 
            dataTableQuestCharacterClass.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnCharacterClass,
            dataColumnDescription});
            dataTableQuestCharacterClass.Constraints.AddRange(new System.Data.Constraint[] {
            new System.Data.UniqueConstraint("Constraint1", new string[] {
                        "Value"}, true)});
            dataTableQuestCharacterClass.MinimumCapacity = 5;
            dataTableQuestCharacterClass.PrimaryKey = new System.Data.DataColumn[] {
        dataColumnCharacterClass};
            dataTableQuestCharacterClass.TableName = "QuestCharacterClass";
            // 
            // dataColumnCharacterClass
            // 
            dataColumnCharacterClass.AllowDBNull = false;
            dataColumnCharacterClass.ColumnName = "Value";
            dataColumnCharacterClass.DataType = typeof(int);
            // 
            // dataColumnDescription
            // 
            dataColumnDescription.ColumnName = "Description";
            // 
            // dataColumnGold
            // 
            dataColumnGold.ColumnName = "Gold";
            dataColumnGold.DataType = typeof(short);
            dataColumnGold.DefaultValue = ((short)(0));
            // 
            // dataColumnSilver
            // 
            dataColumnSilver.ColumnName = "Silver";
            dataColumnSilver.DataType = typeof(byte);
            dataColumnSilver.DefaultValue = ((byte)(0));
            // 
            // dataColumnCopper
            // 
            dataColumnCopper.ColumnName = "Copper";
            dataColumnCopper.DataType = typeof(byte);
            dataColumnCopper.DefaultValue = ((byte)(0));
            // 
            // dataColumnEmblem
            // 
            dataColumnEmblem.ColumnName = "Emblem";
            dataColumnEmblem.DataType = typeof(int);
            dataColumnEmblem.DefaultValue = 0;
            // 
            // dataColumnEffect
            // 
            dataColumnEffect.ColumnName = "Effect";
            dataColumnEffect.DataType = typeof(int);
            dataColumnEffect.DefaultValue = 0;
            // 
            // dataColumnExtension
            // 
            dataColumnExtension.Caption = "Extension";
            dataColumnExtension.ColumnName = "Extension";
            dataColumnExtension.DataType = typeof(byte);
            dataColumnExtension.DefaultValue = ((byte)(0));
            // 
            // dataColumn73
            // 
            dataColumn73.ColumnName = "MaxCount";
            dataColumn73.DataType = typeof(int);
            dataColumn73.DefaultValue = 1;
            // 
            // dataColumnPackSize
            // 
            dataColumnPackSize.ColumnName = "PackSize";
            dataColumnPackSize.DataType = typeof(int);
            dataColumnPackSize.DefaultValue = 1;
            // 
            // dataColumnCharges
            // 
            dataColumnCharges.ColumnName = "Charges";
            dataColumnCharges.DataType = typeof(int);
            dataColumnCharges.DefaultValue = 0;
            // 
            // dataColumnMaxCount
            // 
            dataColumnMaxCount.ColumnName = "MaxCharges";
            dataColumnMaxCount.DataType = typeof(int);
            dataColumnMaxCount.DefaultValue = 0;
            // 
            // dataColumnSpellID
            // 
            dataColumnSpellID.ColumnName = "SpellID";
            dataColumnSpellID.DataType = typeof(int);
            dataColumnSpellID.DefaultValue = 0;
            // 
            // dataColumnProcSpellID
            // 
            dataColumnProcSpellID.ColumnName = "ProcSpellID";
            dataColumnProcSpellID.DataType = typeof(int);
            dataColumnProcSpellID.DefaultValue = 0;
            // 
            // dataColumnPoisonCharges
            // 
            dataColumnPoisonCharges.ColumnName = "PoisonCharges";
            dataColumnPoisonCharges.DataType = typeof(int);
            dataColumnPoisonCharges.DefaultValue = 0;
            // 
            // dataColumnPoisonMaxCharges
            // 
            dataColumnPoisonMaxCharges.ColumnName = "PoisonMaxCharges";
            dataColumnPoisonMaxCharges.DataType = typeof(int);
            dataColumnPoisonMaxCharges.DefaultValue = 0;
            // 
            // dataColumnPoisonSpellID
            // 
            dataColumnPoisonSpellID.ColumnName = "PoisonSpellID";
            dataColumnPoisonSpellID.DataType = typeof(int);
            dataColumnPoisonSpellID.DefaultValue = 0;
            // 
            // dataColumnProcSpellID1
            // 
            dataColumnProcSpellID1.ColumnName = "ProcSpellID1";
            dataColumnProcSpellID1.DefaultValue = "0";
            // 
            // dataColumnSpellID1
            // 
            dataColumnSpellID1.ColumnName = "SpellID1";
            dataColumnSpellID1.DataType = typeof(int);
            dataColumnSpellID1.DefaultValue = 0;
            // 
            // dataColumnMaxCharges1
            // 
            dataColumnMaxCharges1.ColumnName = "MaxCharges1";
            dataColumnMaxCharges1.DataType = typeof(int);
            dataColumnMaxCharges1.DefaultValue = 0;
            // 
            // dataColumnCharges1
            // 
            dataColumnCharges1.ColumnName = "Charges1";
            dataColumnCharges1.DataType = typeof(int);
            dataColumnCharges1.DefaultValue = 0;
            // 
            // dataColumnIsTradable
            // 
            dataColumnIsTradable.ColumnName = "IsTradable";
            dataColumnIsTradable.DataType = typeof(bool);
            dataColumnIsTradable.DefaultValue = true;
            // 
            // dataColumnCanDropAsLoot
            // 
            dataColumnCanDropAsLoot.ColumnName = "CanDropAsLoot";
            dataColumnCanDropAsLoot.DataType = typeof(bool);
            dataColumnCanDropAsLoot.DefaultValue = true;
            // 
            // dataColumnBonus6Type
            // 
            dataColumnBonus6Type.ColumnName = "Bonus6Type";
            dataColumnBonus6Type.DataType = typeof(int);
            dataColumnBonus6Type.DefaultValue = 0;
            // 
            // dataColumnBonus6
            // 
            dataColumnBonus6.ColumnName = "Bonus6";
            dataColumnBonus6.DataType = typeof(int);
            dataColumnBonus6.DefaultValue = 0;
            // 
            // dataColumnBonus7Type
            // 
            dataColumnBonus7Type.ColumnName = "Bonus7Type";
            dataColumnBonus7Type.DataType = typeof(int);
            dataColumnBonus7Type.DefaultValue = 0;
            // 
            // dataColumnBonus7
            // 
            dataColumnBonus7.ColumnName = "Bonus7";
            dataColumnBonus7.DataType = typeof(int);
            dataColumnBonus7.DefaultValue = 0;
            // 
            // dataColumnBonus8Type
            // 
            dataColumnBonus8Type.ColumnName = "Bonus8Type";
            dataColumnBonus8Type.DataType = typeof(int);
            dataColumnBonus8Type.DefaultValue = 0;
            // 
            // dataColumnBonus8
            // 
            dataColumnBonus8.ColumnName = "Bonus8";
            dataColumnBonus8.DataType = typeof(int);
            dataColumnBonus8.DefaultValue = 0;
            // 
            // dataColumnBonus9Type
            // 
            dataColumnBonus9Type.ColumnName = "Bonus9Type";
            dataColumnBonus9Type.DataType = typeof(int);
            dataColumnBonus9Type.DefaultValue = 0;
            // 
            // dataColumnBonus9
            // 
            dataColumnBonus9.ColumnName = "Bonus9";
            dataColumnBonus9.DataType = typeof(int);
            dataColumnBonus9.DefaultValue = 0;
            // 
            // dataColumnBonus10Type
            // 
            dataColumnBonus10Type.ColumnName = "Bonus10Type";
            dataColumnBonus10Type.DataType = typeof(int);
            dataColumnBonus10Type.DefaultValue = 0;
            // 
            // dataColumnBonus10
            // 
            dataColumnBonus10.ColumnName = "Bonus10";
            dataColumnBonus10.DataType = typeof(int);
            dataColumnBonus10.DefaultValue = 0;
            // 
            // dataColumn59
            // 
            dataColumn59.ColumnName = "BodyType";
            dataColumn59.DataType = typeof(int);
            dataColumn59.DefaultValue = 0;
            // 
            // dataColumn66
            // 
            dataColumn66.ColumnName = "NPCTemplateID";
            dataColumn66.DataType = typeof(int);
            // 
            // dataColumnPlatinum
            // 
            dataColumnPlatinum.ColumnName = "Platinum";
            dataColumnPlatinum.DataType = typeof(int);
            dataColumnPlatinum.DefaultValue = 0;
            // 
            // dataColumnQuestDate
            // 
            dataColumnQuestDate.ColumnName = "Date";
            dataColumnQuestDate.DataType = typeof(System.DateTime);
            // 
            // dataColumn26
            // 
            dataColumn26.AllowDBNull = false;
            dataColumn26.ColumnName = "Category";
            dataColumn26.DefaultValue = "";
            // 
            // dataColumn33
            // 
            dataColumn33.AllowDBNull = false;
            dataColumn33.Caption = "Category";
            dataColumn33.ColumnName = "category";
            dataColumn33.DefaultValue = "";
            // 
            // dataColumn34
            // 
            dataColumn34.AllowDBNull = false;
            dataColumn34.Caption = "Category";
            dataColumn34.ColumnName = "category";
            dataColumn34.DefaultValue = "";
            // 
            // dataColumn35
            // 
            dataColumn35.AllowDBNull = false;
            dataColumn35.Caption = "Category";
            dataColumn35.ColumnName = "category";
            dataColumn35.DefaultValue = "";
            // 
            // dataColumnQuestID
            // 
            dataColumnQuestID.AllowDBNull = false;
            dataColumnQuestID.AutoIncrement = true;
            dataColumnQuestID.ColumnName = "ID";
            dataColumnQuestID.DataType = typeof(int);
            // 
            // dataColumnQuestName
            // 
            dataColumnQuestName.ColumnName = "Name";
            // 
            // dataColumnQuestAuthor
            // 
            dataColumnQuestAuthor.ColumnName = "Author";
            // 
            // dataColumnQuestVersion
            // 
            dataColumnQuestVersion.ColumnName = "Version";
            dataColumnQuestVersion.DefaultValue = "0";
            // 
            // dataColumnQuestDescription
            // 
            dataColumnQuestDescription.ColumnName = "Description";
            // 
            // dataColumn14
            // 
            dataColumn14.ColumnName = "Title";
            // 
            // dataColumnMinimumLevel
            // 
            dataColumnMinimumLevel.ColumnName = "MinimumLevel";
            dataColumnMinimumLevel.DataType = typeof(int);
            dataColumnMinimumLevel.DefaultValue = 1;
            // 
            // dataColumnMaximumLevel
            // 
            dataColumnMaximumLevel.ColumnName = "MaximumLevel";
            dataColumnMaximumLevel.DataType = typeof(int);
            dataColumnMaximumLevel.DefaultValue = 1;
            // 
            // dataColumnInvintingNPC
            // 
            dataColumnInvintingNPC.ColumnName = "InvitingNPC";
            // 
            // dataColumn41
            // 
            dataColumn41.AllowDBNull = false;
            dataColumn41.ColumnName = "Namespace";
            dataColumn41.DefaultValue = "DOL.GS.Quests";
            // 
            // dataColumn62
            // 
            dataColumn62.ColumnName = "MaxQuestCount";
            dataColumn62.DefaultValue = "1";
            // 
            // dataColumn63
            // 
            dataColumn63.ColumnName = "ScriptLoadedCode";
            // 
            // dataColumn64
            // 
            dataColumn64.ColumnName = "ScriptUnloadedCode";
            // 
            // dataColumn65
            // 
            dataColumn65.ColumnName = "InitializationCode";
            // 
            // dataColumn36
            // 
            dataColumn36.ColumnName = "CheckQuestQualificationCode";
            // 
            // dataColumn37
            // 
            dataColumn37.AllowDBNull = false;
            dataColumn37.ColumnName = "CategoryAutoGenerate";
            dataColumn37.DataType = typeof(bool);
            dataColumn37.DefaultValue = true;
            // 
            // dataColumn39
            // 
            dataColumn39.ColumnName = "Sound";
            dataColumn39.DataType = typeof(int);
            // 
            // dataColumn40
            // 
            dataColumn40.AllowDBNull = false;
            dataColumn40.ColumnName = "IsSafeArea";
            dataColumn40.DataType = typeof(bool);
            dataColumn40.DefaultValue = false;
            // 
            // dataColumn42
            // 
            dataColumn42.AllowDBNull = false;
            dataColumn42.ColumnName = "CanBroadcast";
            dataColumn42.DataType = typeof(bool);
            dataColumn42.DefaultValue = false;
            // 
            // dataColumn43
            // 
            dataColumn43.AllowDBNull = false;
            dataColumn43.ColumnName = "DisplayMessage";
            dataColumn43.DataType = typeof(bool);
            dataColumn43.DefaultValue = true;
            // 
            // toolStripContainerForm
            // 
            this.toolStripContainerForm.AccessibleDescription = null;
            this.toolStripContainerForm.AccessibleName = null;
            resources.ApplyResources(this.toolStripContainerForm, "toolStripContainerForm");
            // 
            // toolStripContainerForm.BottomToolStripPanel
            // 
            this.toolStripContainerForm.BottomToolStripPanel.AccessibleDescription = null;
            this.toolStripContainerForm.BottomToolStripPanel.AccessibleName = null;
            this.toolStripContainerForm.BottomToolStripPanel.BackgroundImage = null;
            resources.ApplyResources(this.toolStripContainerForm.BottomToolStripPanel, "toolStripContainerForm.BottomToolStripPanel");
            this.toolStripContainerForm.BottomToolStripPanel.Controls.Add(this.statusStrip);
            this.toolStripContainerForm.BottomToolStripPanel.Font = null;
            this.toolTip.SetToolTip(this.toolStripContainerForm.BottomToolStripPanel, resources.GetString("toolStripContainerForm.BottomToolStripPanel.ToolTip"));
            // 
            // toolStripContainerForm.ContentPanel
            // 
            this.toolStripContainerForm.ContentPanel.AccessibleDescription = null;
            this.toolStripContainerForm.ContentPanel.AccessibleName = null;
            resources.ApplyResources(this.toolStripContainerForm.ContentPanel, "toolStripContainerForm.ContentPanel");
            this.toolStripContainerForm.ContentPanel.BackgroundImage = null;
            this.toolStripContainerForm.ContentPanel.Controls.Add(this.tabControlMain);
            this.toolStripContainerForm.ContentPanel.Controls.Add(this.xpTaskPane);
            this.toolStripContainerForm.ContentPanel.Font = null;
            this.toolTip.SetToolTip(this.toolStripContainerForm.ContentPanel, resources.GetString("toolStripContainerForm.ContentPanel.ToolTip"));
            this.toolStripContainerForm.Font = null;
            // 
            // toolStripContainerForm.LeftToolStripPanel
            // 
            this.toolStripContainerForm.LeftToolStripPanel.AccessibleDescription = null;
            this.toolStripContainerForm.LeftToolStripPanel.AccessibleName = null;
            this.toolStripContainerForm.LeftToolStripPanel.BackgroundImage = null;
            resources.ApplyResources(this.toolStripContainerForm.LeftToolStripPanel, "toolStripContainerForm.LeftToolStripPanel");
            this.toolStripContainerForm.LeftToolStripPanel.Font = null;
            this.toolTip.SetToolTip(this.toolStripContainerForm.LeftToolStripPanel, resources.GetString("toolStripContainerForm.LeftToolStripPanel.ToolTip"));
            this.toolStripContainerForm.Name = "toolStripContainerForm";
            // 
            // toolStripContainerForm.RightToolStripPanel
            // 
            this.toolStripContainerForm.RightToolStripPanel.AccessibleDescription = null;
            this.toolStripContainerForm.RightToolStripPanel.AccessibleName = null;
            this.toolStripContainerForm.RightToolStripPanel.BackgroundImage = null;
            resources.ApplyResources(this.toolStripContainerForm.RightToolStripPanel, "toolStripContainerForm.RightToolStripPanel");
            this.toolStripContainerForm.RightToolStripPanel.Font = null;
            this.toolTip.SetToolTip(this.toolStripContainerForm.RightToolStripPanel, resources.GetString("toolStripContainerForm.RightToolStripPanel.ToolTip"));
            this.toolTip.SetToolTip(this.toolStripContainerForm, resources.GetString("toolStripContainerForm.ToolTip"));
            // 
            // toolStripContainerForm.TopToolStripPanel
            // 
            this.toolStripContainerForm.TopToolStripPanel.AccessibleDescription = null;
            this.toolStripContainerForm.TopToolStripPanel.AccessibleName = null;
            this.toolStripContainerForm.TopToolStripPanel.BackgroundImage = null;
            resources.ApplyResources(this.toolStripContainerForm.TopToolStripPanel, "toolStripContainerForm.TopToolStripPanel");
            this.toolStripContainerForm.TopToolStripPanel.Controls.Add(this.menuStripMain);
            this.toolStripContainerForm.TopToolStripPanel.Font = null;
            this.toolTip.SetToolTip(this.toolStripContainerForm.TopToolStripPanel, resources.GetString("toolStripContainerForm.TopToolStripPanel.ToolTip"));
            // 
            // statusStrip
            // 
            this.statusStrip.AccessibleDescription = null;
            this.statusStrip.AccessibleName = null;
            resources.ApplyResources(this.statusStrip, "statusStrip");
            this.statusStrip.BackgroundImage = null;
            this.statusStrip.Font = null;
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusIcon,
            this.StatusLabel,
            this.StatusProgress});
            this.statusStrip.Name = "statusStrip";
            this.toolTip.SetToolTip(this.statusStrip, resources.GetString("statusStrip.ToolTip"));
            // 
            // StatusIcon
            // 
            this.StatusIcon.AccessibleDescription = null;
            this.StatusIcon.AccessibleName = null;
            resources.ApplyResources(this.StatusIcon, "StatusIcon");
            this.StatusIcon.BackgroundImage = null;
            this.StatusIcon.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.StatusIcon.Name = "StatusIcon";
            // 
            // StatusLabel
            // 
            this.StatusLabel.AccessibleDescription = null;
            this.StatusLabel.AccessibleName = null;
            resources.ApplyResources(this.StatusLabel, "StatusLabel");
            this.StatusLabel.BackgroundImage = null;
            this.StatusLabel.Name = "StatusLabel";
            this.StatusLabel.Spring = true;
            this.StatusLabel.Click += new System.EventHandler(this.StatusLabel_Click);
            // 
            // StatusProgress
            // 
            this.StatusProgress.AccessibleDescription = null;
            this.StatusProgress.AccessibleName = null;
            resources.ApplyResources(this.StatusProgress, "StatusProgress");
            this.StatusProgress.Name = "StatusProgress";
            // 
            // tabControlMain
            // 
            this.tabControlMain.AccessibleDescription = null;
            this.tabControlMain.AccessibleName = null;
            resources.ApplyResources(this.tabControlMain, "tabControlMain");
            this.tabControlMain.Appearance = NETXP.Controls.Docking.TabPosition.Top;
            this.tabControlMain.BackgroundImage = null;
            this.tabControlMain.BoldSelectedPage = true;
            this.tabControlMain.Font = null;
            this.tabControlMain.Name = "tabControlMain";
            this.tabControlMain.PixelArea = true;
            this.tabControlMain.PixelBorder = true;
            this.tabControlMain.PositionTop = true;
            office20031.ColorTable = dynamicColorTable1;
            this.tabControlMain.Renderer = office20031;
            this.tabControlMain.ShowArrows = true;
            this.tabControlMain.ShowClose = false;
            this.tabControlMain.ShrinkPagesToFit = false;
            this.tabControlMain.TabPages.AddRange(new NETXP.Controls.Docking.TabPage[] {
            this.tabPageQuest,
            this.tabPageNPC,
            this.tabPageItem,
            this.tabPageQuestPart,
            this.tabPageArea,
            this.tabPageLocation,
            this.tabPageCode,
            this.tabPageMap,
            this.tabPageWeb});
            this.toolTip.SetToolTip(this.tabControlMain, resources.GetString("tabControlMain.ToolTip"));
            this.tabControlMain.SelectionChanged += new System.EventHandler(this.tabControlMain_SelectionChanged);
            // 
            // tabPageQuest
            // 
            this.tabPageQuest.AccessibleDescription = null;
            this.tabPageQuest.AccessibleName = null;
            resources.ApplyResources(this.tabPageQuest, "tabPageQuest");
            this.tabPageQuest.BackgroundImage = null;
            this.tabPageQuest.Controls.Add(this.questInfo);
            this.tabPageQuest.Icon = null;
            this.tabPageQuest.Name = "tabPageQuest";
            this.toolTip.SetToolTip(this.tabPageQuest, resources.GetString("tabPageQuest.ToolTip"));
            // 
            // questInfo
            // 
            this.questInfo.AccessibleDescription = null;
            this.questInfo.AccessibleName = null;
            resources.ApplyResources(this.questInfo, "questInfo");
            this.questInfo.BackgroundImage = null;
            this.questInfo.Font = null;
            this.questInfo.Name = "questInfo";
            this.toolTip.SetToolTip(this.questInfo, resources.GetString("questInfo.ToolTip"));
            // 
            // tabPageNPC
            // 
            this.tabPageNPC.AccessibleDescription = null;
            this.tabPageNPC.AccessibleName = null;
            resources.ApplyResources(this.tabPageNPC, "tabPageNPC");
            this.tabPageNPC.BackgroundImage = null;
            this.tabPageNPC.Controls.Add(this.npcView);
            this.tabPageNPC.Icon = null;
            this.tabPageNPC.Name = "tabPageNPC";
            this.toolTip.SetToolTip(this.tabPageNPC, resources.GetString("tabPageNPC.ToolTip"));
            // 
            // npcView
            // 
            this.npcView.AccessibleDescription = null;
            this.npcView.AccessibleName = null;
            resources.ApplyResources(this.npcView, "npcView");
            this.npcView.BackgroundImage = null;
            this.npcView.Font = null;
            this.npcView.Name = "npcView";
            this.toolTip.SetToolTip(this.npcView, resources.GetString("npcView.ToolTip"));
            // 
            // tabPageItem
            // 
            this.tabPageItem.AccessibleDescription = null;
            this.tabPageItem.AccessibleName = null;
            resources.ApplyResources(this.tabPageItem, "tabPageItem");
            this.tabPageItem.BackgroundImage = null;
            this.tabPageItem.Controls.Add(this.itemView);
            this.tabPageItem.Icon = null;
            this.tabPageItem.Name = "tabPageItem";
            this.toolTip.SetToolTip(this.tabPageItem, resources.GetString("tabPageItem.ToolTip"));
            // 
            // itemView
            // 
            this.itemView.AccessibleDescription = null;
            this.itemView.AccessibleName = null;
            resources.ApplyResources(this.itemView, "itemView");
            this.itemView.BackgroundImage = null;
            this.itemView.Font = null;
            this.itemView.Name = "itemView";
            this.toolTip.SetToolTip(this.itemView, resources.GetString("itemView.ToolTip"));
            // 
            // tabPageQuestPart
            // 
            this.tabPageQuestPart.AccessibleDescription = null;
            this.tabPageQuestPart.AccessibleName = null;
            resources.ApplyResources(this.tabPageQuestPart, "tabPageQuestPart");
            this.tabPageQuestPart.BackgroundImage = null;
            this.tabPageQuestPart.Controls.Add(this.questPartItems);
            this.tabPageQuestPart.Icon = null;
            this.tabPageQuestPart.Name = "tabPageQuestPart";
            this.toolTip.SetToolTip(this.tabPageQuestPart, resources.GetString("tabPageQuestPart.ToolTip"));
            // 
            // questPartItems
            // 
            this.questPartItems.AccessibleDescription = null;
            this.questPartItems.AccessibleName = null;
            this.questPartItems.ActionColor = System.Drawing.Color.RosyBrown;
            this.questPartItems.ActionSelectedColor = System.Drawing.Color.OrangeRed;
            resources.ApplyResources(this.questPartItems, "questPartItems");
            this.questPartItems.BackgroundImage = null;
            this.questPartItems.Font = null;
            this.questPartItems.ForeColor = System.Drawing.Color.Gray;
            this.questPartItems.ForeColorSelected = System.Drawing.Color.Black;
            this.questPartItems.Name = "questPartItems";
            this.questPartItems.QuestPartRow = null;
            this.questPartItems.RequirementColor = System.Drawing.Color.Tan;
            this.questPartItems.RequirementSelectedColor = System.Drawing.Color.Orange;
            this.toolTip.SetToolTip(this.questPartItems, resources.GetString("questPartItems.ToolTip"));
            this.questPartItems.TriggerColor = System.Drawing.Color.Olive;
            this.questPartItems.TriggerSelectedColor = System.Drawing.Color.Green;
            // 
            // tabPageArea
            // 
            this.tabPageArea.AccessibleDescription = null;
            this.tabPageArea.AccessibleName = null;
            resources.ApplyResources(this.tabPageArea, "tabPageArea");
            this.tabPageArea.BackgroundImage = null;
            this.tabPageArea.Controls.Add(this.areaView);
            this.tabPageArea.Icon = null;
            this.tabPageArea.Name = "tabPageArea";
            this.toolTip.SetToolTip(this.tabPageArea, resources.GetString("tabPageArea.ToolTip"));
            // 
            // areaView
            // 
            this.areaView.AccessibleDescription = null;
            this.areaView.AccessibleName = null;
            resources.ApplyResources(this.areaView, "areaView");
            this.areaView.BackgroundImage = null;
            this.areaView.Font = null;
            this.areaView.Name = "areaView";
            this.toolTip.SetToolTip(this.areaView, resources.GetString("areaView.ToolTip"));
            // 
            // tabPageLocation
            // 
            this.tabPageLocation.AccessibleDescription = null;
            this.tabPageLocation.AccessibleName = null;
            resources.ApplyResources(this.tabPageLocation, "tabPageLocation");
            this.tabPageLocation.BackgroundImage = null;
            this.tabPageLocation.Controls.Add(this.locationView);
            this.tabPageLocation.Icon = null;
            this.tabPageLocation.Name = "tabPageLocation";
            this.toolTip.SetToolTip(this.tabPageLocation, resources.GetString("tabPageLocation.ToolTip"));
            // 
            // locationView
            // 
            this.locationView.AccessibleDescription = null;
            this.locationView.AccessibleName = null;
            resources.ApplyResources(this.locationView, "locationView");
            this.locationView.BackgroundImage = null;
            this.locationView.Font = null;
            this.locationView.Name = "locationView";
            this.toolTip.SetToolTip(this.locationView, resources.GetString("locationView.ToolTip"));
            // 
            // tabPageCode
            // 
            this.tabPageCode.AccessibleDescription = null;
            this.tabPageCode.AccessibleName = null;
            resources.ApplyResources(this.tabPageCode, "tabPageCode");
            this.tabPageCode.BackgroundImage = null;
            this.tabPageCode.Controls.Add(this.customCode);
            this.tabPageCode.Icon = null;
            this.tabPageCode.Name = "tabPageCode";
            this.toolTip.SetToolTip(this.tabPageCode, resources.GetString("tabPageCode.ToolTip"));
            // 
            // customCode
            // 
            this.customCode.AccessibleDescription = null;
            this.customCode.AccessibleName = null;
            resources.ApplyResources(this.customCode, "customCode");
            this.customCode.BackgroundImage = null;
            this.customCode.Font = null;
            this.customCode.Name = "customCode";
            this.toolTip.SetToolTip(this.customCode, resources.GetString("customCode.ToolTip"));
            // 
            // tabPageMap
            // 
            this.tabPageMap.AccessibleDescription = null;
            this.tabPageMap.AccessibleName = null;
            resources.ApplyResources(this.tabPageMap, "tabPageMap");
            this.tabPageMap.BackgroundImage = null;
            this.tabPageMap.Controls.Add(this.DXControl);
            this.tabPageMap.Icon = null;
            this.tabPageMap.Name = "tabPageMap";
            this.toolTip.SetToolTip(this.tabPageMap, resources.GetString("tabPageMap.ToolTip"));
            // 
            // DXControl
            // 
            this.DXControl.AccessibleDescription = null;
            this.DXControl.AccessibleName = null;
            resources.ApplyResources(this.DXControl, "DXControl");
            this.DXControl.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
            this.DXControl.BackgroundImage = null;
            this.DXControl.Cursor = System.Windows.Forms.Cursors.Default;
            this.DXControl.Font = null;
            this.DXControl.Name = "DXControl";
            this.toolTip.SetToolTip(this.DXControl, resources.GetString("DXControl.ToolTip"));
            // 
            // tabPageWeb
            // 
            this.tabPageWeb.AccessibleDescription = null;
            this.tabPageWeb.AccessibleName = null;
            resources.ApplyResources(this.tabPageWeb, "tabPageWeb");
            this.tabPageWeb.BackgroundImage = null;
            this.tabPageWeb.Controls.Add(this.webBrowser1);
            this.tabPageWeb.Icon = null;
            this.tabPageWeb.Name = "tabPageWeb";
            this.toolTip.SetToolTip(this.tabPageWeb, resources.GetString("tabPageWeb.ToolTip"));
            // 
            // webBrowser1
            // 
            this.webBrowser1.AccessibleDescription = null;
            this.webBrowser1.AccessibleName = null;
            resources.ApplyResources(this.webBrowser1, "webBrowser1");
            this.webBrowser1.BackgroundImage = null;
            this.webBrowser1.Font = null;
            this.webBrowser1.Name = "webBrowser1";
            this.toolTip.SetToolTip(this.webBrowser1, resources.GetString("webBrowser1.ToolTip"));
            // 
            // xpTaskPane
            // 
            this.xpTaskPane.AccessibleDescription = null;
            this.xpTaskPane.AccessibleName = null;
            resources.ApplyResources(this.xpTaskPane, "xpTaskPane");
            this.xpTaskPane.BackgroundImage = null;
            this.xpTaskPane.ColorTable = dynamicColorTable2;
            this.xpTaskPane.Controls.Add(this.xpTGQuestPart);
            this.xpTaskPane.Controls.Add(this.xpTGActions);
            this.xpTaskPane.DataBindings.Add(new System.Windows.Forms.Binding("Visible", global::DOL.Tools.QuestDesigner.Properties.Settings.Default, "ShowTaskPane", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.xpTaskPane.Font = null;
            this.xpTaskPane.Name = "xpTaskPane";
            this.toolTip.SetToolTip(this.xpTaskPane, resources.GetString("xpTaskPane.ToolTip"));
            this.xpTaskPane.Visible = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.ShowTaskPane;
            // 
            // xpTGQuestPart
            // 
            this.xpTGQuestPart.AccessibleDescription = null;
            this.xpTGQuestPart.AccessibleName = null;
            resources.ApplyResources(this.xpTGQuestPart, "xpTGQuestPart");
            this.xpTGQuestPart.BackgroundImage = null;
            this.xpTGQuestPart.ColorTable = dynamicColorTable2;
            this.xpTGQuestPart.Font = null;
            this.xpTGQuestPart.Image = null;
            this.xpTGQuestPart.Name = "xpTGQuestPart";
            this.toolTip.SetToolTip(this.xpTGQuestPart, resources.GetString("xpTGQuestPart.ToolTip"));
            // 
            // xpTGActions
            // 
            this.xpTGActions.AccessibleDescription = null;
            this.xpTGActions.AccessibleName = null;
            resources.ApplyResources(this.xpTGActions, "xpTGActions");
            this.xpTGActions.BackgroundImage = null;
            this.xpTGActions.ColorTable = dynamicColorTable2;
            this.xpTGActions.Controls.Add(this.linkLabelNewQuest);
            this.xpTGActions.Controls.Add(this.linkSaveQuest);
            this.xpTGActions.Controls.Add(this.linkLoadQuest);
            this.xpTGActions.Font = null;
            this.xpTGActions.Name = "xpTGActions";
            this.xpTGActions.SpecialTasks = true;
            this.toolTip.SetToolTip(this.xpTGActions, resources.GetString("xpTGActions.ToolTip"));
            // 
            // linkLabelNewQuest
            // 
            this.linkLabelNewQuest.AccessibleDescription = null;
            this.linkLabelNewQuest.AccessibleName = null;
            resources.ApplyResources(this.linkLabelNewQuest, "linkLabelNewQuest");
            this.linkLabelNewQuest.Font = null;
            this.linkLabelNewQuest.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.add;
            this.linkLabelNewQuest.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
            this.linkLabelNewQuest.Name = "linkLabelNewQuest";
            this.linkLabelNewQuest.TabStop = true;
            this.toolTip.SetToolTip(this.linkLabelNewQuest, resources.GetString("linkLabelNewQuest.ToolTip"));
            this.linkLabelNewQuest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelNewQuest_LinkClicked);
            // 
            // linkSaveQuest
            // 
            this.linkSaveQuest.AccessibleDescription = null;
            this.linkSaveQuest.AccessibleName = null;
            resources.ApplyResources(this.linkSaveQuest, "linkSaveQuest");
            this.linkSaveQuest.Font = null;
            this.linkSaveQuest.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.save;
            this.linkSaveQuest.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
            this.linkSaveQuest.Name = "linkSaveQuest";
            this.linkSaveQuest.TabStop = true;
            this.toolTip.SetToolTip(this.linkSaveQuest, resources.GetString("linkSaveQuest.ToolTip"));
            this.linkSaveQuest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkSaveQuest_LinkClicked);
            // 
            // linkLoadQuest
            // 
            this.linkLoadQuest.AccessibleDescription = null;
            this.linkLoadQuest.AccessibleName = null;
            resources.ApplyResources(this.linkLoadQuest, "linkLoadQuest");
            this.linkLoadQuest.Font = null;
            this.linkLoadQuest.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.quest;
            this.linkLoadQuest.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
            this.linkLoadQuest.Name = "linkLoadQuest";
            this.linkLoadQuest.TabStop = true;
            this.toolTip.SetToolTip(this.linkLoadQuest, resources.GetString("linkLoadQuest.ToolTip"));
            this.linkLoadQuest.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLoadQuest_LinkClicked);
            // 
            // menuStripMain
            // 
            this.menuStripMain.AccessibleDescription = null;
            this.menuStripMain.AccessibleName = null;
            resources.ApplyResources(this.menuStripMain, "menuStripMain");
            this.menuStripMain.BackgroundImage = null;
            this.menuStripMain.Font = null;
            this.menuStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.toolsToolStripMenuItem,
            this.toolStripMenuItem1});
            this.menuStripMain.Name = "menuStripMain";
            this.toolTip.SetToolTip(this.menuStripMain, resources.GetString("menuStripMain.ToolTip"));
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.AccessibleDescription = null;
            this.fileToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
            this.fileToolStripMenuItem.BackgroundImage = null;
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openToolStripMenuItem,
            this.toolStripSeparator,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.toolStripSeparator1,
            this.createToolStripMenuItem,
            this.toolStripSeparator2,
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.ShortcutKeyDisplayString = null;
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.AccessibleDescription = null;
            this.newToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.newToolStripMenuItem, "newToolStripMenuItem");
            this.newToolStripMenuItem.BackgroundImage = null;
            this.newToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.newDocument;
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.AccessibleDescription = null;
            this.openToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.openToolStripMenuItem, "openToolStripMenuItem");
            this.openToolStripMenuItem.BackgroundImage = null;
            this.openToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.open;
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // toolStripSeparator
            // 
            this.toolStripSeparator.AccessibleDescription = null;
            this.toolStripSeparator.AccessibleName = null;
            resources.ApplyResources(this.toolStripSeparator, "toolStripSeparator");
            this.toolStripSeparator.Name = "toolStripSeparator";
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.AccessibleDescription = null;
            this.saveToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.saveToolStripMenuItem, "saveToolStripMenuItem");
            this.saveToolStripMenuItem.BackgroundImage = null;
            this.saveToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.save;
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
            // 
            // saveAsToolStripMenuItem
            // 
            this.saveAsToolStripMenuItem.AccessibleDescription = null;
            this.saveAsToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.saveAsToolStripMenuItem, "saveAsToolStripMenuItem");
            this.saveAsToolStripMenuItem.BackgroundImage = null;
            this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
            this.saveAsToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.AccessibleDescription = null;
            this.toolStripSeparator1.AccessibleName = null;
            resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            // 
            // createToolStripMenuItem
            // 
            this.createToolStripMenuItem.AccessibleDescription = null;
            this.createToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.createToolStripMenuItem, "createToolStripMenuItem");
            this.createToolStripMenuItem.BackgroundImage = null;
            this.createToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.create;
            this.createToolStripMenuItem.Name = "createToolStripMenuItem";
            this.createToolStripMenuItem.ShortcutKeyDisplayString = null;
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.AccessibleDescription = null;
            this.toolStripSeparator2.AccessibleName = null;
            resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.AccessibleDescription = null;
            this.exitToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
            this.exitToolStripMenuItem.BackgroundImage = null;
            this.exitToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.delete;
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.AccessibleDescription = null;
            this.viewToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.viewToolStripMenuItem, "viewToolStripMenuItem");
            this.viewToolStripMenuItem.BackgroundImage = null;
            this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItemTaskPane});
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.ShortcutKeyDisplayString = null;
            // 
            // toolStripMenuItemTaskPane
            // 
            this.toolStripMenuItemTaskPane.AccessibleDescription = null;
            this.toolStripMenuItemTaskPane.AccessibleName = null;
            resources.ApplyResources(this.toolStripMenuItemTaskPane, "toolStripMenuItemTaskPane");
            this.toolStripMenuItemTaskPane.BackgroundImage = null;
            this.toolStripMenuItemTaskPane.Checked = true;
            this.toolStripMenuItemTaskPane.CheckOnClick = true;
            this.toolStripMenuItemTaskPane.CheckState = System.Windows.Forms.CheckState.Checked;
            this.toolStripMenuItemTaskPane.Name = "toolStripMenuItemTaskPane";
            this.toolStripMenuItemTaskPane.ShortcutKeyDisplayString = null;
            this.toolStripMenuItemTaskPane.CheckStateChanged += new System.EventHandler(this.toolStripMenuItemTaskPane_CheckStateChanged);
            // 
            // toolsToolStripMenuItem
            // 
            this.toolsToolStripMenuItem.AccessibleDescription = null;
            this.toolsToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.toolsToolStripMenuItem, "toolsToolStripMenuItem");
            this.toolsToolStripMenuItem.BackgroundImage = null;
            this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.positionConverterToolStripMenuItem,
            this.dataDownloadToolStripMenuItem});
            this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
            this.toolsToolStripMenuItem.ShortcutKeyDisplayString = null;
            // 
            // positionConverterToolStripMenuItem
            // 
            this.positionConverterToolStripMenuItem.AccessibleDescription = null;
            this.positionConverterToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.positionConverterToolStripMenuItem, "positionConverterToolStripMenuItem");
            this.positionConverterToolStripMenuItem.BackgroundImage = null;
            this.positionConverterToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.globe;
            this.positionConverterToolStripMenuItem.Name = "positionConverterToolStripMenuItem";
            this.positionConverterToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.positionConverterToolStripMenuItem.Click += new System.EventHandler(this.positionConverterToolStripMenuItem_Click);
            // 
            // dataDownloadToolStripMenuItem
            // 
            this.dataDownloadToolStripMenuItem.AccessibleDescription = null;
            this.dataDownloadToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.dataDownloadToolStripMenuItem, "dataDownloadToolStripMenuItem");
            this.dataDownloadToolStripMenuItem.BackgroundImage = null;
            this.dataDownloadToolStripMenuItem.Name = "dataDownloadToolStripMenuItem";
            this.dataDownloadToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.dataDownloadToolStripMenuItem.Click += new System.EventHandler(this.dataDownloadToolStripMenuItem_Click);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.AccessibleDescription = null;
            this.toolStripMenuItem1.AccessibleName = null;
            resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
            this.toolStripMenuItem1.BackgroundImage = null;
            this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.aboutToolStripMenuItem,
            this.creditsToolStripMenuItem});
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.ShortcutKeyDisplayString = null;
            // 
            // aboutToolStripMenuItem
            // 
            this.aboutToolStripMenuItem.AccessibleDescription = null;
            this.aboutToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem");
            this.aboutToolStripMenuItem.BackgroundImage = null;
            this.aboutToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.questpart;
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            this.aboutToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            // 
            // creditsToolStripMenuItem
            // 
            this.creditsToolStripMenuItem.AccessibleDescription = null;
            this.creditsToolStripMenuItem.AccessibleName = null;
            resources.ApplyResources(this.creditsToolStripMenuItem, "creditsToolStripMenuItem");
            this.creditsToolStripMenuItem.BackgroundImage = null;
            this.creditsToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.info;
            this.creditsToolStripMenuItem.Name = "creditsToolStripMenuItem";
            this.creditsToolStripMenuItem.ShortcutKeyDisplayString = null;
            this.creditsToolStripMenuItem.Click += new System.EventHandler(this.creditsToolStripMenuItem_Click);
            // 
            // dataSetQuest
            // 
            this.dataSetQuest.DataSetName = "Quest";
            this.dataSetQuest.EnforceConstraints = false;
            this.dataSetQuest.Relations.AddRange(new System.Data.DataRelation[] {
            new System.Data.DataRelation("QuestPartXQuestTrigger", "QuestPart", "QuestPartTrigger", new string[] {
                        "ID"}, new string[] {
                        "QuestPartID"}, true),
            new System.Data.DataRelation("QuestPartXQuestRequirement", "QuestPart", "QuestPartRequirement", new string[] {
                        "ID"}, new string[] {
                        "QuestPartID"}, true),
            new System.Data.DataRelation("QuestPartXQuestAction", "QuestPart", "QuestPartAction", new string[] {
                        "ID"}, new string[] {
                        "QuestPartID"}, true)});
            this.dataSetQuest.Tables.AddRange(new System.Data.DataTable[] {
            this.dataTableQuestPart,
            this.dataTableTrigger,
            this.dataTableRequirement,
            this.dataTableAction,
            this.dataTableQuest,
            this.dataTableMob,
            this.dataTableItemTemplate,
            this.dataTableQuestStep,
            this.dataTableArea,
            this.dataTableLocation,
            dataTableQuestCharacterClass});
            this.dataSetQuest.Initialized += new System.EventHandler(this.dataSetQuest_Initialized);
            // 
            // dataTableQuestPart
            // 
            this.dataTableQuestPart.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnQuestPartIF,
            dataColumnDefaultNPC,
            dataColumn23,
            dataColumn26,
            dataColumn37,
            this.dataColumn38});
            this.dataTableQuestPart.TableName = "QuestPart";
            // 
            // dataColumn38
            // 
            this.dataColumn38.AllowDBNull = false;
            this.dataColumn38.ColumnName = "MaxExecutions";
            this.dataColumn38.DataType = typeof(int);
            this.dataColumn38.DefaultValue = -1;
            // 
            // dataTableTrigger
            // 
            this.dataTableTrigger.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnTriggerQuestPart,
            dataColumnTriggerType,
            dataColumnTriggerKeyword,
            dataColumnTriggerObject,
            dataColumnQuestTriggerID,
            this.dataColumn29});
            this.dataTableTrigger.TableName = "QuestPartTrigger";
            // 
            // dataColumn29
            // 
            this.dataColumn29.ColumnName = "TypeName";
            // 
            // dataTableRequirement
            // 
            this.dataTableRequirement.Columns.AddRange(new System.Data.DataColumn[] {
            datacolumnquestPartID,
            dataColumnRequirmentType,
            dataColumnRequirmeentN,
            dataColumnRequirementV,
            dataColumnRequirementComparator,
            dataColumnRequirementID,
            this.dataColumn30});
            this.dataTableRequirement.TableName = "QuestPartRequirement";
            // 
            // dataColumn30
            // 
            this.dataColumn30.ColumnName = "TypeName";
            // 
            // dataTableAction
            // 
            this.dataTableAction.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnActionQuestPartID,
            dataColumnActionType,
            dataColumnActionP,
            dataColumnActionQ,
            dataColumn1,
            this.dataColumn31});
            this.dataTableAction.TableName = "QuestPartAction";
            // 
            // dataColumn31
            // 
            this.dataColumn31.ColumnName = "TypeName";
            // 
            // dataTableQuest
            // 
            this.dataTableQuest.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnQuestID,
            dataColumnQuestName,
            dataColumnQuestAuthor,
            dataColumnQuestDate,
            dataColumnQuestVersion,
            dataColumnQuestDescription,
            dataColumn14,
            dataColumnMinimumLevel,
            dataColumnMaximumLevel,
            dataColumnInvintingNPC,
            dataColumn41,
            dataColumn62,
            dataColumn63,
            dataColumn64,
            dataColumn65,
            dataColumn36});
            this.dataTableQuest.TableName = "Quest";
            // 
            // dataTableMob
            // 
            this.dataTableMob.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnName,
            this.dataColumnModel,
            this.dataColumnGuildName,
            this.dataColumnLevel,
            this.dataColumnX,
            this.dataColumnY,
            this.dataColumnZ,
            this.dataColumnRegion,
            this.dataColumnMobID,
            this.dataColumnClassType,
            this.dataColumnSpeed,
            this.dataColumnHeading,
            this.dataColumnSize,
            this.dataColumnEquipmentTemplateID,
            this.dataColumnFlags,
            this.dataColumnAggroLevel,
            this.dataColumnAggroRange,
            this.dataColumnMobRealm,
            this.dataColumnMobRespawnInterval,
            this.dataColumnMobFactionID,
            this.dataColumnMobMeleeDamageType,
            this.dataColumnMobItemsListTemplateID,
            this.dataColumnAddToworld,
            this.dataColumnObjectName,
            dataColumn59,
            dataColumn66});
            this.dataTableMob.TableName = "Mob";
            // 
            // dataColumnName
            // 
            this.dataColumnName.ColumnName = "Name";
            // 
            // dataColumnModel
            // 
            this.dataColumnModel.Caption = "Model";
            this.dataColumnModel.ColumnName = "Model";
            this.dataColumnModel.DataType = typeof(int);
            this.dataColumnModel.DefaultValue = 49;
            this.dataColumnModel.Namespace = "";
            // 
            // dataColumnGuildName
            // 
            this.dataColumnGuildName.ColumnName = "Guild";
            this.dataColumnGuildName.DefaultValue = "";
            // 
            // dataColumnLevel
            // 
            this.dataColumnLevel.ColumnName = "Level";
            this.dataColumnLevel.DataType = typeof(byte);
            this.dataColumnLevel.DefaultValue = ((byte)(1));
            // 
            // dataColumnX
            // 
            this.dataColumnX.ColumnName = "X";
            this.dataColumnX.DataType = typeof(int);
            this.dataColumnX.DefaultValue = 0;
            this.dataColumnX.Namespace = "";
            // 
            // dataColumnY
            // 
            this.dataColumnY.ColumnName = "Y";
            this.dataColumnY.DataType = typeof(int);
            this.dataColumnY.DefaultValue = 0;
            this.dataColumnY.Namespace = "";
            // 
            // dataColumnZ
            // 
            this.dataColumnZ.ColumnName = "Z";
            this.dataColumnZ.DataType = typeof(int);
            this.dataColumnZ.DefaultValue = 0;
            this.dataColumnZ.Namespace = "";
            // 
            // dataColumnRegion
            // 
            this.dataColumnRegion.ColumnName = "Region";
            this.dataColumnRegion.DataType = typeof(int);
            this.dataColumnRegion.DefaultValue = 0;
            this.dataColumnRegion.Namespace = "";
            // 
            // dataColumnMobID
            // 
            this.dataColumnMobID.AllowDBNull = false;
            this.dataColumnMobID.AutoIncrement = true;
            this.dataColumnMobID.Caption = "MobID";
            this.dataColumnMobID.ColumnName = "MobID";
            this.dataColumnMobID.DataType = typeof(int);
            this.dataColumnMobID.Namespace = "";
            // 
            // dataColumnClassType
            // 
            this.dataColumnClassType.ColumnName = "ClassType";
            this.dataColumnClassType.DefaultValue = "DOL.GS.GameNPC";
            this.dataColumnClassType.Namespace = "";
            // 
            // dataColumnSpeed
            // 
            this.dataColumnSpeed.ColumnName = "Speed";
            this.dataColumnSpeed.DataType = typeof(int);
            this.dataColumnSpeed.DefaultValue = 191;
            // 
            // dataColumnHeading
            // 
            this.dataColumnHeading.ColumnName = "Heading";
            this.dataColumnHeading.DataType = typeof(int);
            this.dataColumnHeading.DefaultValue = 0;
            this.dataColumnHeading.Namespace = "";
            // 
            // dataColumnSize
            // 
            this.dataColumnSize.ColumnName = "Size";
            this.dataColumnSize.DataType = typeof(byte);
            this.dataColumnSize.DefaultValue = ((byte)(50));
            this.dataColumnSize.Namespace = "";
            // 
            // dataColumnEquipmentTemplateID
            // 
            this.dataColumnEquipmentTemplateID.ColumnName = "EquipmentTemplateID";
            this.dataColumnEquipmentTemplateID.DefaultValue = "0";
            this.dataColumnEquipmentTemplateID.Namespace = "";
            // 
            // dataColumnFlags
            // 
            this.dataColumnFlags.ColumnName = "Flags";
            this.dataColumnFlags.DataType = typeof(byte);
            this.dataColumnFlags.DefaultValue = ((byte)(0));
            this.dataColumnFlags.Namespace = "";
            // 
            // dataColumnAggroLevel
            // 
            this.dataColumnAggroLevel.ColumnName = "AggroLevel";
            this.dataColumnAggroLevel.DataType = typeof(int);
            this.dataColumnAggroLevel.DefaultValue = 0;
            // 
            // dataColumnAggroRange
            // 
            this.dataColumnAggroRange.ColumnName = "AggroRange";
            this.dataColumnAggroRange.DataType = typeof(int);
            this.dataColumnAggroRange.DefaultValue = 0;
            // 
            // dataColumnMobRealm
            // 
            this.dataColumnMobRealm.ColumnName = "Realm";
            this.dataColumnMobRealm.DataType = typeof(byte);
            this.dataColumnMobRealm.DefaultValue = ((byte)(0));
            // 
            // dataColumnMobRespawnInterval
            // 
            this.dataColumnMobRespawnInterval.ColumnName = "RespawnInterval";
            this.dataColumnMobRespawnInterval.DataType = typeof(int);
            this.dataColumnMobRespawnInterval.DefaultValue = 0;
            this.dataColumnMobRespawnInterval.Namespace = "";
            // 
            // dataColumnMobFactionID
            // 
            this.dataColumnMobFactionID.ColumnName = "FactionID";
            this.dataColumnMobFactionID.DataType = typeof(int);
            this.dataColumnMobFactionID.Namespace = "";
            // 
            // dataColumnMobMeleeDamageType
            // 
            this.dataColumnMobMeleeDamageType.ColumnName = "DamageType";
            this.dataColumnMobMeleeDamageType.DataType = typeof(int);
            this.dataColumnMobMeleeDamageType.DefaultValue = 2;
            // 
            // dataColumnMobItemsListTemplateID
            // 
            this.dataColumnMobItemsListTemplateID.ColumnName = "ItemsListTemplateID";
            // 
            // dataColumnAddToworld
            // 
            this.dataColumnAddToworld.ColumnName = "AddToWorld";
            this.dataColumnAddToworld.DataType = typeof(bool);
            this.dataColumnAddToworld.DefaultValue = true;
            this.dataColumnAddToworld.Namespace = "";
            // 
            // dataColumnObjectName
            // 
            this.dataColumnObjectName.AllowDBNull = false;
            this.dataColumnObjectName.ColumnName = "ObjectName";
            this.dataColumnObjectName.DefaultValue = "objectName";
            // 
            // dataTableItemTemplate
            // 
            this.dataTableItemTemplate.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnIdNb,
            this.dataColumnItemName,
            this.dataColumnItemLevel,
            this.dataColumnDurability,
            this.dataColumnMaxDurability,
            this.dataColumnCondition,
            this.dataColumnMaxcondition,
            this.dataColumnQuality,
            this.dataColumnDPS_AF,
            this.dataColumnSPD_ABS,
            this.dataColumnHand,
            this.dataColumnTypeDamage,
            this.dataColumnObjectType,
            this.dataColumnItemType,
            this.dataColumnWeight,
            this.dataColumnItemModel,
            this.dataColumnRealm,
            this.dataColumnIsPickable,
            this.dataColumnIsDropable,
            dataColumnCanDropAsLoot,
            dataColumnIsTradable,
            this.dataColumnBonus,
            this.dataColumnBonus1,
            this.dataColumnBonus1Type,
            this.dataColumnBonus2,
            this.dataColumnBonus2Type,
            this.dataColumnBonus3,
            this.dataColumnBonus3Type,
            this.dataColumnBonus4,
            this.dataColumnBonus4Type,
            this.dataColumnBonus5,
            this.dataColumnBonus5Type,
            dataColumnBonus6,
            dataColumnBonus6Type,
            dataColumnBonus7,
            dataColumnBonus7Type,
            dataColumnBonus8,
            dataColumnBonus8Type,
            dataColumnBonus9,
            dataColumnBonus9Type,
            dataColumnBonus10,
            dataColumnBonus10Type,
            this.dataColumnExtraBonus,
            this.dataColumnExtraBonusType,
            this.dataColumnColor,
            dataColumnPlatinum,
            dataColumnGold,
            dataColumnSilver,
            dataColumnCopper,
            dataColumnEmblem,
            dataColumnEffect,
            dataColumnExtension,
            dataColumn73,
            dataColumnPackSize,
            dataColumnCharges,
            dataColumnMaxCount,
            dataColumnSpellID,
            dataColumnProcSpellID,
            dataColumnPoisonCharges,
            dataColumnPoisonMaxCharges,
            dataColumnPoisonSpellID,
            dataColumnSpellID1,
            dataColumnProcSpellID1,
            dataColumnCharges1,
            dataColumnMaxCharges1});
            this.dataTableItemTemplate.TableName = "ItemTemplate";
            // 
            // dataColumnIdNb
            // 
            this.dataColumnIdNb.AllowDBNull = false;
            this.dataColumnIdNb.Caption = "ID";
            this.dataColumnIdNb.ColumnName = "ItemTemplateID";
            // 
            // dataColumnItemName
            // 
            this.dataColumnItemName.ColumnName = "Name";
            this.dataColumnItemName.DefaultValue = "";
            // 
            // dataColumnItemLevel
            // 
            this.dataColumnItemLevel.ColumnName = "Level";
            this.dataColumnItemLevel.DataType = typeof(int);
            this.dataColumnItemLevel.DefaultValue = 1;
            // 
            // dataColumnDurability
            // 
            this.dataColumnDurability.ColumnName = "Durability";
            this.dataColumnDurability.DataType = typeof(int);
            this.dataColumnDurability.DefaultValue = 100;
            // 
            // dataColumnMaxDurability
            // 
            this.dataColumnMaxDurability.ColumnName = "MaxDurability";
            this.dataColumnMaxDurability.DataType = typeof(int);
            this.dataColumnMaxDurability.DefaultValue = 100;
            // 
            // dataColumnCondition
            // 
            this.dataColumnCondition.ColumnName = "Condition";
            this.dataColumnCondition.DataType = typeof(int);
            this.dataColumnCondition.DefaultValue = 100;
            // 
            // dataColumnMaxcondition
            // 
            this.dataColumnMaxcondition.ColumnName = "MaxCondition";
            this.dataColumnMaxcondition.DataType = typeof(int);
            this.dataColumnMaxcondition.DefaultValue = 100;
            // 
            // dataColumnQuality
            // 
            this.dataColumnQuality.ColumnName = "Quality";
            this.dataColumnQuality.DataType = typeof(int);
            this.dataColumnQuality.DefaultValue = 100;
            // 
            // dataColumnDPS_AF
            // 
            this.dataColumnDPS_AF.ColumnName = "DPS_AF";
            this.dataColumnDPS_AF.DataType = typeof(int);
            this.dataColumnDPS_AF.DefaultValue = 0;
            // 
            // dataColumnSPD_ABS
            // 
            this.dataColumnSPD_ABS.ColumnName = "SPD_ABS";
            this.dataColumnSPD_ABS.DataType = typeof(int);
            this.dataColumnSPD_ABS.DefaultValue = 0;
            // 
            // dataColumnHand
            // 
            this.dataColumnHand.ColumnName = "Hand";
            this.dataColumnHand.DataType = typeof(int);
            this.dataColumnHand.DefaultValue = 0;
            // 
            // dataColumnTypeDamage
            // 
            this.dataColumnTypeDamage.ColumnName = "Type_Damage";
            this.dataColumnTypeDamage.DataType = typeof(int);
            this.dataColumnTypeDamage.DefaultValue = 0;
            // 
            // dataColumnObjectType
            // 
            this.dataColumnObjectType.ColumnName = "Object_Type";
            this.dataColumnObjectType.DataType = typeof(int);
            this.dataColumnObjectType.DefaultValue = 0;
            // 
            // dataColumnItemType
            // 
            this.dataColumnItemType.ColumnName = "Item_Type";
            this.dataColumnItemType.DataType = typeof(int);
            this.dataColumnItemType.DefaultValue = 0;
            // 
            // dataColumnWeight
            // 
            this.dataColumnWeight.ColumnName = "Weight";
            this.dataColumnWeight.DataType = typeof(int);
            this.dataColumnWeight.DefaultValue = 1;
            // 
            // dataColumnItemModel
            // 
            this.dataColumnItemModel.ColumnName = "Model";
            this.dataColumnItemModel.DataType = typeof(int);
            this.dataColumnItemModel.DefaultValue = 488;
            // 
            // dataColumnRealm
            // 
            this.dataColumnRealm.ColumnName = "Realm";
            this.dataColumnRealm.DataType = typeof(int);
            this.dataColumnRealm.DefaultValue = 0;
            // 
            // dataColumnIsPickable
            // 
            this.dataColumnIsPickable.ColumnName = "IsPickable";
            this.dataColumnIsPickable.DataType = typeof(bool);
            this.dataColumnIsPickable.DefaultValue = true;
            // 
            // dataColumnIsDropable
            // 
            this.dataColumnIsDropable.ColumnName = "IsDropable";
            this.dataColumnIsDropable.DataType = typeof(bool);
            this.dataColumnIsDropable.DefaultValue = true;
            // 
            // dataColumnBonus
            // 
            this.dataColumnBonus.ColumnName = "Bonus";
            this.dataColumnBonus.DataType = typeof(int);
            this.dataColumnBonus.DefaultValue = 0;
            // 
            // dataColumnBonus1
            // 
            this.dataColumnBonus1.ColumnName = "Bonus1";
            this.dataColumnBonus1.DataType = typeof(int);
            this.dataColumnBonus1.DefaultValue = 0;
            // 
            // dataColumnBonus1Type
            // 
            this.dataColumnBonus1Type.ColumnName = "Bonus1Type";
            this.dataColumnBonus1Type.DataType = typeof(int);
            this.dataColumnBonus1Type.DefaultValue = 0;
            // 
            // dataColumnBonus2
            // 
            this.dataColumnBonus2.ColumnName = "Bonus2";
            this.dataColumnBonus2.DataType = typeof(int);
            this.dataColumnBonus2.DefaultValue = 0;
            // 
            // dataColumnBonus2Type
            // 
            this.dataColumnBonus2Type.ColumnName = "Bonus2Type";
            this.dataColumnBonus2Type.DataType = typeof(int);
            this.dataColumnBonus2Type.DefaultValue = 0;
            // 
            // dataColumnBonus3
            // 
            this.dataColumnBonus3.ColumnName = "Bonus3";
            this.dataColumnBonus3.DataType = typeof(int);
            this.dataColumnBonus3.DefaultValue = 0;
            // 
            // dataColumnBonus3Type
            // 
            this.dataColumnBonus3Type.ColumnName = "Bonus3Type";
            this.dataColumnBonus3Type.DataType = typeof(int);
            this.dataColumnBonus3Type.DefaultValue = 0;
            // 
            // dataColumnBonus4
            // 
            this.dataColumnBonus4.ColumnName = "Bonus4";
            this.dataColumnBonus4.DataType = typeof(int);
            this.dataColumnBonus4.DefaultValue = 0;
            // 
            // dataColumnBonus4Type
            // 
            this.dataColumnBonus4Type.ColumnName = "Bonus4Type";
            this.dataColumnBonus4Type.DataType = typeof(int);
            this.dataColumnBonus4Type.DefaultValue = 0;
            // 
            // dataColumnBonus5
            // 
            this.dataColumnBonus5.ColumnName = "Bonus5";
            this.dataColumnBonus5.DataType = typeof(int);
            this.dataColumnBonus5.DefaultValue = 0;
            // 
            // dataColumnBonus5Type
            // 
            this.dataColumnBonus5Type.ColumnName = "Bonus5Type";
            this.dataColumnBonus5Type.DataType = typeof(int);
            this.dataColumnBonus5Type.DefaultValue = 0;
            // 
            // dataColumnExtraBonus
            // 
            this.dataColumnExtraBonus.ColumnName = "ExtraBonus";
            this.dataColumnExtraBonus.DataType = typeof(int);
            this.dataColumnExtraBonus.DefaultValue = 0;
            // 
            // dataColumnExtraBonusType
            // 
            this.dataColumnExtraBonusType.ColumnName = "ExtraBonusType";
            this.dataColumnExtraBonusType.DataType = typeof(int);
            this.dataColumnExtraBonusType.DefaultValue = 0;
            // 
            // dataColumnColor
            // 
            this.dataColumnColor.ColumnName = "Color";
            this.dataColumnColor.DataType = typeof(int);
            this.dataColumnColor.DefaultValue = 0;
            // 
            // dataTableQuestStep
            // 
            this.dataTableQuestStep.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnStep,
            this.dataColumnStepDescription});
            this.dataTableQuestStep.TableName = "QuestStep";
            // 
            // dataColumnStep
            // 
            this.dataColumnStep.AllowDBNull = false;
            this.dataColumnStep.AutoIncrement = true;
            this.dataColumnStep.AutoIncrementSeed = ((long)(1));
            this.dataColumnStep.ColumnName = "Step";
            this.dataColumnStep.DataType = typeof(int);
            // 
            // dataColumnStepDescription
            // 
            this.dataColumnStepDescription.ColumnName = "Description";
            this.dataColumnStepDescription.DefaultValue = "";
            // 
            // dataTableArea
            // 
            this.dataTableArea.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumn6,
            this.dataColumn7,
            this.dataColumn8,
            this.dataColumn9,
            this.dataColumn10,
            this.dataColumn11,
            this.dataColumn12,
            this.dataColumn13,
            dataColumn39,
            dataColumn40,
            dataColumn42,
            dataColumn43,
            this.dataColumn44});
            this.dataTableArea.TableName = "Area";
            // 
            // dataColumn6
            // 
            this.dataColumn6.AllowDBNull = false;
            this.dataColumn6.ColumnName = "ObjectName";
            // 
            // dataColumn7
            // 
            this.dataColumn7.ColumnName = "Name";
            // 
            // dataColumn8
            // 
            this.dataColumn8.ColumnName = "RegionID";
            this.dataColumn8.DataType = typeof(int);
            // 
            // dataColumn9
            // 
            this.dataColumn9.ColumnName = "AreaType";
            this.dataColumn9.DefaultValue = "Circle";
            // 
            // dataColumn10
            // 
            this.dataColumn10.ColumnName = "X";
            this.dataColumn10.DataType = typeof(int);
            // 
            // dataColumn11
            // 
            this.dataColumn11.ColumnName = "Y";
            this.dataColumn11.DataType = typeof(int);
            // 
            // dataColumn12
            // 
            this.dataColumn12.ColumnName = "Z";
            this.dataColumn12.DataType = typeof(int);
            // 
            // dataColumn13
            // 
            this.dataColumn13.ColumnName = "R";
            this.dataColumn13.DataType = typeof(int);
            // 
            // dataColumn44
            // 
            this.dataColumn44.AllowDBNull = false;
            this.dataColumn44.ColumnName = "CheckLOS";
            this.dataColumn44.DataType = typeof(bool);
            this.dataColumn44.DefaultValue = false;
            // 
            // dataTableLocation
            // 
            this.dataTableLocation.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumn15,
            dataColumn16,
            dataColumn17,
            dataColumn18,
            dataColumn19,
            dataColumn20,
            dataColumn21,
            dataColumn22});
            this.dataTableLocation.TableName = "Location";
            // 
            // dataSetData
            // 
            this.dataSetData.DataSetName = "QuestData";
            this.dataSetData.Tables.AddRange(new System.Data.DataTable[] {
            this.dataTableRegion,
            this.dataTableZone,
            this.dataTableTriggerType,
            this.dataTableActionType,
            this.dataTableRequirementType,
            this.dataTableeEnumeration});
            this.dataSetData.Initialized += new System.EventHandler(this.dataSetData_Initialized);
            // 
            // dataTableRegion
            // 
            this.dataTableRegion.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnRegionID,
            dataColumnRegionDescription});
            this.dataTableRegion.TableName = "Region";
            // 
            // dataTableZone
            // 
            this.dataTableZone.Columns.AddRange(new System.Data.DataColumn[] {
            dataColumnZoneID,
            dataColumnZoneRegionID,
            dataColumnZoneDescription,
            dataColumnZoneOffsetY,
            dataColumnZoneOffsetX,
            dataColumn28,
            dataColumn32});
            this.dataTableZone.TableName = "Zone";
            // 
            // dataTableTriggerType
            // 
            this.dataTableTriggerType.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnTriggerTypeValue,
            this.dataColumnTriggerTypeDescription,
            this.dataColumnTriggerTypeHelp,
            this.dataColumnTriggerTypeK,
            this.dataColumnTriggerTypeI,
            this.dataColumnTriggerTypeID,
            dataColumnText,
            dataColumn33});
            this.dataTableTriggerType.TableName = "TriggerType";
            // 
            // dataColumnTriggerTypeValue
            // 
            this.dataColumnTriggerTypeValue.ColumnName = "value";
            // 
            // dataColumnTriggerTypeDescription
            // 
            this.dataColumnTriggerTypeDescription.ColumnName = "description";
            // 
            // dataColumnTriggerTypeHelp
            // 
            this.dataColumnTriggerTypeHelp.ColumnName = "help";
            // 
            // dataColumnTriggerTypeK
            // 
            this.dataColumnTriggerTypeK.ColumnName = "k";
            // 
            // dataColumnTriggerTypeI
            // 
            this.dataColumnTriggerTypeI.ColumnName = "i";
            // 
            // dataColumnTriggerTypeID
            // 
            this.dataColumnTriggerTypeID.ColumnName = "id";
            this.dataColumnTriggerTypeID.DataType = typeof(int);
            // 
            // dataTableActionType
            // 
            this.dataTableActionType.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnActionTypeValue,
            this.dataColumnActionTypeDescription,
            this.dataColumnActionTypeHelp,
            this.dataColumnActionTypeP,
            this.dataColumnActionTypeQ,
            this.dataColumnActionTypeID,
            this.dataColumn25,
            dataColumn34});
            this.dataTableActionType.TableName = "ActionType";
            // 
            // dataColumnActionTypeValue
            // 
            this.dataColumnActionTypeValue.ColumnName = "value";
            // 
            // dataColumnActionTypeDescription
            // 
            this.dataColumnActionTypeDescription.ColumnName = "description";
            // 
            // dataColumnActionTypeHelp
            // 
            this.dataColumnActionTypeHelp.ColumnName = "help";
            // 
            // dataColumnActionTypeP
            // 
            this.dataColumnActionTypeP.ColumnName = "p";
            // 
            // dataColumnActionTypeQ
            // 
            this.dataColumnActionTypeQ.ColumnName = "q";
            // 
            // dataColumnActionTypeID
            // 
            this.dataColumnActionTypeID.ColumnName = "id";
            this.dataColumnActionTypeID.DataType = typeof(int);
            // 
            // dataColumn25
            // 
            this.dataColumn25.Caption = "Text";
            this.dataColumn25.ColumnName = "text";
            this.dataColumn25.DefaultValue = "";
            // 
            // dataTableRequirementType
            // 
            this.dataTableRequirementType.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnRequirementTypeValue,
            this.dataColumnRequirementTypeDescription,
            this.dataColumnRequirementTypeHelp,
            this.dataColumnRequirementTypeN,
            this.dataColumnRequirementTypeV,
            this.dataColumnRequirementTypeID,
            this.dataColumn24,
            this.dataColumn27,
            dataColumn35});
            this.dataTableRequirementType.TableName = "RequirementType";
            // 
            // dataColumnRequirementTypeValue
            // 
            this.dataColumnRequirementTypeValue.ColumnName = "value";
            // 
            // dataColumnRequirementTypeDescription
            // 
            this.dataColumnRequirementTypeDescription.ColumnName = "description";
            // 
            // dataColumnRequirementTypeHelp
            // 
            this.dataColumnRequirementTypeHelp.ColumnName = "help";
            // 
            // dataColumnRequirementTypeN
            // 
            this.dataColumnRequirementTypeN.ColumnName = "n";
            // 
            // dataColumnRequirementTypeV
            // 
            this.dataColumnRequirementTypeV.ColumnName = "v";
            // 
            // dataColumnRequirementTypeID
            // 
            this.dataColumnRequirementTypeID.ColumnName = "id";
            this.dataColumnRequirementTypeID.DataType = typeof(int);
            // 
            // dataColumn24
            // 
            this.dataColumn24.Caption = "Text";
            this.dataColumn24.ColumnName = "text";
            this.dataColumn24.DefaultValue = "";
            // 
            // dataColumn27
            // 
            this.dataColumn27.Caption = "Comparator";
            this.dataColumn27.ColumnName = "comparator";
            // 
            // dataTableeEnumeration
            // 
            this.dataTableeEnumeration.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumnEnumerationType,
            this.dataColumnEnumerationValue,
            this.dataColumnEnumerationName,
            this.dataColumnEnumerationDescription});
            this.dataTableeEnumeration.TableName = "eEnumeration";
            // 
            // dataColumnEnumerationType
            // 
            this.dataColumnEnumerationType.ColumnMapping = System.Data.MappingType.Attribute;
            this.dataColumnEnumerationType.ColumnName = "Type";
            // 
            // dataColumnEnumerationValue
            // 
            this.dataColumnEnumerationValue.ColumnName = "Value";
            // 
            // dataColumnEnumerationName
            // 
            this.dataColumnEnumerationName.ColumnName = "Name";
            // 
            // dataColumnEnumerationDescription
            // 
            this.dataColumnEnumerationDescription.ColumnName = "Description";
            // 
            // dataColumnRealmValue
            // 
            this.dataColumnRealmValue.ColumnName = "value";
            this.dataColumnRealmValue.DataType = typeof(byte);
            // 
            // dataColumnRealmDescription
            // 
            this.dataColumnRealmDescription.ColumnName = "description";
            // 
            // dataColumnTextTypeValue
            // 
            this.dataColumnTextTypeValue.ColumnName = "value";
            this.dataColumnTextTypeValue.DataType = typeof(int);
            // 
            // dataColumnTextTypeDescription
            // 
            this.dataColumnTextTypeDescription.Caption = "description";
            this.dataColumnTextTypeDescription.ColumnName = "description";
            // 
            // dataColumn2
            // 
            this.dataColumn2.ColumnName = "value";
            this.dataColumn2.DataType = typeof(int);
            // 
            // dataColumn3
            // 
            this.dataColumn3.ColumnName = "description";
            // 
            // dataColumn54
            // 
            this.dataColumn54.ColumnName = "value";
            this.dataColumn54.DataType = typeof(int);
            // 
            // dataColumn55
            // 
            this.dataColumn55.ColumnName = "description";
            // 
            // dataColumn56
            // 
            this.dataColumn56.ColumnName = "value";
            this.dataColumn56.DataType = typeof(int);
            // 
            // dataColumn57
            // 
            this.dataColumn57.ColumnName = "description";
            // 
            // dataColumn60
            // 
            this.dataColumn60.ColumnName = "value";
            this.dataColumn60.DataType = typeof(int);
            // 
            // dataColumn61
            // 
            this.dataColumn61.ColumnName = "description";
            // 
            // dataColumn4
            // 
            this.dataColumn4.ColumnName = "value";
            this.dataColumn4.DataType = typeof(int);
            // 
            // dataColumn5
            // 
            this.dataColumn5.ColumnName = "description";
            // 
            // saveQuestDialog
            // 
            this.saveQuestDialog.DefaultExt = "qst";
            resources.ApplyResources(this.saveQuestDialog, "saveQuestDialog");
            this.saveQuestDialog.RestoreDirectory = true;
            // 
            // BottomToolStripPanel
            // 
            this.BottomToolStripPanel.AccessibleDescription = null;
            this.BottomToolStripPanel.AccessibleName = null;
            resources.ApplyResources(this.BottomToolStripPanel, "BottomToolStripPanel");
            this.BottomToolStripPanel.BackgroundImage = null;
            this.BottomToolStripPanel.Font = null;
            this.BottomToolStripPanel.Name = "BottomToolStripPanel";
            this.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.BottomToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTip.SetToolTip(this.BottomToolStripPanel, resources.GetString("BottomToolStripPanel.ToolTip"));
            // 
            // TopToolStripPanel
            // 
            this.TopToolStripPanel.AccessibleDescription = null;
            this.TopToolStripPanel.AccessibleName = null;
            resources.ApplyResources(this.TopToolStripPanel, "TopToolStripPanel");
            this.TopToolStripPanel.BackgroundImage = null;
            this.TopToolStripPanel.Font = null;
            this.TopToolStripPanel.Name = "TopToolStripPanel";
            this.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.TopToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTip.SetToolTip(this.TopToolStripPanel, resources.GetString("TopToolStripPanel.ToolTip"));
            // 
            // RightToolStripPanel
            // 
            this.RightToolStripPanel.AccessibleDescription = null;
            this.RightToolStripPanel.AccessibleName = null;
            resources.ApplyResources(this.RightToolStripPanel, "RightToolStripPanel");
            this.RightToolStripPanel.BackgroundImage = null;
            this.RightToolStripPanel.Font = null;
            this.RightToolStripPanel.Name = "RightToolStripPanel";
            this.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.RightToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTip.SetToolTip(this.RightToolStripPanel, resources.GetString("RightToolStripPanel.ToolTip"));
            // 
            // LeftToolStripPanel
            // 
            this.LeftToolStripPanel.AccessibleDescription = null;
            this.LeftToolStripPanel.AccessibleName = null;
            resources.ApplyResources(this.LeftToolStripPanel, "LeftToolStripPanel");
            this.LeftToolStripPanel.BackgroundImage = null;
            this.LeftToolStripPanel.Font = null;
            this.LeftToolStripPanel.Name = "LeftToolStripPanel";
            this.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.LeftToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.toolTip.SetToolTip(this.LeftToolStripPanel, resources.GetString("LeftToolStripPanel.ToolTip"));
            // 
            // ContentPanel
            // 
            this.ContentPanel.AccessibleDescription = null;
            this.ContentPanel.AccessibleName = null;
            resources.ApplyResources(this.ContentPanel, "ContentPanel");
            this.ContentPanel.BackgroundImage = null;
            this.ContentPanel.Font = null;
            this.toolTip.SetToolTip(this.ContentPanel, resources.GetString("ContentPanel.ToolTip"));
            // 
            // openQuestDialog
            // 
            this.openQuestDialog.DefaultExt = "qst";
            resources.ApplyResources(this.openQuestDialog, "openQuestDialog");
            this.openQuestDialog.RestoreDirectory = true;
            // 
            // saveScriptDialog
            // 
            resources.ApplyResources(this.saveScriptDialog, "saveScriptDialog");
            this.saveScriptDialog.RestoreDirectory = true;
            // 
            // QuestDesignerForm
            // 
            this.AccessibleDescription = null;
            this.AccessibleName = null;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = null;
            this.Controls.Add(this.toolStripContainerForm);
            this.DataBindings.Add(new System.Windows.Forms.Binding("Location", global::DOL.Tools.QuestDesigner.Properties.Settings.Default, "MainformLocation", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("Size", global::DOL.Tools.QuestDesigner.Properties.Settings.Default, "MainformSize", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DoubleBuffered = true;
            this.Font = null;
            this.Location = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.MainformLocation;
            this.MainMenuStrip = this.menuStripMain;
            this.Name = "QuestDesignerForm";
            this.toolTip.SetToolTip(this, resources.GetString("$this.ToolTip"));
            this.Load += new System.EventHandler(this.QuestDesignerForm_Load);
            ((System.ComponentModel.ISupportInitialize)(dataTableQuestCharacterClass)).EndInit();
            this.toolStripContainerForm.BottomToolStripPanel.ResumeLayout(false);
            this.toolStripContainerForm.BottomToolStripPanel.PerformLayout();
            this.toolStripContainerForm.ContentPanel.ResumeLayout(false);
            this.toolStripContainerForm.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainerForm.TopToolStripPanel.PerformLayout();
            this.toolStripContainerForm.ResumeLayout(false);
            this.toolStripContainerForm.PerformLayout();
            this.statusStrip.ResumeLayout(false);
            this.statusStrip.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tabControlMain)).EndInit();
            this.tabControlMain.ResumeLayout(false);
            this.tabPageQuest.ResumeLayout(false);
            this.tabPageNPC.ResumeLayout(false);
            this.tabPageItem.ResumeLayout(false);
            this.tabPageQuestPart.ResumeLayout(false);
            this.tabPageArea.ResumeLayout(false);
            this.tabPageLocation.ResumeLayout(false);
            this.tabPageCode.ResumeLayout(false);
            this.tabPageMap.ResumeLayout(false);
            this.tabPageWeb.ResumeLayout(false);
            this.xpTaskPane.ResumeLayout(false);
            this.xpTGActions.ResumeLayout(false);
            this.xpTGActions.PerformLayout();
            this.menuStripMain.ResumeLayout(false);
            this.menuStripMain.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataSetQuest)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableQuestPart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableTrigger)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableRequirement)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableAction)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableQuest)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableMob)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableItemTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableQuestStep)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableArea)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableLocation)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSetData)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableRegion)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableZone)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableTriggerType)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableActionType)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableRequirementType)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTableeEnumeration)).EndInit();
            this.ResumeLayout(false);

        }
Beispiel #60
0
        /// <summary>
        /// 将excel中的数据导入到DataTable中
        /// </summary>
        /// <param name="path">excel路径</param>
        /// <param name="sheetName">excel工作薄sheet的名称(默认第一个)</param>
        /// <returns>返回的DataTable</returns>
        public static System.Data.DataTable ExcelToDataTable(string path, string sheetName = null)
        {
            NPOI.SS.UserModel.ISheet sheet = null;
            var data     = new System.Data.DataTable();
            int startRow = 0;

            NPOI.SS.UserModel.IWorkbook workbook = null;
            try
            {
                var fs = new System.IO.FileStream(path, System.IO.FileMode.Open, System.IO.FileAccess.Read);
                if (string.Compare(path.Split('.').Last(), "xlsx", true) == decimal.Zero) // 2007版本
                {
                    workbook = new NPOI.XSSF.UserModel.XSSFWorkbook(fs);
                }
                else //if (string.Compare(fileEx, ".xls", true) == decimal.Zero) // 2003版本
                {
                    workbook = new NPOI.HSSF.UserModel.HSSFWorkbook(fs);
                }

                if (string.IsNullOrEmpty(sheetName))
                {
                    sheet = workbook.GetSheetAt(0);
                }
                else
                {
                    sheet = workbook.GetSheet(sheetName);
                    if (sheet == null) //如果没有找到指定的sheetName对应的sheet,则尝试获取第一个sheet
                    {
                        sheet = workbook.GetSheetAt(0);
                    }
                }

                if (sheet != null)
                {
                    var firstRow  = sheet.GetRow(0);
                    int cellCount = firstRow.LastCellNum; //一行最后一个cell的编号 即总的列数

                    for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
                    {
                        var cell = firstRow.GetCell(i);
                        if (cell != null)
                        {
                            var cellValue = cell.StringCellValue.Trim();
                            if (cellValue != null)
                            {
                                var column = new System.Data.DataColumn(cellValue);
                                data.Columns.Add(column);
                            }
                        }
                    }

                    startRow = sheet.FirstRowNum + 1;

                    //最后一列的标号
                    int rowCount = sheet.LastRowNum;
                    for (int i = startRow; i <= rowCount; ++i)
                    {
                        var row = sheet.GetRow(i);
                        if (row == null)
                        {
                            continue;              //没有数据的行默认是null       
                        }
                        var dataRow = data.NewRow();
                        for (int j = row.FirstCellNum; j < cellCount; ++j)
                        {
                            if (row.GetCell(j) != null) //同理,没有数据的单元格都默认是null
                            {
                                dataRow[j] = row.GetCell(j).ToString().Trim();
                            }
                        }
                        data.Rows.Add(dataRow);
                    }
                }

                return(data);
            }
            catch
            {
                return(null);
            }
        }