コード例 #1
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.uteSystemInformation = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     ((System.ComponentModel.ISupportInitialize)(this.uteSystemInformation)).BeginInit();
     this.SuspendLayout();
     //
     // uteSystemInformation
     //
     this.uteSystemInformation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uteSystemInformation.Location = new System.Drawing.Point(0, 0);
     this.uteSystemInformation.Multiline = true;
     this.uteSystemInformation.Name = "uteSystemInformation";
     this.uteSystemInformation.Size = new System.Drawing.Size(471, 432);
     this.uteSystemInformation.TabIndex = 0;
     //
     // SystemInformationHelp
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(471, 432);
     this.Controls.Add(this.uteSystemInformation);
     this.Name = "SystemInformationHelp";
     this.Text = "SystemInformationHelp";
     this.Load += new System.EventHandler(this.SystemInformationHelp_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uteSystemInformation)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #2
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     this.editorID         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.labelDescription = new Infragistics.Win.Misc.UltraLabel();
     this.buttonElipsis    = new System.Windows.Forms.Button();
     this.toolTip          = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.editorID)).BeginInit();
     this.SuspendLayout();
     //
     // editorID
     //
     this.editorID.Location      = new System.Drawing.Point(0, 0);
     this.editorID.Name          = "editorID";
     this.editorID.Size          = new System.Drawing.Size(104, 22);
     this.editorID.TabIndex      = 0;
     this.editorID.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.editorID_KeyDown);
     this.editorID.Leave        += new System.EventHandler(this.editorID_Leave);
     this.editorID.ValueChanged += new System.EventHandler(this.editorID_ValueChanged);
     //
     // labelDescription
     //
     appearance1.TextVAlign                 = Infragistics.Win.VAlign.Middle;
     this.labelDescription.Appearance       = appearance1;
     this.labelDescription.BackColor        = System.Drawing.SystemColors.Control;
     this.labelDescription.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.labelDescription.Location         = new System.Drawing.Point(136, 0);
     this.labelDescription.Name             = "labelDescription";
     this.labelDescription.Size             = new System.Drawing.Size(352, 22);
     this.labelDescription.TabIndex         = 3;
     this.labelDescription.Click           += new System.EventHandler(this.labelDescription_Click);
     //
     // buttonElipsis
     //
     this.buttonElipsis.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonElipsis.Location  = new System.Drawing.Point(106, 0);
     this.buttonElipsis.Name      = "buttonElipsis";
     this.buttonElipsis.Size      = new System.Drawing.Size(22, 22);
     this.buttonElipsis.TabIndex  = 2;
     this.buttonElipsis.TabStop   = false;
     this.buttonElipsis.Text      = "...";
     this.buttonElipsis.Click    += new System.EventHandler(this.buttonElipsis_Click);
     //
     // mzComboSearchEditor
     //
     this.Controls.Add(this.buttonElipsis);
     this.Controls.Add(this.labelDescription);
     this.Controls.Add(this.editorID);
     this.Font    = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name    = "mzComboSearchEditor";
     this.Size    = new System.Drawing.Size(496, 24);
     this.Layout += new System.Windows.Forms.LayoutEventHandler(this.mzSearchControl_Layout);
     ((System.ComponentModel.ISupportInitialize)(this.editorID)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #3
0
 private void AddMessageToQueue(Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor, string messageText)
 {
     if (ultraTextEditor.Text.Length > 10000)
     {
         ultraTextEditor.Text = ("\r\n" + messageText + "\r\n" + ultraTextEditor.Text).ToString().Substring(0, 10000);
     }
     else
     {
         ultraTextEditor.Text = "\r\n" + messageText + "\r\n" + ultraTextEditor.Text;
     }
 }
コード例 #4
0
        private Infragistics.Win.UltraWinEditors.UltraTextEditor AddTextBox(string name, int tabIndex, int x, int y)
        {
            Infragistics.Win.UltraWinEditors.UltraTextEditor txt = new Infragistics.Win.UltraWinEditors.UltraTextEditor();

            txt.Location = new System.Drawing.Point(x, y);
            txt.Name     = string.Format("txt{0}", name);
            txt.Size     = new System.Drawing.Size(GetControlWidth(), 23);
            txt.TabIndex = tabIndex;
            txt.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));

            panelTop.Controls.Add(txt);

            return(txt);
        }
コード例 #5
0
        private Infragistics.Win.UltraWinEditors.UltraTextEditor AddTextBox(ReportParameterConfig rp, int tabIndex, int x, int y)
        {
            Infragistics.Win.UltraWinEditors.UltraTextEditor txt = new Infragistics.Win.UltraWinEditors.UltraTextEditor();

            txt.Location = new System.Drawing.Point(x, y);
            txt.Name     = string.Format("txt{0}", rp.ControlUIType.LabelText);
            txt.Size     = new System.Drawing.Size(GetControlWidth(), 23);
            txt.TabIndex = tabIndex;
            txt.Anchor   = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));

            this.ultraExplorerBarContainerControl5.Controls.Add(txt);
            txt.DataBindings.Add("Text", rp, "ValorPorDefecto");



            return(txt);
        }
コード例 #6
0
        public void ShowMe(Model.Requerimiento_Cabecera _MRC,
                           Model.Requerimiento_Detalle _MRD,
                           Model.Requerimiento_Detalle_Bien _MRDB,
                           Model.Requerimiento_Detalle_Servicio _MRDS,
                           string strNomFuenteFinanciamiento,
                           string strNomCentroCosto,
                           string strNomProyecto,
                           string strNomPosicionPresupuestal,
                           string strNomClasificador,
                           string strNomTipoGasto,
                           string strNomMaterial,
                           string strNomServicio,
                           Infragistics.Win.UltraWinGrid.UltraGrid Grid,
                           Infragistics.Win.UltraWinEditors.UltraTextEditor text
                           )
        {
            if (_MRC.CcodTipoAdquisicion.TrimEnd() == "B")
            {
                this.UTC_Principal.SelectedTab = this.UTC_Principal.Tabs["Bien"];
                this.Text = "REQUERIMIENTO DE BIEN";
            }
            else
            {
                this.UTC_Principal.SelectedTab = this.UTC_Principal.Tabs["Servicio"];
                this.Text = "REQUERIMIENTO DE SERVICIO";
            }



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

            m_Grid = Grid;
            m_text = text;

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

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

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

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

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

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

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

            this.ShowDialog();
        }
コード例 #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     this.favoritesListBox = new Lyra2.LyraShell.SongListBox();
     this.favoritesSplitter = new System.Windows.Forms.SplitContainer();
     this.favoritesSongPreview = new Lyra2.LyraShell.SongPreview();
     this.favoritesFilterTB = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.label1 = new System.Windows.Forms.Label();
     this.favoritesSplitter.Panel1.SuspendLayout();
     this.favoritesSplitter.Panel2.SuspendLayout();
     this.favoritesSplitter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.favoritesFilterTB)).BeginInit();
     this.SuspendLayout();
     //
     // favoritesListBox
     //
     this.favoritesListBox.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.favoritesListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.favoritesListBox.ItemHeight = 15;
     this.favoritesListBox.Location = new System.Drawing.Point(0, 26);
     this.favoritesListBox.Name = "favoritesListBox";
     this.favoritesListBox.Size = new System.Drawing.Size(593, 394);
     this.favoritesListBox.TabIndex = 6;
     this.favoritesListBox.SelectedIndexChanged += new System.EventHandler(this.favoritesListBox_SelectedIndexChanged);
     this.favoritesListBox.DoubleClick += new System.EventHandler(this.listBox3_DoubleClick);
     this.favoritesListBox.SelectedValueChanged += new System.EventHandler(this.listBox3_SelectedValueChanged);
     //
     // favoritesSplitter
     //
     this.favoritesSplitter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.favoritesSplitter.Location = new System.Drawing.Point(0, 0);
     this.favoritesSplitter.Name = "favoritesSplitter";
     this.favoritesSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // favoritesSplitter.Panel1
     //
     this.favoritesSplitter.Panel1.Controls.Add(this.label1);
     this.favoritesSplitter.Panel1.Controls.Add(this.favoritesFilterTB);
     this.favoritesSplitter.Panel1.Controls.Add(this.favoritesListBox);
     //
     // favoritesSplitter.Panel2
     //
     this.favoritesSplitter.Panel2.Controls.Add(this.favoritesSongPreview);
     this.favoritesSplitter.Size = new System.Drawing.Size(593, 673);
     this.favoritesSplitter.SplitterDistance = 424;
     this.favoritesSplitter.TabIndex = 7;
     //
     // favoritesSongPreview
     //
     this.favoritesSongPreview.AutoScroll = true;
     this.favoritesSongPreview.Dock = System.Windows.Forms.DockStyle.Fill;
     this.favoritesSongPreview.Location = new System.Drawing.Point(0, 0);
     this.favoritesSongPreview.Name = "favoritesSongPreview";
     this.favoritesSongPreview.Size = new System.Drawing.Size(593, 245);
     this.favoritesSongPreview.TabIndex = 1;
     //
     // favoritesFilterTB
     //
     this.favoritesFilterTB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(250)))), ((int)(((byte)(215)))));
     this.favoritesFilterTB.Appearance = appearance4;
     this.favoritesFilterTB.AutoSize = false;
     this.favoritesFilterTB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(250)))), ((int)(((byte)(215)))));
     this.favoritesFilterTB.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
     appearance2.BackColorAlpha = Infragistics.Win.Alpha.Transparent;
     appearance2.BorderAlpha = Infragistics.Win.Alpha.Transparent;
     appearance2.ForegroundAlpha = Infragistics.Win.Alpha.Transparent;
     appearance2.ImageAlpha = Infragistics.Win.Alpha.Transparent;
     appearance2.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.clear_normal_16;
     appearance2.ImageBackgroundAlpha = Infragistics.Win.Alpha.Opaque;
     editorButton1.Appearance = appearance2;
     editorButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.FlatBorderless;
     appearance3.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.clear_pressed_16;
     editorButton1.PressedAppearance = appearance3;
     editorButton1.Text = "";
     editorButton1.Width = 16;
     this.favoritesFilterTB.ButtonsRight.Add(editorButton1);
     this.favoritesFilterTB.Location = new System.Drawing.Point(380, 4);
     this.favoritesFilterTB.Name = "favoritesFilterTB";
     this.favoritesFilterTB.NullText = "Favoriten Filter";
     appearance1.FontData.ItalicAsString = "True";
     appearance1.ForeColor = System.Drawing.Color.Gray;
     this.favoritesFilterTB.NullTextAppearance = appearance1;
     this.favoritesFilterTB.Size = new System.Drawing.Size(209, 19);
     this.favoritesFilterTB.TabIndex = 7;
     this.favoritesFilterTB.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.SlateGray;
     this.label1.Location = new System.Drawing.Point(3, 5);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(160, 16);
     this.label1.TabIndex = 8;
     this.label1.Text = "Lyra Favoriten";
     //
     // Favorites
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(593, 673);
     this.Controls.Add(this.favoritesSplitter);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Favorites";
     this.ShowInTaskbar = false;
     this.Text = "Favorites";
     this.favoritesSplitter.Panel1.ResumeLayout(false);
     this.favoritesSplitter.Panel2.ResumeLayout(false);
     this.favoritesSplitter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.favoritesFilterTB)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbEndDateBegin          = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.chkEndDateBegin          = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnModify                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel9              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbEndDate2              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate2              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmdBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel8              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnterpriseType        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbState                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnPrint                 = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraGroupBox3           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGroupBox4           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbSales                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbCustomerService       = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDateBegin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbState)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbCustomerService);
     this.ultraGroupBox1.Controls.Add(this.cmbSales);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDateBegin);
     this.ultraGroupBox1.Controls.Add(this.chkEndDateBegin);
     this.ultraGroupBox1.Controls.Add(this.btnModify);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate2);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.cmbEnterpriseType);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.cmbState);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox3);
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox4);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 16);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(998, 176);
     this.ultraGroupBox1.TabIndex = 0;
     //
     // cmbEndDateBegin
     //
     this.cmbEndDateBegin.BackColor = System.Drawing.SystemColors.Window;
     this.cmbEndDateBegin.DateButtons.Add(dateButton1);
     this.cmbEndDateBegin.Location          = new System.Drawing.Point(685, 48);
     this.cmbEndDateBegin.Name              = "cmbEndDateBegin";
     this.cmbEndDateBegin.NonAutoSizeHeight = 23;
     this.cmbEndDateBegin.Size              = new System.Drawing.Size(144, 21);
     this.cmbEndDateBegin.TabIndex          = 39;
     //
     // chkEndDateBegin
     //
     this.chkEndDateBegin.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDateBegin.Location   = new System.Drawing.Point(565, 48);
     this.chkEndDateBegin.Name       = "chkEndDateBegin";
     this.chkEndDateBegin.Size       = new System.Drawing.Size(120, 20);
     this.chkEndDateBegin.TabIndex   = 38;
     this.chkEndDateBegin.Text       = "开始时间";
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(861, 112);
     this.btnModify.Name        = "btnModify";
     this.btnModify.Size        = new System.Drawing.Size(75, 23);
     this.btnModify.TabIndex    = 37;
     this.btnModify.Text        = "修改";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(24, 112);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 36;
     this.ultraLabel9.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(128, 112);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(104, 21);
     this.cmbMemberRight.TabIndex     = 35;
     //
     // cmbEndDate2
     //
     this.cmbEndDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate2.Location     = new System.Drawing.Point(685, 136);
     this.cmbEndDate2.MaskInput    = "{date} {time}";
     this.cmbEndDate2.Name         = "cmbEndDate2";
     this.cmbEndDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate2.TabIndex     = 32;
     //
     // chkEndDate2
     //
     this.chkEndDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate2.Location    = new System.Drawing.Point(565, 136);
     this.chkEndDate2.Name        = "chkEndDate2";
     this.chkEndDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate2.TabIndex    = 34;
     this.chkEndDate2.Text        = "结束时间";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(685, 112);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmdBeginDate.TabIndex     = 31;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(565, 112);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 33;
     this.chkBeginDate.Text        = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.BackColor = System.Drawing.SystemColors.Window;
     this.cmbEndDate.DateButtons.Add(dateButton2);
     this.cmbEndDate.Location          = new System.Drawing.Point(685, 72);
     this.cmbEndDate.Name              = "cmbEndDate";
     this.cmbEndDate.NonAutoSizeHeight = 23;
     this.cmbEndDate.Size              = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex          = 30;
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(565, 72);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex   = 29;
     this.chkEndDate.Text       = "结束时间";
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(573, 8);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 28;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(296, 112);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 26;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(304, 80);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 24;
     this.ultraLabel6.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(408, 80);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 23;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(24, 80);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 22;
     this.ultraLabel5.Text     = "企业性质:";
     //
     // cmbEnterpriseType
     //
     this.cmbEnterpriseType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnterpriseType.Location     = new System.Drawing.Point(128, 80);
     this.cmbEnterpriseType.Name         = "cmbEnterpriseType";
     this.cmbEnterpriseType.Size         = new System.Drawing.Size(104, 21);
     this.cmbEnterpriseType.TabIndex     = 21;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(861, 80);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 20;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(304, 48);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 19;
     this.ultraLabel4.Text     = "会员状态:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 48);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 18;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(304, 16);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 17;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 16);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 16;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // cmbState
     //
     this.cmbState.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbState.Location     = new System.Drawing.Point(408, 48);
     this.cmbState.Name         = "cmbState";
     this.cmbState.Size         = new System.Drawing.Size(104, 21);
     this.cmbState.TabIndex     = 10;
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(861, 48);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex    = 9;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(861, 16);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 8;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 48);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(408, 16);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 16);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 1;
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Location = new System.Drawing.Point(549, 96);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(296, 64);
     this.ultraGroupBox3.TabIndex = 40;
     this.ultraGroupBox3.Text     = "操作时间段";
     //
     // ultraGroupBox4
     //
     this.ultraGroupBox4.Location = new System.Drawing.Point(549, 32);
     this.ultraGroupBox4.Name     = "ultraGroupBox4";
     this.ultraGroupBox4.Size     = new System.Drawing.Size(296, 64);
     this.ultraGroupBox4.TabIndex = 41;
     this.ultraGroupBox4.Text     = "到期时间段";
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(72, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(200, 80);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "会员档案";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 200);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(976, 368);
     this.ultraGroupBox2.TabIndex = 2;
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(408, 114);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(104, 21);
     this.cmbSales.TabIndex     = 64;
     //
     // cmbCustomerService
     //
     this.cmbCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbCustomerService.Location     = new System.Drawing.Point(685, 10);
     this.cmbCustomerService.Name         = "cmbCustomerService";
     this.cmbCustomerService.Size         = new System.Drawing.Size(144, 21);
     this.cmbCustomerService.TabIndex     = 65;
     //
     // MemberFileQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1183, 573);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberFileQuery";
     this.Text  = Login.constApp.strCardTypeL6Name + "会员档案报表";
     this.Load += new System.EventHandler(this.MemberFileQuery_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDateBegin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbState)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGridPrintDocument1 = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1          = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbEndDate         = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate         = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmdBeginDate       = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate       = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel8        = new Infragistics.Win.Misc.UltraLabel();
     this.txtCustomerService = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7        = new Infragistics.Win.Misc.UltraLabel();
     this.txtSales           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel5        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnterpriseType  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel           = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel3        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2        = new Infragistics.Win.Misc.UltraLabel();
     this.btnPrint           = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery           = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.saveFileDialog1    = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(16, 182);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(1000, 402);
     this.ultraGroupBox2.TabIndex = 4;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(72, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(200, 80);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "非会员档案";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerService);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.txtSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.cmbEnterpriseType);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Location = new System.Drawing.Point(80, 8);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(744, 160);
     this.ultraGroupBox1.TabIndex = 3;
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(456, 120);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 36;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(336, 120);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex    = 38;
     this.chkEndDate.Text        = "结束时间";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(176, 120);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmdBeginDate.TabIndex     = 35;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(56, 120);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 37;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(352, 88);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 32;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // txtCustomerService
     //
     this.txtCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCustomerService.Location     = new System.Drawing.Point(456, 88);
     this.txtCustomerService.Name         = "txtCustomerService";
     this.txtCustomerService.Size         = new System.Drawing.Size(100, 21);
     this.txtCustomerService.TabIndex     = 31;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(72, 88);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 30;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // txtSales
     //
     this.txtSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSales.Location     = new System.Drawing.Point(176, 88);
     this.txtSales.Name         = "txtSales";
     this.txtSales.Size         = new System.Drawing.Size(100, 21);
     this.txtSales.TabIndex     = 29;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(352, 56);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 28;
     this.ultraLabel6.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(456, 56);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 27;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(72, 56);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 26;
     this.ultraLabel5.Text     = "企业性质:";
     //
     // cmbEnterpriseType
     //
     this.cmbEnterpriseType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnterpriseType.Location     = new System.Drawing.Point(176, 56);
     this.cmbEnterpriseType.Name         = "cmbEnterpriseType";
     this.cmbEnterpriseType.Size         = new System.Drawing.Size(104, 21);
     this.cmbEnterpriseType.TabIndex     = 25;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(640, 104);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 20;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(72, 24);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 18;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(352, 24);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 17;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(640, 72);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.Size        = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex    = 9;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(640, 40);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 8;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(176, 24);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(456, 24);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // FMemberFileReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1028, 605);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "FMemberFileReport";
     this.Text  = Login.constApp.strCardTypeL8Name + "非会员档案报表";
     this.Load += new System.EventHandler(this.FMemberFileReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4  = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCharges));
     this.ultraGroupBox1 = new Signature.Windows.Forms.GroupBox();
     this.txtAmountDue   = new Signature.Windows.Forms.MaskedEditNumeric();
     this.lAmountDue     = new System.Windows.Forms.Label();
     this.txtChanges     = new System.Windows.Forms.CheckBox();
     this.txtDate        = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.label22        = new System.Windows.Forms.Label();
     this.txtChargeID    = new Signature.Windows.Forms.MaskedEdit();
     this.label5         = new System.Windows.Forms.Label();
     this.txtName        = new Signature.Windows.Forms.MaskedLabel();
     this.label4         = new System.Windows.Forms.Label();
     this.txtAmount      = new Signature.Windows.Forms.MaskedEditNumeric();
     this.txtComment     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ctrType        = new System.Windows.Forms.ComboBox();
     this.label2         = new System.Windows.Forms.Label();
     this.label1         = new System.Windows.Forms.Label();
     this.txtCustomerID  = new Signature.Windows.Forms.MaskedEdit();
     this.label3         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComment)).BeginInit();
     this.SuspendLayout();
     //
     // txtStatus
     //
     this.txtStatus.Location = new System.Drawing.Point(0, 345);
     this.txtStatus.Size     = new System.Drawing.Size(539, 29);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.AllowDrop         = true;
     appearance1.AlphaLevel                = ((short)(95));
     appearance1.BackColor                 = System.Drawing.Color.Transparent;
     this.ultraGroupBox1.Appearance        = appearance1;
     this.ultraGroupBox1.BackColorInternal = System.Drawing.SystemColors.GradientInactiveCaption;
     this.ultraGroupBox1.Controls.Add(this.txtAmountDue);
     this.ultraGroupBox1.Controls.Add(this.lAmountDue);
     this.ultraGroupBox1.Controls.Add(this.txtChanges);
     this.ultraGroupBox1.Controls.Add(this.txtDate);
     this.ultraGroupBox1.Controls.Add(this.label22);
     this.ultraGroupBox1.Controls.Add(this.txtChargeID);
     this.ultraGroupBox1.Controls.Add(this.label5);
     this.ultraGroupBox1.Controls.Add(this.txtName);
     this.ultraGroupBox1.Controls.Add(this.label4);
     this.ultraGroupBox1.Controls.Add(this.txtAmount);
     this.ultraGroupBox1.Controls.Add(this.txtComment);
     this.ultraGroupBox1.Controls.Add(this.ctrType);
     this.ultraGroupBox1.Controls.Add(this.label2);
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerID);
     this.ultraGroupBox1.Controls.Add(this.label3);
     this.ultraGroupBox1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ultraGroupBox1.Location  = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Name      = "ultraGroupBox1";
     this.ultraGroupBox1.Size      = new System.Drawing.Size(539, 345);
     this.ultraGroupBox1.TabIndex  = 0;
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // txtAmountDue
     //
     this.txtAmountDue.AllowDrop     = true;
     appearance39.TextHAlignAsString = "Right";
     this.txtAmountDue.Appearance    = appearance39;
     this.txtAmountDue.BorderStyle   = Infragistics.Win.UIElementBorderStyle.Solid;
     this.txtAmountDue.EditAs        = Infragistics.Win.UltraWinMaskedEdit.EditAsType.UseSpecifiedMask;
     this.txtAmountDue.FormatString  = "###,###.##";
     this.txtAmountDue.InputMask     = "{LOC}-nnnnnnnnnn.nn";
     this.txtAmountDue.Location      = new System.Drawing.Point(119, 137);
     this.txtAmountDue.Name          = "txtAmountDue";
     this.txtAmountDue.ReadOnly      = true;
     this.txtAmountDue.Size          = new System.Drawing.Size(64, 20);
     this.txtAmountDue.TabIndex      = 273;
     this.txtAmountDue.Text          = "0.00";
     //
     // lAmountDue
     //
     this.lAmountDue.BackColor = System.Drawing.Color.Transparent;
     this.lAmountDue.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lAmountDue.Location  = new System.Drawing.Point(30, 137);
     this.lAmountDue.Name      = "lAmountDue";
     this.lAmountDue.Size      = new System.Drawing.Size(77, 18);
     this.lAmountDue.TabIndex  = 274;
     this.lAmountDue.Text      = "Amount Due :";
     this.lAmountDue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtChanges
     //
     this.txtChanges.AutoSize                = true;
     this.txtChanges.BackColor               = System.Drawing.Color.Transparent;
     this.txtChanges.Location                = new System.Drawing.Point(333, 113);
     this.txtChanges.Name                    = "txtChanges";
     this.txtChanges.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.txtChanges.Size                    = new System.Drawing.Size(148, 17);
     this.txtChanges.TabIndex                = 272;
     this.txtChanges.Text                    = "Show in Rep Charges List";
     this.txtChanges.UseVisualStyleBackColor = false;
     //
     // txtDate
     //
     this.txtDate.DateTime       = new System.DateTime(2007, 12, 13, 0, 0, 0, 0);
     this.txtDate.FormatProvider = new System.Globalization.CultureInfo("en-US");
     this.txtDate.Location       = new System.Drawing.Point(390, 81);
     this.txtDate.Name           = "txtDate";
     this.txtDate.Size           = new System.Drawing.Size(91, 21);
     this.txtDate.TabIndex       = 4;
     this.txtDate.Value          = new System.DateTime(2007, 12, 13, 0, 0, 0, 0);
     this.txtDate.KeyUp         += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // label22
     //
     this.label22.BackColor = System.Drawing.Color.Transparent;
     this.label22.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location  = new System.Drawing.Point(333, 80);
     this.label22.Name      = "label22";
     this.label22.Size      = new System.Drawing.Size(48, 18);
     this.label22.TabIndex  = 271;
     this.label22.Text      = "Date:";
     this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtChargeID
     //
     this.txtChargeID.AllowDrop       = true;
     this.txtChargeID.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(171)))), ((int)(((byte)(173)))), ((int)(((byte)(179)))));
     this.txtChargeID.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtChargeID.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtChargeID.Location        = new System.Drawing.Point(390, 24);
     this.txtChargeID.Name            = "txtCustomerID";
     this.txtChargeID.Size            = new System.Drawing.Size(80, 20);
     this.txtChargeID.TabIndex        = 5;
     this.txtChargeID.KeyUp          += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Location  = new System.Drawing.Point(322, 24);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(59, 20);
     this.label5.TabIndex  = 269;
     this.label5.Text      = "Charge ID:";
     //
     // txtName
     //
     this.txtName.AllowDrop            = true;
     appearance2.FontData.SizeInPoints = 12F;
     this.txtName.Appearance           = appearance2;
     this.txtName.Location             = new System.Drawing.Point(38, 50);
     this.txtName.Name     = "txtName";
     this.txtName.Size     = new System.Drawing.Size(452, 25);
     this.txtName.TabIndex = 5;
     this.txtName.TabStop  = true;
     this.txtName.Value    = null;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Location  = new System.Drawing.Point(35, 163);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(58, 20);
     this.label4.TabIndex  = 267;
     this.label4.Text      = "Comment:";
     //
     // txtAmount
     //
     this.txtAmount.AllowDrop       = true;
     appearance3.TextHAlignAsString = "Right";
     this.txtAmount.Appearance      = appearance3;
     this.txtAmount.BorderStyle     = Infragistics.Win.UIElementBorderStyle.Solid;
     this.txtAmount.DataMode        = Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw;
     this.txtAmount.EditAs          = Infragistics.Win.UltraWinMaskedEdit.EditAsType.Currency;
     this.txtAmount.FormatString    = "###,###.##";
     this.txtAmount.InputMask       = "{LOC}$ -n,nnn,nnn.nn";
     this.txtAmount.Location        = new System.Drawing.Point(119, 110);
     this.txtAmount.Name            = "txtAmountDue";
     this.txtAmount.Size            = new System.Drawing.Size(109, 20);
     this.txtAmount.TabIndex        = 2;
     this.txtAmount.KeyUp          += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // txtComment
     //
     this.txtComment.AlwaysInEditMode = true;
     appearance4.TextHAlignAsString   = "Left";
     appearance4.TextTrimming         = Infragistics.Win.TextTrimming.EllipsisCharacterWithLineLimit;
     this.txtComment.Appearance       = appearance4;
     this.txtComment.Font             = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtComment.Location         = new System.Drawing.Point(119, 163);
     this.txtComment.Multiline        = true;
     this.txtComment.Name             = "txtComment";
     this.txtComment.Size             = new System.Drawing.Size(371, 149);
     this.txtComment.TabIndex         = 3;
     this.txtComment.KeyUp           += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // ctrType
     //
     this.ctrType.FormattingEnabled = true;
     this.ctrType.Items.AddRange(new object[] {
         "Payment",
         "Adjustment",
         "Invoice"
     });
     this.ctrType.Location = new System.Drawing.Point(119, 80);
     this.ctrType.Name     = "ctrType";
     this.ctrType.Size     = new System.Drawing.Size(109, 21);
     this.ctrType.TabIndex = 1;
     this.ctrType.Text     = "Payment";
     this.ctrType.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(35, 110);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(49, 20);
     this.label2.TabIndex  = 26;
     this.label2.Text      = "Amount:";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(35, 83);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(78, 20);
     this.label1.TabIndex  = 25;
     this.label1.Text      = "Type Charge:";
     //
     // txtCustomerID
     //
     this.txtCustomerID.AllowDrop       = true;
     this.txtCustomerID.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(171)))), ((int)(((byte)(173)))), ((int)(((byte)(179)))));
     this.txtCustomerID.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCustomerID.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCustomerID.Location        = new System.Drawing.Point(119, 24);
     this.txtCustomerID.Name            = "txtCustomerID";
     this.txtCustomerID.Size            = new System.Drawing.Size(80, 20);
     this.txtCustomerID.TabIndex        = 0;
     this.txtCustomerID.KeyUp          += new System.Windows.Forms.KeyEventHandler(this.txtCustomerID_KeyUp);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location  = new System.Drawing.Point(35, 24);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(78, 20);
     this.label3.TabIndex  = 24;
     this.label3.Text      = "Customer ID:";
     //
     // frmCharges
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(539, 374);
     this.Controls.Add(this.ultraGroupBox1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "frmCharges";
     this.ShowInTaskbar = false;
     this.Text          = "Customer Charges";
     this.Load         += new System.EventHandler(this.frmOrder_Load);
     this.Controls.SetChildIndex(this.txtStatus, 0);
     this.Controls.SetChildIndex(this.ultraGroupBox1, 0);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComment)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #11
0
ファイル: frmFMBSaveLayout.cs プロジェクト: trantan490/web
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.pnlBottom       = new System.Windows.Forms.Panel();
     base.Load           += new System.EventHandler(frmFMBSaveLayout_Load);
     this.btnSave         = new System.Windows.Forms.Button();
     this.btnSave.Click  += new System.EventHandler(btnSave_Click);
     this.btnClose        = new System.Windows.Forms.Button();
     this.btnClose.Click += new System.EventHandler(btnClose_Click);
     this.pnlMid          = new System.Windows.Forms.Panel();
     this.grpFile         = new System.Windows.Forms.GroupBox();
     this.lblFile         = new System.Windows.Forms.Label();
     this.txtFileName     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.pnlBottom.SuspendLayout();
     this.pnlMid.SuspendLayout();
     this.grpFile.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.txtFileName).BeginInit();
     this.SuspendLayout();
     //
     //pnlBottom
     //
     this.pnlBottom.Controls.Add(this.btnSave);
     this.pnlBottom.Controls.Add(this.btnClose);
     this.pnlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlBottom.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pnlBottom.Location = new System.Drawing.Point(0, 64);
     this.pnlBottom.Name     = "pnlBottom";
     this.pnlBottom.Size     = new System.Drawing.Size(294, 40);
     this.pnlBottom.TabIndex = 2;
     //
     //btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnSave.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSave.Location     = new System.Drawing.Point(135, 9);
     this.btnSave.Name         = "btnSave";
     this.btnSave.Size         = new System.Drawing.Size(74, 23);
     this.btnSave.TabIndex     = 0;
     this.btnSave.Text         = "Save";
     //
     //btnClose
     //
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.Location     = new System.Drawing.Point(213, 9);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(74, 23);
     this.btnClose.TabIndex     = 1;
     this.btnClose.Text         = "Close";
     //
     //pnlMid
     //
     this.pnlMid.Controls.Add(this.grpFile);
     this.pnlMid.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.pnlMid.DockPadding.Left  = 3;
     this.pnlMid.DockPadding.Right = 3;
     this.pnlMid.Location          = new System.Drawing.Point(0, 0);
     this.pnlMid.Name              = "pnlMid";
     this.pnlMid.Size              = new System.Drawing.Size(294, 64);
     this.pnlMid.TabIndex          = 3;
     //
     //grpFile
     //
     this.grpFile.Controls.Add(this.lblFile);
     this.grpFile.Controls.Add(this.txtFileName);
     this.grpFile.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.grpFile.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.grpFile.Location  = new System.Drawing.Point(3, 0);
     this.grpFile.Name      = "grpFile";
     this.grpFile.Size      = new System.Drawing.Size(288, 64);
     this.grpFile.TabIndex  = 0;
     this.grpFile.TabStop   = false;
     //
     //lblFile
     //
     this.lblFile.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblFile.Location  = new System.Drawing.Point(12, 26);
     this.lblFile.Name      = "lblFile";
     this.lblFile.Size      = new System.Drawing.Size(75, 14);
     this.lblFile.TabIndex  = 32;
     this.lblFile.Text      = "File Name";
     //
     //txtFileName
     //
     this.txtFileName.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
     this.txtFileName.Location    = new System.Drawing.Point(99, 23);
     this.txtFileName.MaxLength   = 20;
     this.txtFileName.Name        = "txtFileName";
     this.txtFileName.Size        = new System.Drawing.Size(179, 19);
     this.txtFileName.TabIndex    = 31;
     //
     //frmFMBSaveLayout
     //
     this.AcceptButton      = this.btnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnClose;
     this.ClientSize        = new System.Drawing.Size(294, 104);
     this.Controls.Add(this.pnlMid);
     this.Controls.Add(this.pnlBottom);
     this.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(300, 150);
     this.Name            = "frmFMBSaveLayout";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Save Layout Configuration";
     this.pnlBottom.ResumeLayout(false);
     this.pnlMid.ResumeLayout(false);
     this.grpFile.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.txtFileName).EndInit();
     this.ResumeLayout(false);
 }
コード例 #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK            = new Infragistics.Win.Misc.UltraButton();
     this.btnCancel        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel1      = new Infragistics.Win.Misc.UltraLabel();
     this.txtJobName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel4      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox1   = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtPrice         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraCombo1      = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.cmbBookEndDate   = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBookBeginDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraLabel5      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6      = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnd           = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBegin         = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBegin)).BeginInit();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(96, 392);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex    = 0;
     this.btnOK.Text        = "确定";
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(224, 392);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex    = 1;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(64, 73);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 2;
     this.ultraLabel1.Text     = "招聘会名称:";
     //
     // txtJobName
     //
     this.txtJobName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtJobName.Location     = new System.Drawing.Point(168, 73);
     this.txtJobName.Name         = "txtJobName";
     this.txtJobName.Size         = new System.Drawing.Size(200, 21);
     this.txtJobName.TabIndex     = 3;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(64, 112);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 4;
     this.ultraLabel2.Text     = "所属服务产品:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(52, 162);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel3.TabIndex = 6;
     this.ultraLabel3.Text     = "招聘会开始时间:";
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(52, 202);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel4.TabIndex = 7;
     this.ultraLabel4.Text     = "招聘会结束时间:";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.txtPrice);
     this.ultraGroupBox1.Controls.Add(this.ultraCombo1);
     this.ultraGroupBox1.Controls.Add(this.cmbBookEndDate);
     this.ultraGroupBox1.Controls.Add(this.cmbBookBeginDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbEnd);
     this.ultraGroupBox1.Controls.Add(this.cmbBegin);
     this.ultraGroupBox1.Controls.Add(this.txtJobName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.btnOK);
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Location = new System.Drawing.Point(248, 16);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(384, 472);
     this.ultraGroupBox1.TabIndex = 8;
     //
     // txtPrice
     //
     this.txtPrice.Location = new System.Drawing.Point(168, 133);
     this.txtPrice.Name     = "txtPrice";
     this.txtPrice.Size     = new System.Drawing.Size(200, 23);
     this.txtPrice.TabIndex = 19;
     //
     // ultraCombo1
     //
     this.ultraCombo1.CharacterCasing   = System.Windows.Forms.CharacterCasing.Normal;
     this.ultraCombo1.DisplayStyle      = Infragistics.Win.EmbeddableElementDisplayStyle.Default;
     this.ultraCombo1.DropDownStyle     = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
     this.ultraCombo1.Location          = new System.Drawing.Point(168, 113);
     this.ultraCombo1.Name              = "ultraCombo1";
     this.ultraCombo1.Size              = new System.Drawing.Size(200, 22);
     this.ultraCombo1.TabIndex          = 18;
     this.ultraCombo1.AfterDropDown    += new System.EventHandler(this.ultraCombo1_AfterDropDown);
     this.ultraCombo1.ValueChanged     += new System.EventHandler(this.ultraCombo1_ValueChanged);
     this.ultraCombo1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraCombo1_InitializeLayout);
     //
     // cmbBookEndDate
     //
     this.cmbBookEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBookEndDate.Location     = new System.Drawing.Point(172, 282);
     this.cmbBookEndDate.MaskInput    = "{date} {time}";
     this.cmbBookEndDate.Name         = "cmbBookEndDate";
     this.cmbBookEndDate.Size         = new System.Drawing.Size(200, 21);
     this.cmbBookEndDate.TabIndex     = 16;
     //
     // cmbBookBeginDate
     //
     this.cmbBookBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBookBeginDate.Location     = new System.Drawing.Point(172, 242);
     this.cmbBookBeginDate.MaskInput    = "{date} {time}";
     this.cmbBookBeginDate.Name         = "cmbBookBeginDate";
     this.cmbBookBeginDate.Size         = new System.Drawing.Size(200, 21);
     this.cmbBookBeginDate.TabIndex     = 15;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(60, 242);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel5.TabIndex = 13;
     this.ultraLabel5.Text     = "预订开始时间:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(60, 282);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(104, 23);
     this.ultraLabel6.TabIndex = 14;
     this.ultraLabel6.Text     = "预订结束时间:";
     //
     // cmbEnd
     //
     this.cmbEnd.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnd.Location      = new System.Drawing.Point(172, 202);
     this.cmbEnd.MaskInput     = "{date} {time}";
     this.cmbEnd.Name          = "cmbEnd";
     this.cmbEnd.Size          = new System.Drawing.Size(200, 21);
     this.cmbEnd.TabIndex      = 12;
     this.cmbEnd.ValueChanged += new System.EventHandler(this.cmbEnd_ValueChanged);
     //
     // cmbBegin
     //
     this.cmbBegin.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBegin.Location      = new System.Drawing.Point(172, 162);
     this.cmbBegin.MaskInput     = "{date} {time}";
     this.cmbBegin.Name          = "cmbBegin";
     this.cmbBegin.Size          = new System.Drawing.Size(200, 21);
     this.cmbBegin.TabIndex      = 11;
     this.cmbBegin.ValueChanged += new System.EventHandler(this.cmbBegin_ValueChanged);
     //
     // JobAdd
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(880, 517);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "JobAdd";
     this.Text  = "招聘会新设";
     this.Load += new System.EventHandler(this.JobAdd_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBegin)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #13
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.ListaPerfiles = new System.Windows.Forms.CheckedListBox();
     this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.treeViewSecciones   = new System.Windows.Forms.TreeView();
     this.label1              = new System.Windows.Forms.Label();
     this.txtNombreUsuario    = new System.Windows.Forms.TextBox();
     this.Password            = new System.Windows.Forms.Label();
     this.label2              = new System.Windows.Forms.Label();
     this.ultraTextEditor1    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.uteConfirmaPassword = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.label3              = new System.Windows.Forms.Label();
     this.mzCmbPersona        = new mz.erp.ui.controls.mzComboSearchEditor();
     this.chkActivo           = new System.Windows.Forms.CheckBox();
     this.equipo              = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.labelEquipo         = new System.Windows.Forms.Label();
     this.notifyIcon1         = new System.Windows.Forms.NotifyIcon(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uteConfirmaPassword)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.equipo)).BeginInit();
     this.SuspendLayout();
     //
     // toolBarStandar
     //
     this.toolBarStandar.Name = "toolBarStandar";
     this.toolBarStandar.Size = new System.Drawing.Size(832, 28);
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup1.Key       = "Perfiles";
     ultraExplorerBarGroup1.Settings.ContainerHeight = 229;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Perfiles";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup2.Key       = "DepositosYSecciones";
     ultraExplorerBarGroup2.Settings.ContainerHeight = 229;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text = "Depósitos y Secciones";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2
     });
     this.ultraExplorerBar1.GroupSettings.ForceSerialization = true;
     this.ultraExplorerBar1.ItemSettings.ForceSerialization  = true;
     this.ultraExplorerBar1.Margins.ForceSerialization       = true;
     this.ultraExplorerBar1.Name = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;             //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size = new System.Drawing.Size(832, 450);
     this.ultraExplorerBar1.Controls.SetChildIndex(this.ultraExplorerBarContainerControl3, 0);
     this.ultraExplorerBar1.Controls.SetChildIndex(this.ultraExplorerBarContainerControl2, 0);
     this.ultraExplorerBar1.Controls.SetChildIndex(this.ultraExplorerBarContainerControl1, 0);
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.labelEquipo);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.equipo);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.chkActivo);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.txtNombreUsuario);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.mzCmbPersona);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.uteConfirmaPassword);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraTextEditor1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.Password);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label1);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 48);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(767, 104);
     this.ultraExplorerBarContainerControl1.TabStop  = false;
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ListaPerfiles);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 34);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(767, 229);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // ListaPerfiles
     //
     this.ListaPerfiles.Location = new System.Drawing.Point(0, 0);
     this.ListaPerfiles.Name     = "ListaPerfiles";
     this.ListaPerfiles.Size     = new System.Drawing.Size(760, 229);
     this.ListaPerfiles.TabIndex = 0;
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.treeViewSecciones);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, 322);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(767, 229);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // treeViewSecciones
     //
     this.treeViewSecciones.CheckBoxes         = true;
     this.treeViewSecciones.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.treeViewSecciones.ImageIndex         = -1;
     this.treeViewSecciones.Location           = new System.Drawing.Point(0, 0);
     this.treeViewSecciones.Name               = "treeViewSecciones";
     this.treeViewSecciones.SelectedImageIndex = -1;
     this.treeViewSecciones.Size               = new System.Drawing.Size(767, 229);
     this.treeViewSecciones.TabIndex           = 0;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(0, 2);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(136, 17);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Nombre de Usuario";
     this.label1.Click    += new System.EventHandler(this.label1_Click);
     //
     // txtNombreUsuario
     //
     this.txtNombreUsuario.Location = new System.Drawing.Point(136, 0);
     this.txtNombreUsuario.Name     = "txtNombreUsuario";
     this.txtNombreUsuario.Size     = new System.Drawing.Size(328, 20);
     this.txtNombreUsuario.TabIndex = 0;
     this.txtNombreUsuario.Text     = "";
     //
     // Password
     //
     this.Password.BackColor = System.Drawing.Color.Transparent;
     this.Password.Location  = new System.Drawing.Point(0, 28);
     this.Password.Name      = "Password";
     this.Password.Size      = new System.Drawing.Size(136, 16);
     this.Password.TabIndex  = 2;
     this.Password.Text      = "Password";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(0, 52);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(136, 16);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Confirmar Password";
     //
     // ultraTextEditor1
     //
     this.ultraTextEditor1.Location     = new System.Drawing.Point(136, 24);
     this.ultraTextEditor1.Name         = "ultraTextEditor1";
     this.ultraTextEditor1.PasswordChar = '*';
     this.ultraTextEditor1.Size         = new System.Drawing.Size(328, 21);
     this.ultraTextEditor1.TabIndex     = 1;
     //
     // uteConfirmaPassword
     //
     this.uteConfirmaPassword.Location     = new System.Drawing.Point(136, 48);
     this.uteConfirmaPassword.Name         = "uteConfirmaPassword";
     this.uteConfirmaPassword.PasswordChar = '*';
     this.uteConfirmaPassword.Size         = new System.Drawing.Size(328, 21);
     this.uteConfirmaPassword.TabIndex     = 2;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location  = new System.Drawing.Point(0, 76);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(136, 20);
     this.label3.TabIndex  = 4;
     this.label3.Text      = "Persona";
     //
     // mzCmbPersona
     //
     this.mzCmbPersona.DataValue            = "";
     this.mzCmbPersona.EditObject           = null;
     this.mzCmbPersona.FastSearch           = false;
     this.mzCmbPersona.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mzCmbPersona.HierarchicalSearch   = false;
     this.mzCmbPersona.Location             = new System.Drawing.Point(136, 72);
     this.mzCmbPersona.Name                 = "mzCmbPersona";
     this.mzCmbPersona.ReadOnly             = false;
     this.mzCmbPersona.SearchObject         = null;
     this.mzCmbPersona.SearchObjectListener = null;
     this.mzCmbPersona.Size                 = new System.Drawing.Size(496, 22);
     this.mzCmbPersona.TabIndex             = 3;
     //
     // chkActivo
     //
     this.chkActivo.BackColor   = System.Drawing.Color.Transparent;
     this.chkActivo.Checked     = true;
     this.chkActivo.CheckState  = System.Windows.Forms.CheckState.Checked;
     this.chkActivo.Location    = new System.Drawing.Point(496, 0);
     this.chkActivo.Name        = "chkActivo";
     this.chkActivo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkActivo.Size        = new System.Drawing.Size(136, 24);
     this.chkActivo.TabIndex    = 4;
     this.chkActivo.Text        = "Activo";
     this.chkActivo.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // equipo
     //
     this.equipo.Location      = new System.Drawing.Point(616, 32);
     this.equipo.MaxValue      = 999999;
     this.equipo.MinValue      = 0;
     this.equipo.Name          = "equipo";
     this.equipo.Size          = new System.Drawing.Size(72, 21);
     this.equipo.TabIndex      = 5;
     this.equipo.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     //
     // labelEquipo
     //
     this.labelEquipo.BackColor = System.Drawing.Color.Transparent;
     this.labelEquipo.Location  = new System.Drawing.Point(496, 32);
     this.labelEquipo.Name      = "labelEquipo";
     this.labelEquipo.Size      = new System.Drawing.Size(98, 16);
     this.labelEquipo.TabIndex  = 79;
     this.labelEquipo.Text      = "Equipo del usuario";
     //
     // notifyIcon1
     //
     this.notifyIcon1.Text    = "notifyIcon1";
     this.notifyIcon1.Visible = true;
     //
     // FrmAbmUsuariosEx
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(832, 478);
     this.Name = "FrmAbmUsuariosEx";
     this.Text = "ABM de Usuarios";
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uteConfirmaPassword)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.equipo)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #14
0
ファイル: Batch.designer.cs プロジェクト: Strongc/sencond
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTOR");
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTDATE");
     Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��Ʒ");
     Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_ORDERNO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT_LL");
     Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_ZC_BATCHNO", 0, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_ZC_BATCHNO", 0, true);
     Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLET_COUNT", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLET_COUNT", 3, true);
     Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLET_WEIGHT", 11, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLET_WEIGHT", 11, true);
     Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_BILLET_WEIGHT_LL", 13, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_BILLET_WEIGHT_LL", 13, true);
     Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_WEIGHT");
     Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKED");
     Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKED");
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��ѧ�ɷ֣�%��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_WEIGHT_LL");
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT_LL");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AlS");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance167 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool13 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool14 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ѯ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���2");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���ܺ�");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���ܺ�");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Batch));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ѯ���");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���2");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.CodeType = new System.Windows.Forms.Panel();
     this.rbtn_CodeBC = new System.Windows.Forms.RadioButton();
     this.rbtn_CodeXC = new System.Windows.Forms.RadioButton();
     this.llb_CloseAll = new System.Windows.Forms.LinkLabel();
     this.llb_ExpandAll = new System.Windows.Forms.LinkLabel();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.rbtn_BilletInfo = new System.Windows.Forms.RadioButton();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.rbtn_BatchInfo = new System.Windows.Forms.RadioButton();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.tbQueryButtressNo = new System.Windows.Forms.TextBox();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet2 = new System.Data.DataSet();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataTable3 = new System.Data.DataTable();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn59 = new System.Data.DataColumn();
     this.dataColumn60 = new System.Data.DataColumn();
     this.dataColumn62 = new System.Data.DataColumn();
     this.dataColumn63 = new System.Data.DataColumn();
     this.dataColumn64 = new System.Data.DataColumn();
     this.dataColumn65 = new System.Data.DataColumn();
     this.dataColumn66 = new System.Data.DataColumn();
     this.dataColumn67 = new System.Data.DataColumn();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.cbSelectAll = new System.Windows.Forms.CheckBox();
     this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn68 = new System.Data.DataColumn();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.tbStatics = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea2 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea3 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsDockArea4 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn69 = new System.Data.DataColumn();
     this.dataColumn70 = new System.Data.DataColumn();
     this.dataColumn71 = new System.Data.DataColumn();
     this.dataColumn72 = new System.Data.DataColumn();
     this.dataColumn73 = new System.Data.DataColumn();
     this.dataColumn74 = new System.Data.DataColumn();
     this.dataColumn75 = new System.Data.DataColumn();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.CodeType.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbStatics)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.CodeType);
     this.FrmBase_Fill_Panel.Controls.Add(this.llb_CloseAll);
     this.FrmBase_Fill_Panel.Controls.Add(this.llb_ExpandAll);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtn_BilletInfo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtn_BatchInfo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryButtressNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Filter);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1323, 745);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // CodeType
     //
     this.CodeType.BackColor = System.Drawing.Color.LightBlue;
     this.CodeType.Controls.Add(this.rbtn_CodeBC);
     this.CodeType.Controls.Add(this.rbtn_CodeXC);
     this.coreBind.SetDatabasecommand(this.CodeType, null);
     this.CodeType.Location = new System.Drawing.Point(971, 0);
     this.CodeType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.CodeType.Name = "CodeType";
     this.CodeType.Size = new System.Drawing.Size(267, 29);
     this.CodeType.TabIndex = 0;
     this.coreBind.SetVerification(this.CodeType, null);
     //
     // rbtn_CodeBC
     //
     this.rbtn_CodeBC.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.rbtn_CodeBC, null);
     this.rbtn_CodeBC.ForeColor = System.Drawing.Color.Red;
     this.rbtn_CodeBC.Location = new System.Drawing.Point(136, 4);
     this.rbtn_CodeBC.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_CodeBC.Name = "rbtn_CodeBC";
     this.rbtn_CodeBC.Size = new System.Drawing.Size(118, 19);
     this.rbtn_CodeBC.TabIndex = 0;
     this.rbtn_CodeBC.Text = "ʹ�ð�ı���";
     this.rbtn_CodeBC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_CodeBC, null);
     this.rbtn_CodeBC.Visible = false;
     this.rbtn_CodeBC.CheckedChanged += new System.EventHandler(this.rbtn_CodeXC_CheckedChanged);
     //
     // rbtn_CodeXC
     //
     this.rbtn_CodeXC.AutoSize = true;
     this.rbtn_CodeXC.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtn_CodeXC, null);
     this.rbtn_CodeXC.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.rbtn_CodeXC.Location = new System.Drawing.Point(4, 4);
     this.rbtn_CodeXC.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_CodeXC.Name = "rbtn_CodeXC";
     this.rbtn_CodeXC.Size = new System.Drawing.Size(118, 19);
     this.rbtn_CodeXC.TabIndex = 0;
     this.rbtn_CodeXC.TabStop = true;
     this.rbtn_CodeXC.Text = "ʹ���Ͳı���";
     this.rbtn_CodeXC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_CodeXC, null);
     this.rbtn_CodeXC.Visible = false;
     this.rbtn_CodeXC.CheckedChanged += new System.EventHandler(this.rbtn_CodeXC_CheckedChanged);
     //
     // llb_CloseAll
     //
     this.llb_CloseAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_CloseAll, null);
     this.llb_CloseAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_CloseAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.Location = new System.Drawing.Point(1051, 40);
     this.llb_CloseAll.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.llb_CloseAll.Name = "llb_CloseAll";
     this.llb_CloseAll.Size = new System.Drawing.Size(75, 18);
     this.llb_CloseAll.TabIndex = 0;
     this.llb_CloseAll.TabStop = true;
     this.llb_CloseAll.Text = "ȫ������";
     this.llb_CloseAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_CloseAll, null);
     this.llb_CloseAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_CloseAll_LinkClicked);
     //
     // llb_ExpandAll
     //
     this.llb_ExpandAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_ExpandAll, null);
     this.llb_ExpandAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_ExpandAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.Location = new System.Drawing.Point(968, 40);
     this.llb_ExpandAll.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.llb_ExpandAll.Name = "llb_ExpandAll";
     this.llb_ExpandAll.Size = new System.Drawing.Size(75, 18);
     this.llb_ExpandAll.TabIndex = 0;
     this.llb_ExpandAll.TabStop = true;
     this.llb_ExpandAll.Text = "ȫ��չ��";
     this.llb_ExpandAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_ExpandAll, null);
     this.llb_ExpandAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_ExpandAll_LinkClicked);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(336, 2);
     this.dateTimePicker2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(129, 25);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(128, 2);
     this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(116, 25);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // rbtn_BilletInfo
     //
     this.rbtn_BilletInfo.AutoSize = true;
     this.rbtn_BilletInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtn_BilletInfo, null);
     this.rbtn_BilletInfo.Location = new System.Drawing.Point(692, 5);
     this.rbtn_BilletInfo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_BilletInfo.Name = "rbtn_BilletInfo";
     this.rbtn_BilletInfo.Size = new System.Drawing.Size(88, 19);
     this.rbtn_BilletInfo.TabIndex = 0;
     this.rbtn_BilletInfo.Text = "¯����Ϣ";
     this.rbtn_BilletInfo.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_BilletInfo, null);
     //
     // tbQueryStoveNo
     //
     this.tbQueryStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryStoveNo, null);
     this.tbQueryStoveNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryStoveNo.Location = new System.Drawing.Point(303, 35);
     this.tbQueryStoveNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(88, 25);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // rbtn_BatchInfo
     //
     this.rbtn_BatchInfo.AutoSize = true;
     this.rbtn_BatchInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.rbtn_BatchInfo.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtn_BatchInfo, null);
     this.rbtn_BatchInfo.Location = new System.Drawing.Point(597, 5);
     this.rbtn_BatchInfo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.rbtn_BatchInfo.Name = "rbtn_BatchInfo";
     this.rbtn_BatchInfo.Size = new System.Drawing.Size(88, 19);
     this.rbtn_BatchInfo.TabIndex = 0;
     this.rbtn_BatchInfo.TabStop = true;
     this.rbtn_BatchInfo.Text = "������Ϣ";
     this.rbtn_BatchInfo.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtn_BatchInfo, null);
     this.rbtn_BatchInfo.CheckedChanged += new System.EventHandler(this.rbtn_BatchInfo_CheckedChanged);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(81, 35);
     this.tbQueryBatchNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(88, 25);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // tbQueryButtressNo
     //
     this.coreBind.SetDatabasecommand(this.tbQueryButtressNo, null);
     this.tbQueryButtressNo.Enabled = false;
     this.tbQueryButtressNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryButtressNo.Location = new System.Drawing.Point(508, 35);
     this.tbQueryButtressNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbQueryButtressNo.Name = "tbQueryButtressNo";
     this.tbQueryButtressNo.Size = new System.Drawing.Size(93, 25);
     this.tbQueryButtressNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryButtressNo, null);
     //
     // cbx_Filter
     //
     this.cbx_Filter.AutoSize = true;
     this.cbx_Filter.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbx_Filter, null);
     this.cbx_Filter.Location = new System.Drawing.Point(1173, 40);
     this.cbx_Filter.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(59, 19);
     this.cbx_Filter.TabIndex = 0;
     this.cbx_Filter.Text = "����";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     this.cbx_Filter.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(15, 6);
     this.cbxDateTime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(18, 17);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox1);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel2, null);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 61);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1323, 684);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox1, null);
     this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraGroupBox1.Name = "ultraGroupBox1";
     this.ultraGroupBox1.Size = new System.Drawing.Size(1323, 363);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text = "������Ϣ";
     this.coreBind.SetVerification(this.ultraGroupBox1, null);
     this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataSource = this.dataSet2;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance61.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance61;
     ultraGridColumn1.Header.Caption = "���Ʊ��";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance62.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance62;
     ultraGridColumn2.Header.Caption = "���";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance63.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance63;
     ultraGridColumn3.Header.Caption = "����";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance64.FontData.BoldAsString = "True";
     appearance64.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance64;
     ultraGridColumn4.Header.Caption = "����";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance65.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance65;
     ultraGridColumn5.Header.Caption = "�ƺ�";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance66.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance66;
     ultraGridColumn6.Header.Caption = "���";
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance67.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance67;
     ultraGridColumn7.Header.Caption = "����";
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance68.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance68;
     ultraGridColumn8.Header.Caption = "������";
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance69.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance69;
     ultraGridColumn9.Header.Caption = "����ʱ��";
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(150, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance70.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance70;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance71.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance71;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 6;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance72.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance72;
     ultraGridColumn12.Header.Caption = "����";
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance73.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance73;
     ultraGridColumn13.Header.Caption = "����������";
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(108, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance74.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance74;
     ultraGridColumn14.Header.Caption = "����";
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "�ϼƣ�{0} ����";
     summarySettings1.GroupBySummaryValueAppearance = appearance75;
     summarySettings2.DisplayFormat = "{0} ��";
     summarySettings2.GroupBySummaryValueAppearance = appearance79;
     summarySettings3.DisplayFormat = "{0} ��";
     summarySettings3.GroupBySummaryValueAppearance = appearance80;
     summarySettings4.DisplayFormat = "{0} ��";
     summarySettings4.GroupBySummaryValueAppearance = appearance81;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4});
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn16.Header.Caption = "¯��";
     ultraGridColumn16.Header.VisiblePosition = 0;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn17.Header.Caption = "�ƺ�";
     ultraGridColumn17.Header.VisiblePosition = 1;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn18.Header.Caption = "���";
     ultraGridColumn18.Header.VisiblePosition = 2;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.Caption = "����";
     ultraGridColumn19.Header.VisiblePosition = 3;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance82.FontData.BoldAsString = "True";
     ultraGridColumn20.CellAppearance = appearance82;
     ultraGridColumn20.Header.Caption = "������";
     ultraGridColumn20.Header.VisiblePosition = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn21.Header.Caption = "������";
     ultraGridColumn21.Header.VisiblePosition = 5;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn22.Header.Caption = "C";
     ultraGridColumn22.Header.VisiblePosition = 6;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn23.Header.Caption = "Si";
     ultraGridColumn23.Header.VisiblePosition = 7;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn24.Header.Caption = "Mn";
     ultraGridColumn24.Header.VisiblePosition = 8;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn25.Header.Caption = "S";
     ultraGridColumn25.Header.VisiblePosition = 9;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn26.Header.Caption = "P";
     ultraGridColumn26.Header.VisiblePosition = 10;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn27.Header.Caption = "Ni";
     ultraGridColumn27.Header.VisiblePosition = 11;
     ultraGridColumn27.Hidden = true;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn28.Header.Caption = "Cr";
     ultraGridColumn28.Header.VisiblePosition = 12;
     ultraGridColumn28.Hidden = true;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn29.Header.Caption = "Cu";
     ultraGridColumn29.Header.VisiblePosition = 13;
     ultraGridColumn29.Hidden = true;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn30.Header.Caption = "V";
     ultraGridColumn30.Header.VisiblePosition = 14;
     ultraGridColumn30.Hidden = true;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn31.Header.Caption = "Mo";
     ultraGridColumn31.Header.VisiblePosition = 15;
     ultraGridColumn31.Hidden = true;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn32.Header.Caption = "Ceq";
     ultraGridColumn32.Header.VisiblePosition = 16;
     ultraGridColumn32.Hidden = true;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn33.Header.Caption = "��ע";
     ultraGridColumn33.Header.VisiblePosition = 17;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn34.Header.Caption = "�ж�Ա";
     ultraGridColumn34.Header.VisiblePosition = 18;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn35.Header.Caption = "�ж�ʱ��";
     ultraGridColumn35.Header.VisiblePosition = 19;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn36.Header.Caption = "���Ʊ��";
     ultraGridColumn36.Header.VisiblePosition = 20;
     ultraGridColumn36.Hidden = true;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn37.Header.Caption = "��������";
     ultraGridColumn37.Header.VisiblePosition = 21;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn38.Header.VisiblePosition = 22;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.Header.VisiblePosition = 23;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn40.Header.VisiblePosition = 24;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn41.Header.VisiblePosition = 25;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41});
     ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand2.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand2.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand2.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     appearance83.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance83.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance83.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.HeaderAppearance = appearance83;
     appearance84.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance84.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance84.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.RowSelectorAppearance = appearance84;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance44.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance44;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance45.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance45;
     appearance46.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance46;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance47.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance47.TextHAlignAsString = "Center";
     appearance47.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance47;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance48.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance48;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance49.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance49.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance49.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance49;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 21);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1317, 339);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     //
     // dataSet2
     //
     this.dataSet2.DataSetName = "NewDataSet";
     this.dataSet2.Relations.AddRange(new System.Data.DataRelation[] {
     new System.Data.DataRelation("Relation1", "Table1", "Table2", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_ZC_BATCHNO"}, false)});
     this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable2,
     this.dataTable3});
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn21,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn48,
     this.dataColumn8,
     this.dataColumn11});
     this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.UniqueConstraint("Constraint1", new string[] {
                 "FS_ZC_BATCHNO"}, false)});
     this.dataTable2.TableName = "Table1";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "FS_ZC_BATCHNO";
     this.dataColumn21.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "FN_ZZ_SPEC";
     this.dataColumn33.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "FN_LENGTH";
     this.dataColumn34.ColumnName = "FN_LENGTH";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "FN_BILLET_COUNT";
     this.dataColumn35.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "FS_GP_STEELTYPE";
     this.dataColumn36.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "FS_GP_SPE";
     this.dataColumn37.ColumnName = "FS_GP_SPE";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "FN_GP_LEN";
     this.dataColumn38.ColumnName = "FN_GP_LEN";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "FS_BATCH_OPTOR";
     this.dataColumn39.ColumnName = "FS_BATCH_OPTOR";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "FS_BATCH_OPTDATE";
     this.dataColumn40.ColumnName = "FS_BATCH_OPTDATE";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "��Ʒ";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "����";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FS_ZC_ORDERNO";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FN_BILLET_WEIGHT_LL";
     //
     // dataTable3
     //
     this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn60,
     this.dataColumn62,
     this.dataColumn63,
     this.dataColumn64,
     this.dataColumn65,
     this.dataColumn66,
     this.dataColumn67,
     this.dataColumn72,
     this.dataColumn73,
     this.dataColumn74,
     this.dataColumn75});
     this.dataTable3.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.ForeignKeyConstraint("Relation1", "Table1", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_ZC_BATCHNO"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
     this.dataTable3.TableName = "Table2";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FS_GP_SPE";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FN_GP_LEN";
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn50
     //
     this.dataColumn50.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FN_GP_C";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FN_GP_SI";
     //
     // dataColumn53
     //
     this.dataColumn53.ColumnName = "FN_GP_MN";
     //
     // dataColumn54
     //
     this.dataColumn54.ColumnName = "FN_GP_S";
     //
     // dataColumn55
     //
     this.dataColumn55.ColumnName = "FN_GP_P";
     //
     // dataColumn56
     //
     this.dataColumn56.ColumnName = "FN_GP_NI";
     //
     // dataColumn57
     //
     this.dataColumn57.ColumnName = "FN_GP_CR";
     //
     // dataColumn58
     //
     this.dataColumn58.ColumnName = "FN_GP_CU";
     //
     // dataColumn59
     //
     this.dataColumn59.ColumnName = "FN_GP_V";
     //
     // dataColumn60
     //
     this.dataColumn60.ColumnName = "FN_GP_MO";
     //
     // dataColumn62
     //
     this.dataColumn62.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn63
     //
     this.dataColumn63.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn64
     //
     this.dataColumn64.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn65
     //
     this.dataColumn65.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn66
     //
     this.dataColumn66.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn67
     //
     this.dataColumn67.ColumnName = "FS_CARDNO";
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1323, 321);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 363);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1323, 321);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "������Ϣ";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.cbSelectAll);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraGrid2);
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.tbStatics);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
     this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1317, 297);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // cbSelectAll
     //
     this.cbSelectAll.AutoSize = true;
     this.cbSelectAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbSelectAll, null);
     this.cbSelectAll.Location = new System.Drawing.Point(31, 19);
     this.cbSelectAll.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbSelectAll.Name = "cbSelectAll";
     this.cbSelectAll.Size = new System.Drawing.Size(59, 19);
     this.cbSelectAll.TabIndex = 1;
     this.cbSelectAll.Text = "ȫѡ";
     this.cbSelectAll.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbSelectAll.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbSelectAll, null);
     this.cbSelectAll.CheckedChanged += new System.EventHandler(this.cbSelectAll_CheckedChanged);
     //
     // ultraGrid2
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid2, null);
     this.ultraGrid2.DataMember = "Table1";
     this.ultraGrid2.DataSource = this.dataSet1;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance22.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance22;
     ultraGridColumn42.Header.Caption = "¯��";
     ultraGridColumn42.Header.VisiblePosition = 0;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance23.TextVAlignAsString = "Middle";
     ultraGridColumn43.CellAppearance = appearance23;
     ultraGridColumn43.Header.Caption = "�ƺ�";
     ultraGridColumn43.Header.VisiblePosition = 1;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance24.TextVAlignAsString = "Middle";
     ultraGridColumn44.CellAppearance = appearance24;
     ultraGridColumn44.Header.Caption = "���";
     ultraGridColumn44.Header.VisiblePosition = 2;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance26.TextVAlignAsString = "Middle";
     ultraGridColumn45.CellAppearance = appearance26;
     ultraGridColumn45.Header.Caption = "����";
     ultraGridColumn45.Header.VisiblePosition = 3;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     appearance27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance27.TextVAlignAsString = "Middle";
     ultraGridColumn46.CellAppearance = appearance27;
     ultraGridColumn46.Header.Caption = "������";
     ultraGridColumn46.Header.VisiblePosition = 4;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
     appearance28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance28.TextVAlignAsString = "Middle";
     ultraGridColumn47.CellAppearance = appearance28;
     ultraGridColumn47.Header.Caption = "������";
     ultraGridColumn47.Header.VisiblePosition = 5;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance29.TextVAlignAsString = "Middle";
     ultraGridColumn48.CellAppearance = appearance29;
     ultraGridColumn48.Header.Caption = "C";
     ultraGridColumn48.Header.VisiblePosition = 6;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance30.TextVAlignAsString = "Middle";
     ultraGridColumn49.CellAppearance = appearance30;
     ultraGridColumn49.Header.Caption = "Si";
     ultraGridColumn49.Header.VisiblePosition = 7;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance31.TextVAlignAsString = "Middle";
     ultraGridColumn50.CellAppearance = appearance31;
     ultraGridColumn50.Header.Caption = "Mn";
     ultraGridColumn50.Header.VisiblePosition = 8;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance32.TextVAlignAsString = "Middle";
     ultraGridColumn51.CellAppearance = appearance32;
     ultraGridColumn51.Header.Caption = "S";
     ultraGridColumn51.Header.VisiblePosition = 9;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance33.TextVAlignAsString = "Middle";
     ultraGridColumn52.CellAppearance = appearance33;
     ultraGridColumn52.Header.Caption = "P";
     ultraGridColumn52.Header.VisiblePosition = 10;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance34.TextVAlignAsString = "Middle";
     ultraGridColumn53.CellAppearance = appearance34;
     ultraGridColumn53.Header.Caption = "Ni";
     ultraGridColumn53.Header.VisiblePosition = 11;
     ultraGridColumn53.Hidden = true;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance35.TextVAlignAsString = "Middle";
     ultraGridColumn54.CellAppearance = appearance35;
     ultraGridColumn54.Header.Caption = "Cr";
     ultraGridColumn54.Header.VisiblePosition = 12;
     ultraGridColumn54.Hidden = true;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance36.TextVAlignAsString = "Middle";
     ultraGridColumn55.CellAppearance = appearance36;
     ultraGridColumn55.Header.Caption = "Cu";
     ultraGridColumn55.Header.VisiblePosition = 13;
     ultraGridColumn55.Hidden = true;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance37.TextVAlignAsString = "Middle";
     ultraGridColumn56.CellAppearance = appearance37;
     ultraGridColumn56.Header.Caption = "V";
     ultraGridColumn56.Header.VisiblePosition = 14;
     ultraGridColumn56.Hidden = true;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance38.TextVAlignAsString = "Middle";
     ultraGridColumn57.CellAppearance = appearance38;
     ultraGridColumn57.Header.Caption = "Mo";
     ultraGridColumn57.Header.VisiblePosition = 15;
     ultraGridColumn57.Hidden = true;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance39.TextVAlignAsString = "Middle";
     ultraGridColumn58.CellAppearance = appearance39;
     ultraGridColumn58.Header.Caption = "Ceq";
     ultraGridColumn58.Header.VisiblePosition = 16;
     ultraGridColumn58.Hidden = true;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance40.TextVAlignAsString = "Middle";
     ultraGridColumn59.CellAppearance = appearance40;
     ultraGridColumn59.Header.Caption = "��ע";
     ultraGridColumn59.Header.VisiblePosition = 17;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 25;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance41.TextVAlignAsString = "Middle";
     ultraGridColumn60.CellAppearance = appearance41;
     ultraGridColumn60.Header.Caption = "�ж�Ա";
     ultraGridColumn60.Header.VisiblePosition = 18;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance42.TextVAlignAsString = "Middle";
     ultraGridColumn61.CellAppearance = appearance42;
     ultraGridColumn61.Header.Caption = "�ж�ʱ��";
     ultraGridColumn61.Header.VisiblePosition = 19;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance43.TextVAlignAsString = "Middle";
     ultraGridColumn62.CellAppearance = appearance43;
     ultraGridColumn62.Header.Caption = "��������";
     ultraGridColumn62.Header.VisiblePosition = 20;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance50.TextVAlignAsString = "Middle";
     ultraGridColumn63.CellAppearance = appearance50;
     ultraGridColumn63.Header.Caption = "����";
     ultraGridColumn63.Header.VisiblePosition = 21;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance51.TextVAlignAsString = "Middle";
     ultraGridColumn64.CellAppearance = appearance51;
     ultraGridColumn64.Header.Caption = "����";
     ultraGridColumn64.Header.VisiblePosition = 22;
     ultraGridColumn64.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn64.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn64.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn64.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn65.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance52.TextVAlignAsString = "Middle";
     ultraGridColumn65.CellAppearance = appearance52;
     ultraGridColumn65.Header.Caption = "״̬";
     ultraGridColumn65.Header.VisiblePosition = 23;
     ultraGridColumn65.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn65.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn65.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn65.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn65.RowLayoutColumnInfo.SpanY = 1;
     appearance53.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn66.CellAppearance = appearance53;
     ultraGridColumn66.Header.VisiblePosition = 24;
     ultraGridColumn66.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn66.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn66.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn66.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn66.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn67.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn67.Header.VisiblePosition = 25;
     ultraGridColumn67.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn67.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn67.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn67.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn67.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn68.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn68.Header.VisiblePosition = 26;
     ultraGridColumn68.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn68.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn68.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn68.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn69.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn69.Header.VisiblePosition = 27;
     ultraGridColumn69.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn69.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn69.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(428, 0);
     ultraGridColumn69.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn70.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn70.CellAppearance = appearance54;
     ultraGridColumn70.Header.Caption = "����";
     ultraGridColumn70.Header.VisiblePosition = 28;
     ultraGridColumn70.Hidden = true;
     ultraGridColumn70.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn70.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn70.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn70.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn70.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn71.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn71.CellAppearance = appearance55;
     ultraGridColumn71.Header.Caption = "����";
     ultraGridColumn71.Header.VisiblePosition = 29;
     ultraGridColumn71.Hidden = true;
     ultraGridColumn71.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn71.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn72.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn72.Header.VisiblePosition = 30;
     ultraGridColumn72.Hidden = true;
     ultraGridColumn72.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn72.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn73.Header.VisiblePosition = 31;
     ultraGridColumn73.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn73.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn73.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn74.Header.VisiblePosition = 32;
     ultraGridColumn74.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn74.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn74.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn75.Header.VisiblePosition = 33;
     ultraGridColumn75.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn75.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
     ultraGridColumn75.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn75.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn76.Header.VisiblePosition = 34;
     ultraGridColumn76.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn76.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn76.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn76.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn76.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand3.Columns.AddRange(new object[] {
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58,
     ultraGridColumn59,
     ultraGridColumn60,
     ultraGridColumn61,
     ultraGridColumn62,
     ultraGridColumn63,
     ultraGridColumn64,
     ultraGridColumn65,
     ultraGridColumn66,
     ultraGridColumn67,
     ultraGridColumn68,
     ultraGridColumn69,
     ultraGridColumn70,
     ultraGridColumn71,
     ultraGridColumn72,
     ultraGridColumn73,
     ultraGridColumn74,
     ultraGridColumn75,
     ultraGridColumn76});
     ultraGridBand3.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand3.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand3.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand3.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand3.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
     this.ultraGrid2.DisplayLayout.InterBandSpacing = 8;
     appearance56.FontData.BoldAsString = "True";
     this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance56;
     this.ultraGrid2.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance57.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance57;
     this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid2.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance58.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance58.TextHAlignAsString = "Center";
     appearance58.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance58;
     this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid2.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid2.DisplayLayout.Override.MinRowHeight = 21;
     appearance59.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorAppearance = appearance59;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid2.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid2.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance60.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance60.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance60.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance60;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid2.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid2.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid2.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid2.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
     this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraGrid2.Name = "ultraGrid2";
     this.ultraGrid2.Size = new System.Drawing.Size(1317, 273);
     this.ultraGrid2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid2, null);
     this.ultraGrid2.AfterCellUpdate += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_AfterCellUpdate);
     this.ultraGrid2.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_CellChange);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn47,
     this.dataColumn68,
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn12,
     this.dataColumn61,
     this.dataColumn69,
     this.dataColumn70,
     this.dataColumn71});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "FS_GP_SPE";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FN_GP_LEN";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FN_GP_C";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FN_GP_SI";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FN_GP_MN";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_GP_S";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FN_GP_P";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FN_GP_NI";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FN_GP_CR";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "FN_GP_CU";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FN_GP_V";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FN_GP_MO";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn68
     //
     this.dataColumn68.ColumnName = "FS_CARDNO";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "FN_GPYS_WEIGHT";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FS_CHECKED";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "";
     this.dataColumn4.ColumnName = "CHECKED";
     this.dataColumn4.DataType = typeof(bool);
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "����";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "����";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "��ѧ�ɷ֣�%��";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FN_GPYS_WEIGHT_LL";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "FN_BILLET_WEIGHT_LL";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "�������";
     this.dataColumn12.ColumnName = "FS_UNQUALIFIED";
     //
     // tbStatics
     //
     appearance167.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     appearance167.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     appearance167.TextHAlignAsString = "Center";
     appearance167.TextVAlignAsString = "Middle";
     this.tbStatics.Appearance = appearance167;
     this.tbStatics.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.tbStatics, null);
     this.tbStatics.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tbStatics.Location = new System.Drawing.Point(0, 273);
     this.tbStatics.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbStatics.Name = "tbStatics";
     this.tbStatics.ReadOnly = true;
     this.tbStatics.Size = new System.Drawing.Size(1317, 24);
     this.tbStatics.TabIndex = 1;
     this.coreBind.SetVerification(this.tbStatics, null);
     this.tbStatics.Visible = false;
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.InstanceProps.IsFirstInGroup = true;
     controlContainerTool1.InstanceProps.Width = 25;
     controlContainerTool2.ControlName = "dateTimePicker1";
     controlContainerTool2.InstanceProps.Width = 204;
     controlContainerTool13.ControlName = "dateTimePicker2";
     controlContainerTool13.InstanceProps.Width = 155;
     controlContainerTool14.ControlName = "rbtn_BatchInfo";
     controlContainerTool14.InstanceProps.IsFirstInGroup = true;
     controlContainerTool15.ControlName = "rbtn_BilletInfo";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool1,
     controlContainerTool2,
     controlContainerTool13,
     controlContainerTool14,
     controlContainerTool15});
     ultraToolbar1.Text = "UltraToolbar2";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     controlContainerTool4.ControlName = "tbQueryBatchNo";
     controlContainerTool4.InstanceProps.IsFirstInGroup = true;
     controlContainerTool4.InstanceProps.Width = 160;
     controlContainerTool8.ControlName = "tbQueryStoveNo";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     controlContainerTool8.InstanceProps.Width = 160;
     controlContainerTool9.ControlName = "tbQueryButtressNo";
     controlContainerTool9.InstanceProps.IsFirstInGroup = true;
     controlContainerTool9.InstanceProps.Width = 150;
     buttonTool1.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool4,
     controlContainerTool8,
     controlContainerTool9,
     buttonTool1,
     buttonTool2,
     buttonTool3});
     ultraToolbar2.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool10.ControlName = "tbQueryButtressNo";
     controlContainerTool10.SharedPropsInternal.Caption = "���ܺ�";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 150;
     appearance76.Image = ((object)(resources.GetObject("appearance76.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance76;
     buttonTool6.SharedPropsInternal.Caption = "��ѯ";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool11.ControlName = "tbQueryStoveNo";
     controlContainerTool11.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool11.SharedPropsInternal.Width = 160;
     appearance77.Image = ((object)(resources.GetObject("appearance77.Image")));
     buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance77;
     buttonTool7.SharedPropsInternal.Caption = "����";
     buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance78.Image = ((object)(resources.GetObject("appearance78.Image")));
     buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance78;
     buttonTool8.SharedPropsInternal.Caption = "��������";
     buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.ControlName = "tbQueryBatchNo";
     controlContainerTool12.SharedPropsInternal.Caption = "���Ʊ��";
     controlContainerTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.SharedPropsInternal.Width = 160;
     controlContainerTool3.ControlName = "cbxDateTime";
     controlContainerTool3.SharedPropsInternal.Caption = " ";
     controlContainerTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool3.SharedPropsInternal.Width = 25;
     controlContainerTool5.ControlName = "dateTimePicker1";
     controlContainerTool5.SharedPropsInternal.Caption = "����ʱ���";
     controlContainerTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool5.SharedPropsInternal.Width = 204;
     controlContainerTool6.ControlName = "dateTimePicker2";
     controlContainerTool6.SharedPropsInternal.Caption = "��";
     controlContainerTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool6.SharedPropsInternal.Width = 155;
     controlContainerTool7.ControlName = "rbtn_BatchInfo";
     controlContainerTool7.SharedPropsInternal.Caption = "��ѯ���";
     controlContainerTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool17.ControlName = "rbtn_BilletInfo";
     controlContainerTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool10,
     buttonTool6,
     controlContainerTool11,
     buttonTool7,
     buttonTool8,
     controlContainerTool12,
     controlContainerTool3,
     controlContainerTool5,
     controlContainerTool6,
     controlContainerTool7,
     controlContainerTool17});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1323, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1323, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 745);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1323, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // ultraToolbarsDockArea1
     //
     this.ultraToolbarsDockArea1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea1, null);
     this.ultraToolbarsDockArea1.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this.ultraToolbarsDockArea1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea1.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea1.Name = "ultraToolbarsDockArea1";
     this.ultraToolbarsDockArea1.Size = new System.Drawing.Size(1323, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea1, null);
     //
     // ultraToolbarsDockArea2
     //
     this.ultraToolbarsDockArea2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea2, null);
     this.ultraToolbarsDockArea2.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this.ultraToolbarsDockArea2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea2.Location = new System.Drawing.Point(0, 745);
     this.ultraToolbarsDockArea2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea2.Name = "ultraToolbarsDockArea2";
     this.ultraToolbarsDockArea2.Size = new System.Drawing.Size(1323, 0);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea2, null);
     //
     // ultraToolbarsDockArea3
     //
     this.ultraToolbarsDockArea3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea3, null);
     this.ultraToolbarsDockArea3.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this.ultraToolbarsDockArea3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea3.Location = new System.Drawing.Point(0, 0);
     this.ultraToolbarsDockArea3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea3.Name = "ultraToolbarsDockArea3";
     this.ultraToolbarsDockArea3.Size = new System.Drawing.Size(0, 745);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea3, null);
     //
     // ultraToolbarsDockArea4
     //
     this.ultraToolbarsDockArea4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.ultraToolbarsDockArea4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this.ultraToolbarsDockArea4, null);
     this.ultraToolbarsDockArea4.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this.ultraToolbarsDockArea4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.ultraToolbarsDockArea4.Location = new System.Drawing.Point(1323, 0);
     this.ultraToolbarsDockArea4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.ultraToolbarsDockArea4.Name = "ultraToolbarsDockArea4";
     this.ultraToolbarsDockArea4.Size = new System.Drawing.Size(0, 745);
     this.coreBind.SetVerification(this.ultraToolbarsDockArea4, null);
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "As";
     this.dataColumn61.ColumnName = "FN_GP_AS";
     //
     // dataColumn69
     //
     this.dataColumn69.Caption = "Ti";
     this.dataColumn69.ColumnName = "FN_GP_TI";
     //
     // dataColumn70
     //
     this.dataColumn70.Caption = "Sb";
     this.dataColumn70.ColumnName = "FN_GP_SB";
     //
     // dataColumn71
     //
     this.dataColumn71.Caption = "Als";
     this.dataColumn71.ColumnName = "FN_GP_AlS";
     //
     // dataColumn72
     //
     this.dataColumn72.Caption = "As";
     this.dataColumn72.ColumnName = "FN_GP_AS";
     //
     // dataColumn73
     //
     this.dataColumn73.Caption = "Ti";
     this.dataColumn73.ColumnName = "FN_GP_TI";
     //
     // dataColumn74
     //
     this.dataColumn74.Caption = "Sb";
     this.dataColumn74.ColumnName = "FN_GP_SB";
     //
     // dataColumn75
     //
     this.dataColumn75.Caption = "Als";
     this.dataColumn75.ColumnName = "FN_GP_ALS";
     //
     // Batch
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1323, 745);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.Controls.Add(this.ultraToolbarsDockArea3);
     this.Controls.Add(this.ultraToolbarsDockArea4);
     this.Controls.Add(this.ultraToolbarsDockArea1);
     this.Controls.Add(this.ultraToolbarsDockArea2);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.Name = "Batch";
     this.Text = "����";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.Batch_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.CodeType.ResumeLayout(false);
     this.CodeType.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbStatics)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.shipperTabs       = new Signature.Windows.Forms.TabControl();
     this.tabPage1          = new System.Windows.Forms.TabPage();
     this.dgTrackingInfo    = new System.Windows.Forms.DataGrid();
     this.txtShipTo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtShippedFrom    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.label4            = new System.Windows.Forms.Label();
     this.txtWeight         = new System.Windows.Forms.TextBox();
     this.label12           = new System.Windows.Forms.Label();
     this.txtService        = new System.Windows.Forms.TextBox();
     this.label11           = new System.Windows.Forms.Label();
     this.txtReference      = new System.Windows.Forms.TextBox();
     this.lbReference       = new System.Windows.Forms.Label();
     this.txtBilledOn       = new System.Windows.Forms.TextBox();
     this.lbShippedSigned   = new System.Windows.Forms.Label();
     this.lbTo              = new System.Windows.Forms.Label();
     this.txtSchDelivery    = new System.Windows.Forms.TextBox();
     this.txtType           = new System.Windows.Forms.TextBox();
     this.lbDelivery        = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.txtTrackingNumber = new System.Windows.Forms.TextBox();
     this.cmdTrack          = new System.Windows.Forms.Button();
     this.label3            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.tabPage2          = new System.Windows.Forms.TabPage();
     this.label5            = new System.Windows.Forms.Label();
     this.tabPage3          = new System.Windows.Forms.TabPage();
     this.label6            = new System.Windows.Forms.Label();
     this.tabPage4          = new System.Windows.Forms.TabPage();
     this.label7            = new System.Windows.Forms.Label();
     this.txtStatus1        = new System.Windows.Forms.TextBox();
     this.shipperTabs.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgTrackingInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipTo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShippedFrom)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.SuspendLayout();
     //
     // txtStatus
     //
     this.txtStatus.Location = new System.Drawing.Point(0, 708);
     this.txtStatus.Size     = new System.Drawing.Size(584, 29);
     //
     // shipperTabs
     //
     this.shipperTabs.Controls.Add(this.tabPage1);
     this.shipperTabs.Controls.Add(this.tabPage2);
     this.shipperTabs.Controls.Add(this.tabPage3);
     this.shipperTabs.Controls.Add(this.tabPage4);
     this.shipperTabs.ItemSize      = new System.Drawing.Size(0, 15);
     this.shipperTabs.Location      = new System.Drawing.Point(8, 8);
     this.shipperTabs.Name          = "shipperTabs";
     this.shipperTabs.SelectedIndex = 0;
     this.shipperTabs.Size          = new System.Drawing.Size(564, 693);
     this.shipperTabs.TabIndex      = 7;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.Color.Transparent;
     this.tabPage1.Controls.Add(this.dgTrackingInfo);
     this.tabPage1.Controls.Add(this.txtShipTo);
     this.tabPage1.Controls.Add(this.txtShippedFrom);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.txtWeight);
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.txtService);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.txtReference);
     this.tabPage1.Controls.Add(this.lbReference);
     this.tabPage1.Controls.Add(this.txtBilledOn);
     this.tabPage1.Controls.Add(this.lbShippedSigned);
     this.tabPage1.Controls.Add(this.lbTo);
     this.tabPage1.Controls.Add(this.txtSchDelivery);
     this.tabPage1.Controls.Add(this.txtType);
     this.tabPage1.Controls.Add(this.lbDelivery);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.txtTrackingNumber);
     this.tabPage1.Controls.Add(this.cmdTrack);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Location = new System.Drawing.Point(4, 19);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(556, 670);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "UPS";
     //
     // dgTrackingInfo
     //
     this.dgTrackingInfo.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
     this.dgTrackingInfo.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dgTrackingInfo.DataMember      = "";
     this.dgTrackingInfo.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgTrackingInfo.Location        = new System.Drawing.Point(10, 362);
     this.dgTrackingInfo.Name            = "dgTrackingInfo";
     this.dgTrackingInfo.Size            = new System.Drawing.Size(533, 299);
     this.dgTrackingInfo.TabIndex        = 8;
     //
     // txtShipTo
     //
     this.txtShipTo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
     this.txtShipTo.Enabled      = false;
     this.txtShipTo.Location     = new System.Drawing.Point(203, 185);
     this.txtShipTo.Multiline    = true;
     this.txtShipTo.Name         = "txtShipTo";
     this.txtShipTo.Size         = new System.Drawing.Size(262, 42);
     this.txtShipTo.TabIndex     = 33;
     //
     // txtShippedFrom
     //
     this.txtShippedFrom.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
     this.txtShippedFrom.Enabled      = false;
     this.txtShippedFrom.Location     = new System.Drawing.Point(203, 61);
     this.txtShippedFrom.Multiline    = true;
     this.txtShippedFrom.Name         = "txtShippedFrom";
     this.txtShippedFrom.Size         = new System.Drawing.Size(262, 42);
     this.txtShippedFrom.TabIndex     = 32;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(30, 61);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(75, 13);
     this.label4.TabIndex = 30;
     this.label4.Text     = "Shipped From:";
     //
     // txtWeight
     //
     this.txtWeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtWeight.Enabled     = false;
     this.txtWeight.Location    = new System.Drawing.Point(203, 308);
     this.txtWeight.Name        = "txtWeight";
     this.txtWeight.Size        = new System.Drawing.Size(106, 20);
     this.txtWeight.TabIndex    = 29;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(31, 307);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(44, 13);
     this.label12.TabIndex = 28;
     this.label12.Text     = "Weight:";
     //
     // txtService
     //
     this.txtService.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtService.Enabled     = false;
     this.txtService.Location    = new System.Drawing.Point(203, 283);
     this.txtService.Name        = "txtService";
     this.txtService.Size        = new System.Drawing.Size(106, 20);
     this.txtService.TabIndex    = 27;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(31, 283);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(46, 13);
     this.label11.TabIndex = 26;
     this.label11.Text     = "Service:";
     //
     // txtReference
     //
     this.txtReference.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtReference.Enabled     = false;
     this.txtReference.Location    = new System.Drawing.Point(203, 257);
     this.txtReference.Name        = "txtReference";
     this.txtReference.Size        = new System.Drawing.Size(160, 20);
     this.txtReference.TabIndex    = 25;
     //
     // lbReference
     //
     this.lbReference.AutoSize = true;
     this.lbReference.Location = new System.Drawing.Point(30, 257);
     this.lbReference.Name     = "lbReference";
     this.lbReference.Size     = new System.Drawing.Size(111, 13);
     this.lbReference.TabIndex = 24;
     this.lbReference.Text     = "Reference Number(s):";
     //
     // txtBilledOn
     //
     this.txtBilledOn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtBilledOn.Enabled     = false;
     this.txtBilledOn.Location    = new System.Drawing.Point(203, 232);
     this.txtBilledOn.Name        = "txtBilledOn";
     this.txtBilledOn.Size        = new System.Drawing.Size(160, 20);
     this.txtBilledOn.TabIndex    = 23;
     //
     // lbShippedSigned
     //
     this.lbShippedSigned.AutoSize = true;
     this.lbShippedSigned.Location = new System.Drawing.Point(30, 232);
     this.lbShippedSigned.Name     = "lbShippedSigned";
     this.lbShippedSigned.Size     = new System.Drawing.Size(96, 13);
     this.lbShippedSigned.TabIndex = 22;
     this.lbShippedSigned.Text     = "Shipped/Billed On:";
     //
     // lbTo
     //
     this.lbTo.AutoSize = true;
     this.lbTo.Location = new System.Drawing.Point(30, 185);
     this.lbTo.Name     = "lbTo";
     this.lbTo.Size     = new System.Drawing.Size(65, 13);
     this.lbTo.TabIndex = 20;
     this.lbTo.Text     = "Shipped To:";
     //
     // txtSchDelivery
     //
     this.txtSchDelivery.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSchDelivery.Enabled     = false;
     this.txtSchDelivery.Location    = new System.Drawing.Point(203, 159);
     this.txtSchDelivery.Name        = "txtSchDelivery";
     this.txtSchDelivery.Size        = new System.Drawing.Size(160, 20);
     this.txtSchDelivery.TabIndex    = 19;
     //
     // txtType
     //
     this.txtType.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtType.Enabled     = false;
     this.txtType.Location    = new System.Drawing.Point(203, 109);
     this.txtType.Name        = "txtType";
     this.txtType.Size        = new System.Drawing.Size(106, 20);
     this.txtType.TabIndex    = 17;
     //
     // lbDelivery
     //
     this.lbDelivery.AutoSize = true;
     this.lbDelivery.Location = new System.Drawing.Point(30, 163);
     this.lbDelivery.Name     = "lbDelivery";
     this.lbDelivery.Size     = new System.Drawing.Size(102, 13);
     this.lbDelivery.TabIndex = 16;
     this.lbDelivery.Text     = "Scheduled Delivery:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(30, 108);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(34, 13);
     this.label2.TabIndex = 14;
     this.label2.Text     = "Type:";
     //
     // txtTrackingNumber
     //
     this.txtTrackingNumber.Location = new System.Drawing.Point(203, 21);
     this.txtTrackingNumber.Name     = "txtTrackingNumber";
     this.txtTrackingNumber.Size     = new System.Drawing.Size(160, 20);
     this.txtTrackingNumber.TabIndex = 11;
     //
     // cmdTrack
     //
     this.cmdTrack.Location = new System.Drawing.Point(393, 319);
     this.cmdTrack.Name     = "cmdTrack";
     this.cmdTrack.Size     = new System.Drawing.Size(72, 24);
     this.cmdTrack.TabIndex = 13;
     this.cmdTrack.Text     = "Track";
     this.cmdTrack.Click   += new System.EventHandler(this.cmdTrack_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(31, 133);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(40, 13);
     this.label3.TabIndex = 15;
     this.label3.Text     = "Status:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(30, 21);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(92, 13);
     this.label1.TabIndex = 12;
     this.label1.Text     = "Tracking Number:";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Location = new System.Drawing.Point(4, 19);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(480, 557);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "FedEx";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(88, 80);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(159, 20);
     this.label5.TabIndex = 0;
     this.label5.Text     = "Not Yet Supported";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.label6);
     this.tabPage3.Location = new System.Drawing.Point(4, 19);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(480, 557);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "DHL";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(87, 96);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(159, 20);
     this.label6.TabIndex = 1;
     this.label6.Text     = "Not Yet Supported";
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.label7);
     this.tabPage4.Location = new System.Drawing.Point(4, 19);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(480, 557);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "USPS";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(87, 96);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(159, 20);
     this.label7.TabIndex = 1;
     this.label7.Text     = "Not Yet Supported";
     //
     // txtStatus1
     //
     this.txtStatus1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtStatus1.Enabled     = false;
     this.txtStatus1.Location    = new System.Drawing.Point(203, 134);
     this.txtStatus1.Name        = "txtStatus1";
     this.txtStatus1.Size        = new System.Drawing.Size(160, 20);
     this.txtStatus1.TabIndex    = 18;
     //
     // frmTracking
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.BackColor           = System.Drawing.Color.Silver;
     this.ClientSize          = new System.Drawing.Size(584, 737);
     this.Controls.Add(this.shipperTabs);
     this.Name            = "frmTracking";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.Text            = "Shipper Tracking Interface";
     this.TransparencyKey = System.Drawing.Color.Empty;
     this.Load           += new System.EventHandler(this.frmTracking_Load);
     this.Shown          += new System.EventHandler(this.frmTracking_Shown);
     this.Controls.SetChildIndex(this.txtStatus, 0);
     this.Controls.SetChildIndex(this.shipperTabs, 0);
     this.shipperTabs.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgTrackingInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipTo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShippedFrom)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components          = new System.ComponentModel.Container();
     this.ultraGroupBox1      = new Infragistics.Win.Misc.UltraGroupBox();
     this.label1              = new System.Windows.Forms.Label();
     this.cmbDiscount         = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel9         = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSales            = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel20        = new Infragistics.Win.Misc.UltraLabel();
     this.cmdEndDateInMoney   = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.ultraLabel8         = new Infragistics.Win.Misc.UltraLabel();
     this.cmdEndDate          = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.lblInMoney          = new Infragistics.Win.Misc.UltraLabel();
     this.ultraButton2        = new Infragistics.Win.Misc.UltraButton();
     this.txtMemberRight      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7         = new Infragistics.Win.Misc.UltraLabel();
     this.txtInMoney          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6         = new Infragistics.Win.Misc.UltraLabel();
     this.txtBalance          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraButton1        = new Infragistics.Win.Misc.UltraButton();
     this.btnCancel           = new Infragistics.Win.Misc.UltraButton();
     this.txtAddMoney         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5         = new Infragistics.Win.Misc.UltraLabel();
     this.txtMemberName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3         = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2         = new Infragistics.Win.Misc.UltraLabel();
     this.btnInMoney          = new Infragistics.Win.Misc.UltraButton();
     this.txtMemberCardNo     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1         = new Infragistics.Win.Misc.UltraLabel();
     this.errorProvider1      = new System.Windows.Forms.ErrorProvider(this.components);
     this.ultraPrintDocument1 = new Infragistics.Win.Printing.UltraPrintDocument(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdEndDateInMoney)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInMoney)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddMoney)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.label1);
     this.ultraGroupBox1.Controls.Add(this.cmbDiscount);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.cmbSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel20);
     this.ultraGroupBox1.Controls.Add(this.cmdEndDateInMoney);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.cmdEndDate);
     this.ultraGroupBox1.Controls.Add(this.lblInMoney);
     this.ultraGroupBox1.Controls.Add(this.ultraButton2);
     this.ultraGroupBox1.Controls.Add(this.txtMemberRight);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.txtInMoney);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.txtBalance);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.ultraButton1);
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Controls.Add(this.txtAddMoney);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.btnInMoney);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(314, 65);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(462, 493);
     this.ultraGroupBox1.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(308, 367);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(17, 12);
     this.label1.TabIndex = 64;
     this.label1.Text     = "折";
     //
     // cmbDiscount
     //
     this.cmbDiscount.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDiscount.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbDiscount.Location      = new System.Drawing.Point(153, 363);
     this.cmbDiscount.Name          = "cmbDiscount";
     this.cmbDiscount.Size          = new System.Drawing.Size(152, 21);
     this.cmbDiscount.TabIndex      = 63;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(49, 363);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 62;
     this.ultraLabel9.Text     = "折扣:";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(153, 332);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(152, 21);
     this.cmbSales.TabIndex     = 61;
     //
     // ultraLabel20
     //
     this.ultraLabel20.Location = new System.Drawing.Point(49, 332);
     this.ultraLabel20.Name     = "ultraLabel20";
     this.ultraLabel20.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel20.TabIndex = 60;
     this.ultraLabel20.Text     = "销售人员:";
     //
     // cmdEndDateInMoney
     //
     this.cmdEndDateInMoney.BackColor         = System.Drawing.SystemColors.Window;
     this.cmdEndDateInMoney.ButtonStyle       = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.cmdEndDateInMoney.Format            = "yyyy-MM-dd";
     this.cmdEndDateInMoney.Location          = new System.Drawing.Point(152, 301);
     this.cmdEndDateInMoney.Name              = "cmdEndDateInMoney";
     this.cmdEndDateInMoney.NonAutoSizeHeight = 23;
     this.cmdEndDateInMoney.Size              = new System.Drawing.Size(152, 21);
     this.cmdEndDateInMoney.TabIndex          = 58;
     this.cmdEndDateInMoney.Value             = new System.DateTime(2013, 3, 10, 0, 0, 0, 0);
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(28, 299);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(124, 23);
     this.ultraLabel8.TabIndex = 59;
     this.ultraLabel8.Text     = "卡使用时限(充值):";
     //
     // cmdEndDate
     //
     this.cmdEndDate.BackColor         = System.Drawing.SystemColors.Window;
     this.cmdEndDate.ButtonStyle       = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.cmdEndDate.Enabled           = false;
     this.cmdEndDate.Format            = "yyyy-MM-dd";
     this.cmdEndDate.Location          = new System.Drawing.Point(152, 201);
     this.cmdEndDate.Name              = "cmdEndDate";
     this.cmdEndDate.NonAutoSizeHeight = 23;
     this.cmdEndDate.Size              = new System.Drawing.Size(152, 21);
     this.cmdEndDate.TabIndex          = 56;
     this.cmdEndDate.Value             = new System.DateTime(2013, 3, 10, 0, 0, 0, 0);
     //
     // lblInMoney
     //
     this.lblInMoney.Location = new System.Drawing.Point(261, 265);
     this.lblInMoney.Name     = "lblInMoney";
     this.lblInMoney.Size     = new System.Drawing.Size(164, 23);
     this.lblInMoney.TabIndex = 57;
     this.lblInMoney.Text     = "充值后余额:";
     //
     // ultraButton2
     //
     this.ultraButton2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton2.Location    = new System.Drawing.Point(350, 32);
     this.ultraButton2.Name        = "ultraButton2";
     this.ultraButton2.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton2.TabIndex    = 30;
     this.ultraButton2.Text        = "输入卡号";
     this.ultraButton2.Click      += new System.EventHandler(this.ultraButton2_Click);
     //
     // txtMemberRight
     //
     this.txtMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberRight.Enabled      = false;
     this.txtMemberRight.Location     = new System.Drawing.Point(152, 125);
     this.txtMemberRight.Name         = "txtMemberRight";
     this.txtMemberRight.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberRight.TabIndex     = 29;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(48, 125);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 28;
     this.ultraLabel7.Text     = "会员资格:";
     //
     // txtInMoney
     //
     this.txtInMoney.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtInMoney.Location      = new System.Drawing.Point(152, 238);
     this.txtInMoney.Name          = "txtInMoney";
     this.txtInMoney.Size          = new System.Drawing.Size(100, 21);
     this.txtInMoney.TabIndex      = 27;
     this.txtInMoney.ValueChanged += new System.EventHandler(this.txtInMoney_ValueChanged);
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(48, 238);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 26;
     this.ultraLabel6.Text     = "充值金额:";
     //
     // txtBalance
     //
     this.txtBalance.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtBalance.Enabled      = false;
     this.txtBalance.Location     = new System.Drawing.Point(152, 168);
     this.txtBalance.Name         = "txtBalance";
     this.txtBalance.ReadOnly     = true;
     this.txtBalance.Size         = new System.Drawing.Size(100, 21);
     this.txtBalance.TabIndex     = 25;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(48, 168);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 24;
     this.ultraLabel4.Text     = "当前余额:";
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(258, 32);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 12;
     this.ultraButton1.Text        = "刷卡";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(261, 406);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(72, 23);
     this.btnCancel.TabIndex    = 23;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // txtAddMoney
     //
     this.txtAddMoney.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtAddMoney.Location     = new System.Drawing.Point(152, 267);
     this.txtAddMoney.Name         = "txtAddMoney";
     this.txtAddMoney.ReadOnly     = true;
     this.txtAddMoney.Size         = new System.Drawing.Size(100, 21);
     this.txtAddMoney.TabIndex     = 15;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(48, 267);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 14;
     this.ultraLabel5.Text     = "赠送金额:";
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Enabled      = false;
     this.txtMemberName.Location     = new System.Drawing.Point(152, 62);
     this.txtMemberName.Multiline    = true;
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(273, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(48, 64);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 2;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Enabled      = false;
     this.txtPaperNo.Location     = new System.Drawing.Point(152, 96);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(273, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(48, 96);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 4;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // btnInMoney
     //
     this.btnInMoney.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnInMoney.Location    = new System.Drawing.Point(152, 403);
     this.btnInMoney.Name        = "btnInMoney";
     this.btnInMoney.Size        = new System.Drawing.Size(75, 23);
     this.btnInMoney.TabIndex    = 7;
     this.btnInMoney.Text        = "充值";
     this.btnInMoney.Click      += new System.EventHandler(this.btnInMoney_Click);
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Enabled      = false;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(152, 32);
     this.txtMemberCardNo.MaxLength    = 6;
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 1;
     this.txtMemberCardNo.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberCardNo_KeyPress);
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(48, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // ultraPrintDocument1
     //
     this.ultraPrintDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.ultraPrintDocument1_PrintPage);
     //
     // MemberCardInMoney
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1028, 606);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberCardInMoney";
     this.Text  = "一通卡充值";
     this.Load += new System.EventHandler(this.MemberCardInMoney_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdEndDateInMoney)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInMoney)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddMoney)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ultraGroupBox1   = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnCancel        = new Infragistics.Win.Misc.UltraButton();
     this.txtFree          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5      = new Infragistics.Win.Misc.UltraLabel();
     this.txtMemberName    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3      = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2      = new Infragistics.Win.Misc.UltraLabel();
     this.btnInlose        = new Infragistics.Win.Misc.UltraButton();
     this.txtMemberCardNo  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox3   = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1       = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox2   = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtQMemberName   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel8      = new Infragistics.Win.Misc.UltraLabel();
     this.txtQPaperNo      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel9      = new Infragistics.Win.Misc.UltraLabel();
     this.txtQMemberCardNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel10     = new Infragistics.Win.Misc.UltraLabel();
     this.btnQuery         = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberCardNo)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Controls.Add(this.txtFree);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.btnInlose);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(728, 184);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(272, 264);
     this.ultraGroupBox1.TabIndex = 0;
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(168, 192);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(72, 23);
     this.btnCancel.TabIndex    = 23;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // txtFree
     //
     this.txtFree.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtFree.Enabled      = false;
     this.txtFree.Location     = new System.Drawing.Point(152, 152);
     this.txtFree.Name         = "txtFree";
     this.txtFree.Size         = new System.Drawing.Size(100, 21);
     this.txtFree.TabIndex     = 11;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(48, 152);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 10;
     this.ultraLabel5.Text     = "场次:";
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(152, 88);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 3;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(48, 96);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 2;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(152, 120);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 5;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(48, 120);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 4;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // btnInlose
     //
     this.btnInlose.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnInlose.Location    = new System.Drawing.Point(72, 192);
     this.btnInlose.Name        = "btnInlose";
     this.btnInlose.Size        = new System.Drawing.Size(75, 23);
     this.btnInlose.TabIndex    = 7;
     this.btnInlose.Text        = "挂失";
     this.btnInlose.Click      += new System.EventHandler(this.btnInlose_Click);
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(152, 56);
     this.txtMemberCardNo.MaxLength    = 8;
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 1;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(48, 56);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox3.Location = new System.Drawing.Point(32, 184);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(688, 392);
     this.ultraGroupBox3.TabIndex = 5;
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(48, 48);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(256, 56);
     this.ultraGrid1.TabIndex           = 0;
     this.ultraGrid1.Text               = "会员查询结果";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.txtQMemberName);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox2.Controls.Add(this.txtQPaperNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox2.Controls.Add(this.txtQMemberCardNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel10);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Location = new System.Drawing.Point(144, 80);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(640, 88);
     this.ultraGroupBox2.TabIndex = 4;
     //
     // txtQMemberName
     //
     this.txtQMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberName.Location     = new System.Drawing.Point(152, 48);
     this.txtQMemberName.Name         = "txtQMemberName";
     this.txtQMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberName.TabIndex     = 9;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(48, 48);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 8;
     this.ultraLabel8.Text     = "单位名称:";
     //
     // txtQPaperNo
     //
     this.txtQPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQPaperNo.Location     = new System.Drawing.Point(392, 16);
     this.txtQPaperNo.Name         = "txtQPaperNo";
     this.txtQPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQPaperNo.TabIndex     = 11;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(288, 16);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 10;
     this.ultraLabel9.Text     = "工商注册号:";
     //
     // txtQMemberCardNo
     //
     this.txtQMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberCardNo.Location     = new System.Drawing.Point(152, 17);
     this.txtQMemberCardNo.MaxLength    = 8;
     this.txtQMemberCardNo.Name         = "txtQMemberCardNo";
     this.txtQMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberCardNo.TabIndex     = 7;
     //
     // ultraLabel10
     //
     this.ultraLabel10.Location = new System.Drawing.Point(48, 16);
     this.ultraLabel10.Name     = "ultraLabel10";
     this.ultraLabel10.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel10.TabIndex = 6;
     this.ultraLabel10.Text     = "会员卡号:";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(392, 48);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(96, 23);
     this.btnQuery.TabIndex    = 6;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // MemberCardInlose
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1008, 590);
     this.Controls.Add(this.ultraGroupBox3);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberCardInlose";
     this.Text  = Login.constApp.strCardTypeL8Name + "挂失";
     this.Load += new System.EventHandler(this.MemberCardInlose_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberCardNo)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�������");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("A��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_PLAN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_WGT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_WGT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("B��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_PLAN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_WGT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_WGT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_COUNT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_BILLET_WEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("װ¯");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERWEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�ɲ�");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WEIGHT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_ORDERNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ԭ��");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_LEN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTOR");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCH_OPTDATE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_DONE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_DONE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DISCHARGED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PLANPERSON");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_PLANTIME");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_01_FC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_02_FC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RATE_ACTUAL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RATE_THEORY");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_PLAN", 6, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_PLAN", 6, true);
     Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_NUM", 7, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_NUM", 7, true);
     Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_PLAN", 11, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_PLAN", 11, true);
     Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_NUM", 12, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_NUM", 12, true);
     Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings5 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_WGT", 8, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_WGT", 8, true);
     Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_01_WGT_LL", 9, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_01_WGT_LL", 9, true);
     Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings7 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_WGT", 13, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_WGT", 13, true);
     Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings8 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_POINT_02_WGT_LL", 14, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_POINT_02_WGT_LL", 14, true);
     Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings9 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Formula, "round(100 * sum( [FN_POINT_01_WGT_LL] , [FN_POINT_02_WGT_LL] )/sum( [FN_ZZ_WEIGHT" +
             "] ), 2)", "RATE_THEORY", 41, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "RATE_THEORY", 41, true);
     Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings10 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Formula, "round(100 * sum( [FN_POINT_01_WGT] , [FN_POINT_02_WGT] )/sum( [FN_ZZ_WEIGHT] ), 2" +
             ")", "RATE_ACTUAL", 40, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "RATE_ACTUAL", 40, true);
     Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings11 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_ZZ_WEIGHT", 25, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_ZZ_WEIGHT", 25, true);
     Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_POINTID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_PLAN");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_NUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_WGT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_POINT_WGT_LL");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_SPEC");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRODUCTNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTWEIGHTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SINGLENUM");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_SINGLEWEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STANDNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_PRINTTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_TWINSTYPE");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ADDRESSCHECK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STANDARDCHECK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_STEELTYPECHECK");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_BATCHNO");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FCLFLAG");
     Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
     Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool21 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("Ԥ��״̬");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��¯״̬");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool39 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool42 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool44 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmWeightPlanBC));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool45 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("Ԥ��״̬");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��¯״̬");
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbEdt_Finish = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbEdt_Status = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.llb_CloseAll = new System.Windows.Forms.LinkLabel();
     this.llb_ExpandAll = new System.Windows.Forms.LinkLabel();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraCalcManager1 = new Infragistics.Win.UltraWinCalcManager.UltraCalcManager(this.components);
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.dataColumn58 = new System.Data.DataColumn();
     this.dataColumn59 = new System.Data.DataColumn();
     this.dataColumn61 = new System.Data.DataColumn();
     this.dataColumn62 = new System.Data.DataColumn();
     this.dataTable2 = new System.Data.DataTable();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn60 = new System.Data.DataColumn();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.lbl_Rate_Plan2 = new System.Windows.Forms.Label();
     this.lbl_Rate_Plan1 = new System.Windows.Forms.Label();
     this.lbl_Rate_Pre = new System.Windows.Forms.Label();
     this.cbx_WgtT = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_WgtR = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_FC2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_FC1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnSave2 = new System.Windows.Forms.Button();
     this.btnSave1 = new System.Windows.Forms.Button();
     this.btnDone2 = new System.Windows.Forms.Button();
     this.btnDone1 = new System.Windows.Forms.Button();
     this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
     this.cbEdt_CardType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.lbl_Count = new System.Windows.Forms.Label();
     this.cbx_Steel = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.Edt_WgtLL = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_Num2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_Num1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_SingleNum = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.Edt_BatchNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.Edt_OrderNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
     this.cbEdt_Length = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
     this.cbEdt_Spec = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbEdt_StandardNo = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbx_Point2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbEdt_Steel = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cbx_StandardNo = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_Addr = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_Double = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cbx_Point1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Finish)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Status)).BeginInit();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCalcManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtR)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_CardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Steel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_WgtLL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_SingleNum)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_BatchNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_OrderNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Length)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Spec)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_StandardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Steel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_StandardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Addr)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Double)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.cbEdt_Finish);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbEdt_Status);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(992, 654);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // cbEdt_Finish
     //
     this.cbEdt_Finish.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.cbEdt_Finish.AutoSize = false;
     this.coreBind.SetDatabasecommand(this.cbEdt_Finish, null);
     valueListItem1.DataValue = "";
     valueListItem13.DataValue = "1";
     valueListItem13.DisplayText = "��";
     valueListItem12.DataValue = "0";
     valueListItem12.DisplayText = "��";
     this.cbEdt_Finish.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem1,
     valueListItem13,
     valueListItem12});
     this.cbEdt_Finish.Location = new System.Drawing.Point(668, 3);
     this.cbEdt_Finish.MaxLength = 8;
     this.cbEdt_Finish.Name = "cbEdt_Finish";
     this.cbEdt_Finish.Size = new System.Drawing.Size(50, 21);
     this.cbEdt_Finish.TabIndex = 0;
     this.coreBind.SetVerification(this.cbEdt_Finish, null);
     //
     // cbEdt_Status
     //
     this.cbEdt_Status.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.cbEdt_Status.AutoSize = false;
     this.coreBind.SetDatabasecommand(this.cbEdt_Status, null);
     valueListItem27.DataValue = "";
     valueListItem28.DataValue = "1";
     valueListItem28.DisplayText = "��";
     valueListItem29.DataValue = "0";
     valueListItem29.DisplayText = "��";
     this.cbEdt_Status.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem27,
     valueListItem28,
     valueListItem29});
     this.cbEdt_Status.Location = new System.Drawing.Point(578, 3);
     this.cbEdt_Status.MaxLength = 8;
     this.cbEdt_Status.Name = "cbEdt_Status";
     this.cbEdt_Status.Size = new System.Drawing.Size(50, 21);
     this.cbEdt_Status.TabIndex = 0;
     this.coreBind.SetVerification(this.cbEdt_Status, null);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(453, 3);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(85, 21);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(85, 3);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(140, 21);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(247, 3);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(140, 21);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(11, 7);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(15, 14);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel2, null);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 26);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(992, 628);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.llb_CloseAll);
     this.ultraGroupBox2.Controls.Add(this.llb_ExpandAll);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(992, 439);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "��ļ���Ԥ��";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // llb_CloseAll
     //
     this.llb_CloseAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_CloseAll, null);
     this.llb_CloseAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_CloseAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.Location = new System.Drawing.Point(768, 4);
     this.llb_CloseAll.Name = "llb_CloseAll";
     this.llb_CloseAll.Size = new System.Drawing.Size(56, 14);
     this.llb_CloseAll.TabIndex = 0;
     this.llb_CloseAll.TabStop = true;
     this.llb_CloseAll.Text = "ȫ������";
     this.llb_CloseAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_CloseAll, null);
     this.llb_CloseAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_CloseAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_CloseAll_LinkClicked);
     //
     // llb_ExpandAll
     //
     this.llb_ExpandAll.ActiveLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.llb_ExpandAll, null);
     this.llb_ExpandAll.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.llb_ExpandAll.LinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.Location = new System.Drawing.Point(694, 4);
     this.llb_ExpandAll.Name = "llb_ExpandAll";
     this.llb_ExpandAll.Size = new System.Drawing.Size(56, 14);
     this.llb_ExpandAll.TabIndex = 0;
     this.llb_ExpandAll.TabStop = true;
     this.llb_ExpandAll.Text = "ȫ��չ��";
     this.llb_ExpandAll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.llb_ExpandAll, null);
     this.llb_ExpandAll.VisitedLinkColor = System.Drawing.Color.DarkGreen;
     this.llb_ExpandAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llb_ExpandAll_LinkClicked);
     //
     // ultraGrid1
     //
     this.ultraGrid1.CalcManager = this.ultraCalcManager1;
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 6;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn9.Header.VisiblePosition = 8;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn11.Header.VisiblePosition = 10;
     ultraGridColumn11.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 6;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn12.Header.VisiblePosition = 11;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn13.Header.VisiblePosition = 12;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn14.Header.VisiblePosition = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn15.Header.VisiblePosition = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn16.Header.VisiblePosition = 15;
     ultraGridColumn16.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn17.Header.VisiblePosition = 16;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn18.Header.VisiblePosition = 17;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn19.Header.VisiblePosition = 18;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn20.Header.VisiblePosition = 19;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn21.Header.VisiblePosition = 20;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn22.Header.VisiblePosition = 21;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 25;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn23.Header.VisiblePosition = 22;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn24.Header.VisiblePosition = 23;
     ultraGridColumn24.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 4;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn25.Header.VisiblePosition = 24;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn26.Header.VisiblePosition = 25;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn27.Header.VisiblePosition = 26;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn28.Header.VisiblePosition = 27;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn29.Header.VisiblePosition = 28;
     ultraGridColumn29.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn30.Header.VisiblePosition = 29;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn31.Header.VisiblePosition = 30;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn32.Header.VisiblePosition = 31;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 33;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn33.Header.VisiblePosition = 32;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn34.Header.VisiblePosition = 33;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn35.Header.VisiblePosition = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn36.Header.VisiblePosition = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn37.Header.VisiblePosition = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn38.Header.VisiblePosition = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn39.Header.VisiblePosition = 38;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn40.Header.VisiblePosition = 39;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn41.Header.VisiblePosition = 40;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn42.Header.VisiblePosition = 41;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn43.Header.VisiblePosition = 42;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     summarySettings1.DisplayFormat = "{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance17;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance18;
     summarySettings3.DisplayFormat = "{0}";
     summarySettings3.GroupBySummaryValueAppearance = appearance19;
     summarySettings4.DisplayFormat = "{0}";
     summarySettings4.GroupBySummaryValueAppearance = appearance20;
     summarySettings5.DisplayFormat = "{0}";
     summarySettings5.GroupBySummaryValueAppearance = appearance21;
     summarySettings6.DisplayFormat = "{0}";
     summarySettings6.GroupBySummaryValueAppearance = appearance22;
     summarySettings7.DisplayFormat = "{0}";
     summarySettings7.GroupBySummaryValueAppearance = appearance23;
     summarySettings8.DisplayFormat = "{0}";
     summarySettings8.GroupBySummaryValueAppearance = appearance24;
     summarySettings9.DisplayFormat = "{0}";
     summarySettings9.GroupBySummaryValueAppearance = appearance26;
     summarySettings10.DisplayFormat = "{0}";
     summarySettings10.GroupBySummaryValueAppearance = appearance27;
     summarySettings11.DisplayFormat = "{0}";
     summarySettings11.GroupBySummaryValueAppearance = appearance28;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4,
     summarySettings5,
     summarySettings6,
     summarySettings7,
     summarySettings8,
     summarySettings9,
     summarySettings10,
     summarySettings11});
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn44.Header.VisiblePosition = 0;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn45.Header.VisiblePosition = 1;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn46.Header.VisiblePosition = 2;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn47.Header.VisiblePosition = 3;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn48.Header.VisiblePosition = 4;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn49.Header.VisiblePosition = 5;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn50.Header.VisiblePosition = 6;
     ultraGridColumn50.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn51.Header.VisiblePosition = 7;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn52.Header.VisiblePosition = 8;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn53.Header.VisiblePosition = 9;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn54.Header.VisiblePosition = 10;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn55.Header.VisiblePosition = 11;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn56.Header.VisiblePosition = 12;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn57.Header.VisiblePosition = 13;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn58.Header.VisiblePosition = 14;
     ultraGridColumn58.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn59.Header.VisiblePosition = 15;
     ultraGridColumn59.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn60.Header.VisiblePosition = 16;
     ultraGridColumn60.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn60.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn60.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn61.Header.VisiblePosition = 17;
     ultraGridColumn61.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn61.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn62.Header.VisiblePosition = 18;
     ultraGridColumn62.Hidden = true;
     ultraGridColumn62.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn62.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn63.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn63.Header.VisiblePosition = 19;
     ultraGridColumn63.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
     ultraGridBand2.Columns.AddRange(new object[] {
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57,
     ultraGridColumn58,
     ultraGridColumn59,
     ultraGridColumn60,
     ultraGridColumn61,
     ultraGridColumn62,
     ultraGridColumn63});
     ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand2.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand2.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand2.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     appearance29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance29.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.HeaderAppearance = appearance29;
     appearance30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(242)))), ((int)(((byte)(199)))));
     appearance30.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(184)))), ((int)(((byte)(131)))));
     appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     ultraGridBand2.Override.RowSelectorAppearance = appearance30;
     ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance116.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance116;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     appearance117.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance117;
     appearance25.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance25;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance118.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance118.TextHAlignAsString = "Center";
     appearance118.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance118;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance1.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance1;
     appearance119.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance119;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance120.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance120.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance120.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance120.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance120;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 24);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(986, 412);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // ultraCalcManager1
     //
     this.ultraCalcManager1.ContainingControl = this;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
     new System.Data.DataRelation("Relation1", "Table1", "Table2", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_BATCHNO"}, false)});
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1,
     this.dataTable2});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn18,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57,
     this.dataColumn58,
     this.dataColumn59,
     this.dataColumn61,
     this.dataColumn62});
     this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.UniqueConstraint("Constraint1", new string[] {
                 "FS_ZC_BATCHNO"}, false)});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "�������";
     //
     // dataColumn2
     //
     this.dataColumn2.Caption = "���Ʊ��";
     this.dataColumn2.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn3
     //
     this.dataColumn3.Caption = "���";
     this.dataColumn3.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn4
     //
     this.dataColumn4.Caption = "����";
     this.dataColumn4.ColumnName = "FN_LENGTH";
     //
     // dataColumn5
     //
     this.dataColumn5.Caption = "�ƺ�";
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "A��";
     //
     // dataColumn7
     //
     this.dataColumn7.Caption = "Ԥ��";
     this.dataColumn7.ColumnName = "FN_POINT_01_PLAN";
     //
     // dataColumn8
     //
     this.dataColumn8.Caption = "ʵ��";
     this.dataColumn8.ColumnName = "FN_POINT_01_NUM";
     //
     // dataColumn9
     //
     this.dataColumn9.Caption = "����";
     this.dataColumn9.ColumnName = "FN_POINT_01_WGT";
     //
     // dataColumn10
     //
     this.dataColumn10.Caption = "����";
     this.dataColumn10.ColumnName = "FN_POINT_01_WGT_LL";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "B��";
     //
     // dataColumn12
     //
     this.dataColumn12.Caption = "Ԥ��";
     this.dataColumn12.ColumnName = "FN_POINT_02_PLAN";
     //
     // dataColumn13
     //
     this.dataColumn13.Caption = "ʵ��";
     this.dataColumn13.ColumnName = "FN_POINT_02_NUM";
     //
     // dataColumn14
     //
     this.dataColumn14.Caption = "����";
     this.dataColumn14.ColumnName = "FN_POINT_02_WGT";
     //
     // dataColumn15
     //
     this.dataColumn15.Caption = "����";
     this.dataColumn15.ColumnName = "FN_POINT_02_WGT_LL";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "����";
     //
     // dataColumn17
     //
     this.dataColumn17.Caption = "����";
     this.dataColumn17.ColumnName = "FN_BILLET_COUNT";
     //
     // dataColumn18
     //
     this.dataColumn18.Caption = "����";
     this.dataColumn18.ColumnName = "FN_BILLET_WEIGHT";
     //
     // dataColumn19
     //
     this.dataColumn19.Caption = "����";
     this.dataColumn19.ColumnName = "FN_BILLET_WEIGHT_LL";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "װ¯";
     //
     // dataColumn21
     //
     this.dataColumn21.Caption = "����";
     this.dataColumn21.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn22
     //
     this.dataColumn22.Caption = "����";
     this.dataColumn22.ColumnName = "FN_ZC_ENTERWEIGHT";
     //
     // dataColumn23
     //
     this.dataColumn23.Caption = "����";
     this.dataColumn23.ColumnName = "FN_ZC_ENTERWEIGHT_LL";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "�ɲ�";
     //
     // dataColumn25
     //
     this.dataColumn25.Caption = "����";
     this.dataColumn25.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn26
     //
     this.dataColumn26.Caption = "����";
     this.dataColumn26.ColumnName = "FN_ZZ_WEIGHT";
     //
     // dataColumn27
     //
     this.dataColumn27.Caption = "����";
     this.dataColumn27.ColumnName = "FN_ZZ_WEIGHT_LL";
     //
     // dataColumn28
     //
     this.dataColumn28.Caption = "��������";
     this.dataColumn28.ColumnName = "FS_ZC_ORDERNO";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "ԭ��";
     //
     // dataColumn30
     //
     this.dataColumn30.Caption = "���";
     this.dataColumn30.ColumnName = "FS_GP_SPE";
     //
     // dataColumn31
     //
     this.dataColumn31.Caption = "����";
     this.dataColumn31.ColumnName = "FN_GP_LEN";
     //
     // dataColumn32
     //
     this.dataColumn32.Caption = "������";
     this.dataColumn32.ColumnName = "FS_BATCH_OPTOR";
     //
     // dataColumn33
     //
     this.dataColumn33.Caption = "����ʱ��";
     this.dataColumn33.ColumnName = "FS_BATCH_OPTDATE";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "���";
     this.dataColumn53.ColumnName = "FN_POINT_01_DONE";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "���";
     this.dataColumn54.ColumnName = "FN_POINT_02_DONE";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "�ѳ�¯";
     this.dataColumn55.ColumnName = "DISCHARGED";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "Ԥ��Ա";
     this.dataColumn56.ColumnName = "FS_PLANPERSON";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "Ԥ��ʱ��";
     this.dataColumn57.ColumnName = "FD_PLANTIME";
     //
     // dataColumn58
     //
     this.dataColumn58.Caption = "�dz�";
     this.dataColumn58.ColumnName = "FN_POINT_01_FC";
     //
     // dataColumn59
     //
     this.dataColumn59.Caption = "�dz�";
     this.dataColumn59.ColumnName = "FN_POINT_02_FC";
     //
     // dataColumn61
     //
     this.dataColumn61.Caption = "ʵ�سɲ���(%)";
     this.dataColumn61.ColumnName = "RATE_ACTUAL";
     //
     // dataColumn62
     //
     this.dataColumn62.Caption = "���سɲ���(%)";
     this.dataColumn62.ColumnName = "RATE_THEORY";
     //
     // dataTable2
     //
     this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn60});
     this.dataTable2.Constraints.AddRange(new System.Data.Constraint[] {
     new System.Data.ForeignKeyConstraint("Relation1", "Table1", new string[] {
                 "FS_ZC_BATCHNO"}, new string[] {
                 "FS_BATCHNO"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
     this.dataTable2.TableName = "Table2";
     //
     // dataColumn34
     //
     this.dataColumn34.Caption = "������";
     this.dataColumn34.ColumnName = "FS_POINTID";
     //
     // dataColumn35
     //
     this.dataColumn35.Caption = "Ԥ����";
     this.dataColumn35.ColumnName = "FN_POINT_PLAN";
     //
     // dataColumn36
     //
     this.dataColumn36.Caption = "�����";
     this.dataColumn36.ColumnName = "FN_POINT_NUM";
     //
     // dataColumn37
     //
     this.dataColumn37.Caption = "����";
     this.dataColumn37.ColumnName = "FN_POINT_WGT";
     //
     // dataColumn38
     //
     this.dataColumn38.Caption = "����";
     this.dataColumn38.ColumnName = "FN_POINT_WGT_LL";
     //
     // dataColumn39
     //
     this.dataColumn39.Caption = "�ƺ�";
     this.dataColumn39.ColumnName = "FS_STEELTYPE";
     //
     // dataColumn40
     //
     this.dataColumn40.Caption = "���";
     this.dataColumn40.ColumnName = "FS_SPEC";
     //
     // dataColumn41
     //
     this.dataColumn41.Caption = "����";
     this.dataColumn41.ColumnName = "FN_LENGTH";
     //
     // dataColumn42
     //
     this.dataColumn42.Caption = "������";
     this.dataColumn42.ColumnName = "FS_PRODUCTNO";
     //
     // dataColumn43
     //
     this.dataColumn43.Caption = "��������";
     this.dataColumn43.ColumnName = "FS_PRINTWEIGHTTYPE";
     //
     // dataColumn44
     //
     this.dataColumn44.Caption = "����֧��";
     this.dataColumn44.ColumnName = "FN_SINGLENUM";
     //
     // dataColumn45
     //
     this.dataColumn45.Caption = "��������";
     this.dataColumn45.ColumnName = "FN_SINGLEWEIGHT";
     //
     // dataColumn46
     //
     this.dataColumn46.Caption = "��׼��";
     this.dataColumn46.ColumnName = "FS_STANDNO";
     //
     // dataColumn47
     //
     this.dataColumn47.Caption = "��������";
     this.dataColumn47.ColumnName = "FS_PRINTTYPE";
     //
     // dataColumn48
     //
     this.dataColumn48.Caption = "˫��";
     this.dataColumn48.ColumnName = "FS_TWINSTYPE";
     //
     // dataColumn49
     //
     this.dataColumn49.Caption = "��ַ";
     this.dataColumn49.ColumnName = "FS_ADDRESSCHECK";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "��׼";
     this.dataColumn50.ColumnName = "FS_STANDARDCHECK";
     //
     // dataColumn51
     //
     this.dataColumn51.Caption = "�ƺ�";
     this.dataColumn51.ColumnName = "FS_STEELTYPECHECK";
     //
     // dataColumn52
     //
     this.dataColumn52.Caption = "���Ʊ��";
     this.dataColumn52.ColumnName = "FS_BATCHNO";
     //
     // dataColumn60
     //
     this.dataColumn60.Caption = "�dz�";
     this.dataColumn60.ColumnName = "FS_FCLFLAG";
     //
     // cbx_Filter
     //
     this.cbx_Filter.AutoSize = true;
     this.cbx_Filter.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbx_Filter, null);
     this.cbx_Filter.Location = new System.Drawing.Point(868, 2);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(48, 16);
     this.cbx_Filter.TabIndex = 0;
     this.cbx_Filter.Text = "����";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     this.cbx_Filter.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(992, 189);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 439);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(992, 189);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "���ݱ༭����";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.panel1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 20);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(986, 166);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lbl_Rate_Plan2);
     this.panel1.Controls.Add(this.lbl_Rate_Plan1);
     this.panel1.Controls.Add(this.lbl_Rate_Pre);
     this.panel1.Controls.Add(this.cbx_WgtT);
     this.panel1.Controls.Add(this.cbx_WgtR);
     this.panel1.Controls.Add(this.cbx_FC2);
     this.panel1.Controls.Add(this.cbx_FC1);
     this.panel1.Controls.Add(this.btnSave2);
     this.panel1.Controls.Add(this.btnSave1);
     this.panel1.Controls.Add(this.btnDone2);
     this.panel1.Controls.Add(this.btnDone1);
     this.panel1.Controls.Add(this.ultraLabel9);
     this.panel1.Controls.Add(this.cbEdt_CardType);
     this.panel1.Controls.Add(this.lbl_Count);
     this.panel1.Controls.Add(this.cbx_Steel);
     this.panel1.Controls.Add(this.Edt_WgtLL);
     this.panel1.Controls.Add(this.Edt_Num2);
     this.panel1.Controls.Add(this.Edt_Num1);
     this.panel1.Controls.Add(this.Edt_SingleNum);
     this.panel1.Controls.Add(this.Edt_BatchNo);
     this.panel1.Controls.Add(this.Edt_OrderNo);
     this.panel1.Controls.Add(this.ultraLabel3);
     this.panel1.Controls.Add(this.ultraLabel2);
     this.panel1.Controls.Add(this.ultraLabel8);
     this.panel1.Controls.Add(this.ultraLabel6);
     this.panel1.Controls.Add(this.ultraLabel7);
     this.panel1.Controls.Add(this.cbEdt_Length);
     this.panel1.Controls.Add(this.ultraLabel4);
     this.panel1.Controls.Add(this.ultraLabel5);
     this.panel1.Controls.Add(this.ultraLabel1);
     this.panel1.Controls.Add(this.cbEdt_Spec);
     this.panel1.Controls.Add(this.cbEdt_StandardNo);
     this.panel1.Controls.Add(this.cbx_Point2);
     this.panel1.Controls.Add(this.cbEdt_Steel);
     this.panel1.Controls.Add(this.cbx_StandardNo);
     this.panel1.Controls.Add(this.cbx_Addr);
     this.panel1.Controls.Add(this.cbx_Double);
     this.panel1.Controls.Add(this.cbx_Point1);
     this.coreBind.SetDatabasecommand(this.panel1, null);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(986, 166);
     this.panel1.TabIndex = 0;
     this.coreBind.SetVerification(this.panel1, null);
     //
     // lbl_Rate_Plan2
     //
     this.lbl_Rate_Plan2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Rate_Plan2, null);
     this.lbl_Rate_Plan2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Rate_Plan2.ForeColor = System.Drawing.Color.Green;
     this.lbl_Rate_Plan2.Location = new System.Drawing.Point(838, 119);
     this.lbl_Rate_Plan2.Name = "lbl_Rate_Plan2";
     this.lbl_Rate_Plan2.Size = new System.Drawing.Size(29, 12);
     this.lbl_Rate_Plan2.TabIndex = 0;
     this.lbl_Rate_Plan2.Text = "����";
     this.coreBind.SetVerification(this.lbl_Rate_Plan2, null);
     //
     // lbl_Rate_Plan1
     //
     this.lbl_Rate_Plan1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Rate_Plan1, null);
     this.lbl_Rate_Plan1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Rate_Plan1.ForeColor = System.Drawing.Color.Green;
     this.lbl_Rate_Plan1.Location = new System.Drawing.Point(408, 119);
     this.lbl_Rate_Plan1.Name = "lbl_Rate_Plan1";
     this.lbl_Rate_Plan1.Size = new System.Drawing.Size(29, 12);
     this.lbl_Rate_Plan1.TabIndex = 0;
     this.lbl_Rate_Plan1.Text = "����";
     this.coreBind.SetVerification(this.lbl_Rate_Plan1, null);
     //
     // lbl_Rate_Pre
     //
     this.lbl_Rate_Pre.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Rate_Pre, null);
     this.lbl_Rate_Pre.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Rate_Pre.ForeColor = System.Drawing.Color.Green;
     this.lbl_Rate_Pre.Location = new System.Drawing.Point(587, 78);
     this.lbl_Rate_Pre.Name = "lbl_Rate_Pre";
     this.lbl_Rate_Pre.Size = new System.Drawing.Size(29, 12);
     this.lbl_Rate_Pre.TabIndex = 0;
     this.lbl_Rate_Pre.Text = "����";
     this.coreBind.SetVerification(this.lbl_Rate_Pre, null);
     //
     // cbx_WgtT
     //
     appearance10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cbx_WgtT.Appearance = appearance10;
     this.cbx_WgtT.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_WgtT, null);
     this.cbx_WgtT.Location = new System.Drawing.Point(748, 21);
     this.cbx_WgtT.Name = "cbx_WgtT";
     this.cbx_WgtT.Size = new System.Drawing.Size(71, 19);
     this.cbx_WgtT.TabIndex = 10;
     this.cbx_WgtT.Text = "���ش���";
     this.coreBind.SetVerification(this.cbx_WgtT, null);
     //
     // cbx_WgtR
     //
     appearance9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cbx_WgtR.Appearance = appearance9;
     this.cbx_WgtR.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_WgtR, null);
     this.cbx_WgtR.Location = new System.Drawing.Point(649, 21);
     this.cbx_WgtR.Name = "cbx_WgtR";
     this.cbx_WgtR.Size = new System.Drawing.Size(71, 19);
     this.cbx_WgtR.TabIndex = 9;
     this.cbx_WgtR.Text = "ʵ�ش���";
     this.coreBind.SetVerification(this.cbx_WgtR, null);
     //
     // cbx_FC2
     //
     this.cbx_FC2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_FC2, null);
     this.cbx_FC2.Enabled = false;
     this.cbx_FC2.Location = new System.Drawing.Point(649, 116);
     this.cbx_FC2.Name = "cbx_FC2";
     this.cbx_FC2.Size = new System.Drawing.Size(46, 19);
     this.cbx_FC2.TabIndex = 22;
     this.cbx_FC2.Text = "�dz�";
     this.coreBind.SetVerification(this.cbx_FC2, null);
     this.cbx_FC2.CheckedChanged += new System.EventHandler(this.cbx_FC2_CheckedChanged);
     //
     // cbx_FC1
     //
     this.cbx_FC1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_FC1, null);
     this.cbx_FC1.Enabled = false;
     this.cbx_FC1.Location = new System.Drawing.Point(219, 116);
     this.cbx_FC1.Name = "cbx_FC1";
     this.cbx_FC1.Size = new System.Drawing.Size(46, 19);
     this.cbx_FC1.TabIndex = 17;
     this.cbx_FC1.Text = "�dz�";
     this.coreBind.SetVerification(this.cbx_FC1, null);
     this.cbx_FC1.CheckedChanged += new System.EventHandler(this.cbx_FC1_CheckedChanged);
     //
     // btnSave2
     //
     this.coreBind.SetDatabasecommand(this.btnSave2, null);
     this.btnSave2.Location = new System.Drawing.Point(703, 114);
     this.btnSave2.Name = "btnSave2";
     this.btnSave2.Size = new System.Drawing.Size(62, 23);
     this.btnSave2.TabIndex = 23;
     this.btnSave2.Text = "ɾ��Ԥ��";
     this.btnSave2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnSave2, null);
     this.btnSave2.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnSave1
     //
     this.coreBind.SetDatabasecommand(this.btnSave1, null);
     this.btnSave1.Location = new System.Drawing.Point(273, 114);
     this.btnSave1.Name = "btnSave1";
     this.btnSave1.Size = new System.Drawing.Size(62, 23);
     this.btnSave1.TabIndex = 18;
     this.btnSave1.Text = "ɾ��Ԥ��";
     this.btnSave1.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnSave1, null);
     this.btnSave1.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDone2
     //
     this.coreBind.SetDatabasecommand(this.btnDone2, null);
     this.btnDone2.Enabled = false;
     this.btnDone2.Location = new System.Drawing.Point(773, 114);
     this.btnDone2.Name = "btnDone2";
     this.btnDone2.Size = new System.Drawing.Size(62, 23);
     this.btnDone2.TabIndex = 24;
     this.btnDone2.Text = "��������";
     this.btnDone2.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDone2, null);
     this.btnDone2.Click += new System.EventHandler(this.btnDone_Click);
     //
     // btnDone1
     //
     this.coreBind.SetDatabasecommand(this.btnDone1, null);
     this.btnDone1.Enabled = false;
     this.btnDone1.Location = new System.Drawing.Point(343, 114);
     this.btnDone1.Name = "btnDone1";
     this.btnDone1.Size = new System.Drawing.Size(62, 23);
     this.btnDone1.TabIndex = 19;
     this.btnDone1.Text = "��������";
     this.btnDone1.UseVisualStyleBackColor = true;
     this.coreBind.SetVerification(this.btnDone1, null);
     this.btnDone1.Click += new System.EventHandler(this.btnDone_Click);
     //
     // ultraLabel9
     //
     this.ultraLabel9.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel9, null);
     this.ultraLabel9.Location = new System.Drawing.Point(431, 78);
     this.ultraLabel9.Name = "ultraLabel9";
     this.ultraLabel9.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel9.TabIndex = 0;
     this.ultraLabel9.Text = "��������";
     this.coreBind.SetVerification(this.ultraLabel9, null);
     //
     // cbEdt_CardType
     //
     this.cbEdt_CardType.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_CardType, null);
     valueListItem22.DataValue = "";
     valueListItem18.DataValue = "�ص㹤��ר��";
     valueListItem18.DisplayText = "�ص㹤��ר��";
     valueListItem19.DataValue = "ʡ��ר��";
     valueListItem19.DisplayText = "ʡ��ר��";
     valueListItem20.DataValue = "ʡ��ר��";
     valueListItem20.DisplayText = "ʡ��ר��";
     valueListItem21.DataValue = "�������";
     valueListItem21.DisplayText = "�������";
     this.cbEdt_CardType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem22,
     valueListItem18,
     valueListItem19,
     valueListItem20,
     valueListItem21});
     this.cbEdt_CardType.Location = new System.Drawing.Point(489, 74);
     this.cbEdt_CardType.MaxLength = 20;
     this.cbEdt_CardType.Name = "cbEdt_CardType";
     this.cbEdt_CardType.Size = new System.Drawing.Size(92, 21);
     this.cbEdt_CardType.TabIndex = 8;
     this.coreBind.SetVerification(this.cbEdt_CardType, null);
     //
     // lbl_Count
     //
     this.lbl_Count.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.lbl_Count, null);
     this.lbl_Count.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbl_Count.ForeColor = System.Drawing.Color.Green;
     this.lbl_Count.Location = new System.Drawing.Point(586, 53);
     this.lbl_Count.Name = "lbl_Count";
     this.lbl_Count.Size = new System.Drawing.Size(29, 12);
     this.lbl_Count.TabIndex = 0;
     this.lbl_Count.Text = "����";
     this.coreBind.SetVerification(this.lbl_Count, null);
     //
     // cbx_Steel
     //
     this.cbx_Steel.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Steel, null);
     this.cbx_Steel.Location = new System.Drawing.Point(748, 75);
     this.cbx_Steel.Name = "cbx_Steel";
     this.cbx_Steel.Size = new System.Drawing.Size(71, 19);
     this.cbx_Steel.TabIndex = 14;
     this.cbx_Steel.Text = "��ӡ�ƺ�";
     this.coreBind.SetVerification(this.cbx_Steel, null);
     //
     // Edt_WgtLL
     //
     this.coreBind.SetDatabasecommand(this.Edt_WgtLL, null);
     this.Edt_WgtLL.Location = new System.Drawing.Point(489, 47);
     this.Edt_WgtLL.MaskInput = "{LOC}n.nnn";
     this.Edt_WgtLL.Name = "Edt_WgtLL";
     this.Edt_WgtLL.Nullable = true;
     this.Edt_WgtLL.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.Edt_WgtLL.Size = new System.Drawing.Size(92, 21);
     this.Edt_WgtLL.TabIndex = 7;
     this.Edt_WgtLL.Value = null;
     this.coreBind.SetVerification(this.Edt_WgtLL, null);
     this.Edt_WgtLL.ValueChanged += new System.EventHandler(this.Edt_WgtLL_ValueChanged);
     //
     // Edt_Num2
     //
     this.coreBind.SetDatabasecommand(this.Edt_Num2, null);
     this.Edt_Num2.Enabled = false;
     this.Edt_Num2.Location = new System.Drawing.Point(586, 115);
     this.Edt_Num2.MaskInput = "{LOC}nnn";
     this.Edt_Num2.Name = "Edt_Num2";
     this.Edt_Num2.Nullable = true;
     this.Edt_Num2.Size = new System.Drawing.Size(55, 21);
     this.Edt_Num2.TabIndex = 21;
     this.Edt_Num2.Value = null;
     this.coreBind.SetVerification(this.Edt_Num2, null);
     this.Edt_Num2.ValueChanged += new System.EventHandler(this.Edt_Num2_ValueChanged);
     //
     // Edt_Num1
     //
     this.coreBind.SetDatabasecommand(this.Edt_Num1, null);
     this.Edt_Num1.Enabled = false;
     this.Edt_Num1.Location = new System.Drawing.Point(156, 115);
     this.Edt_Num1.MaskInput = "{LOC}nnn";
     this.Edt_Num1.Name = "Edt_Num1";
     this.Edt_Num1.Nullable = true;
     this.Edt_Num1.Size = new System.Drawing.Size(55, 21);
     this.Edt_Num1.TabIndex = 16;
     this.Edt_Num1.Value = null;
     this.coreBind.SetVerification(this.Edt_Num1, null);
     this.Edt_Num1.ValueChanged += new System.EventHandler(this.Edt_Num1_ValueChanged);
     //
     // Edt_SingleNum
     //
     this.coreBind.SetDatabasecommand(this.Edt_SingleNum, null);
     this.Edt_SingleNum.Location = new System.Drawing.Point(489, 20);
     this.Edt_SingleNum.MaskInput = "{LOC}nnn";
     this.Edt_SingleNum.Name = "Edt_SingleNum";
     this.Edt_SingleNum.Nullable = true;
     this.Edt_SingleNum.Size = new System.Drawing.Size(92, 21);
     this.Edt_SingleNum.TabIndex = 6;
     this.Edt_SingleNum.Value = null;
     this.coreBind.SetVerification(this.Edt_SingleNum, null);
     //
     // Edt_BatchNo
     //
     this.coreBind.SetDatabasecommand(this.Edt_BatchNo, null);
     this.Edt_BatchNo.Enabled = false;
     this.Edt_BatchNo.Location = new System.Drawing.Point(265, 20);
     this.Edt_BatchNo.MaxLength = 20;
     this.Edt_BatchNo.Name = "Edt_BatchNo";
     this.Edt_BatchNo.Size = new System.Drawing.Size(119, 21);
     this.Edt_BatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.Edt_BatchNo, null);
     //
     // Edt_OrderNo
     //
     this.coreBind.SetDatabasecommand(this.Edt_OrderNo, null);
     this.Edt_OrderNo.Location = new System.Drawing.Point(265, 47);
     this.Edt_OrderNo.MaxLength = 12;
     this.Edt_OrderNo.Name = "Edt_OrderNo";
     this.Edt_OrderNo.Size = new System.Drawing.Size(119, 21);
     this.Edt_OrderNo.TabIndex = 4;
     this.coreBind.SetVerification(this.Edt_OrderNo, null);
     //
     // ultraLabel3
     //
     this.ultraLabel3.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel3, null);
     this.ultraLabel3.Location = new System.Drawing.Point(28, 78);
     this.ultraLabel3.Name = "ultraLabel3";
     this.ultraLabel3.Size = new System.Drawing.Size(29, 16);
     this.ultraLabel3.TabIndex = 0;
     this.ultraLabel3.Text = "����";
     this.coreBind.SetVerification(this.ultraLabel3, null);
     //
     // ultraLabel2
     //
     this.ultraLabel2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel2, null);
     this.ultraLabel2.Location = new System.Drawing.Point(28, 51);
     this.ultraLabel2.Name = "ultraLabel2";
     this.ultraLabel2.Size = new System.Drawing.Size(29, 16);
     this.ultraLabel2.TabIndex = 0;
     this.ultraLabel2.Text = "���";
     this.coreBind.SetVerification(this.ultraLabel2, null);
     //
     // ultraLabel8
     //
     this.ultraLabel8.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel8, null);
     this.ultraLabel8.Location = new System.Drawing.Point(431, 51);
     this.ultraLabel8.Name = "ultraLabel8";
     this.ultraLabel8.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel8.TabIndex = 0;
     this.ultraLabel8.Text = "��������";
     this.coreBind.SetVerification(this.ultraLabel8, null);
     //
     // ultraLabel6
     //
     this.ultraLabel6.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel6, null);
     this.ultraLabel6.Location = new System.Drawing.Point(207, 24);
     this.ultraLabel6.Name = "ultraLabel6";
     this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel6.TabIndex = 0;
     this.ultraLabel6.Text = "���Ʊ��";
     this.coreBind.SetVerification(this.ultraLabel6, null);
     //
     // ultraLabel7
     //
     this.ultraLabel7.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel7, null);
     this.ultraLabel7.Location = new System.Drawing.Point(431, 24);
     this.ultraLabel7.Name = "ultraLabel7";
     this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel7.TabIndex = 0;
     this.ultraLabel7.Text = "����֧��";
     this.coreBind.SetVerification(this.ultraLabel7, null);
     //
     // cbEdt_Length
     //
     this.cbEdt_Length.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_Length, null);
     valueListItem14.DataValue = "9";
     valueListItem14.DisplayText = "9";
     valueListItem15.DataValue = "12";
     valueListItem15.DisplayText = "12";
     this.cbEdt_Length.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem14,
     valueListItem15});
     this.cbEdt_Length.Location = new System.Drawing.Point(61, 74);
     this.cbEdt_Length.MaxLength = 8;
     this.cbEdt_Length.Name = "cbEdt_Length";
     this.cbEdt_Length.Size = new System.Drawing.Size(99, 21);
     this.cbEdt_Length.TabIndex = 3;
     this.coreBind.SetVerification(this.cbEdt_Length, null);
     //
     // ultraLabel4
     //
     this.ultraLabel4.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel4, null);
     this.ultraLabel4.Location = new System.Drawing.Point(207, 51);
     this.ultraLabel4.Name = "ultraLabel4";
     this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel4.TabIndex = 0;
     this.ultraLabel4.Text = "��������";
     this.coreBind.SetVerification(this.ultraLabel4, null);
     //
     // ultraLabel5
     //
     this.ultraLabel5.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel5, null);
     this.ultraLabel5.Location = new System.Drawing.Point(207, 78);
     this.ultraLabel5.Name = "ultraLabel5";
     this.ultraLabel5.Size = new System.Drawing.Size(54, 16);
     this.ultraLabel5.TabIndex = 0;
     this.ultraLabel5.Text = "�� ׼ ��";
     this.coreBind.SetVerification(this.ultraLabel5, null);
     //
     // ultraLabel1
     //
     this.ultraLabel1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.ultraLabel1, null);
     this.ultraLabel1.Location = new System.Drawing.Point(28, 24);
     this.ultraLabel1.Name = "ultraLabel1";
     this.ultraLabel1.Size = new System.Drawing.Size(29, 16);
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text = "�ƺ�";
     this.coreBind.SetVerification(this.ultraLabel1, null);
     //
     // cbEdt_Spec
     //
     this.cbEdt_Spec.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_Spec, null);
     valueListItem23.DataValue = "12";
     valueListItem23.DisplayText = "12";
     valueListItem2.DataValue = "14";
     valueListItem2.DisplayText = "14";
     valueListItem3.DataValue = "16";
     valueListItem3.DisplayText = "16";
     valueListItem4.DataValue = "18";
     valueListItem4.DisplayText = "18";
     valueListItem5.DataValue = "20";
     valueListItem5.DisplayText = "20";
     valueListItem6.DataValue = "22";
     valueListItem6.DisplayText = "22";
     valueListItem7.DataValue = "24";
     valueListItem7.DisplayText = "24";
     valueListItem8.DataValue = "25";
     valueListItem8.DisplayText = "25";
     valueListItem9.DataValue = "28";
     valueListItem9.DisplayText = "28";
     valueListItem10.DataValue = "30";
     valueListItem10.DisplayText = "30";
     valueListItem11.DataValue = "32";
     valueListItem11.DisplayText = "32";
     this.cbEdt_Spec.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem23,
     valueListItem2,
     valueListItem3,
     valueListItem4,
     valueListItem5,
     valueListItem6,
     valueListItem7,
     valueListItem8,
     valueListItem9,
     valueListItem10,
     valueListItem11});
     this.cbEdt_Spec.Location = new System.Drawing.Point(61, 47);
     this.cbEdt_Spec.MaxLength = 20;
     this.cbEdt_Spec.Name = "cbEdt_Spec";
     this.cbEdt_Spec.Size = new System.Drawing.Size(99, 21);
     this.cbEdt_Spec.TabIndex = 2;
     this.coreBind.SetVerification(this.cbEdt_Spec, null);
     //
     // cbEdt_StandardNo
     //
     this.cbEdt_StandardNo.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_StandardNo, null);
     valueListItem17.DataValue = "";
     valueListItem16.DataValue = "GB 1499.2-2007";
     valueListItem16.DisplayText = "GB 1499.2-2007";
     this.cbEdt_StandardNo.Items.AddRange(new Infragistics.Win.ValueListItem[] {
     valueListItem17,
     valueListItem16});
     this.cbEdt_StandardNo.Location = new System.Drawing.Point(265, 74);
     this.cbEdt_StandardNo.MaxLength = 20;
     this.cbEdt_StandardNo.Name = "cbEdt_StandardNo";
     this.cbEdt_StandardNo.Size = new System.Drawing.Size(119, 21);
     this.cbEdt_StandardNo.TabIndex = 5;
     this.coreBind.SetVerification(this.cbEdt_StandardNo, null);
     //
     // cbx_Point2
     //
     this.cbx_Point2.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Point2, null);
     this.cbx_Point2.Location = new System.Drawing.Point(489, 117);
     this.cbx_Point2.Name = "cbx_Point2";
     this.cbx_Point2.Size = new System.Drawing.Size(89, 19);
     this.cbx_Point2.TabIndex = 20;
     this.cbx_Point2.Text = "B��Ԥ������";
     this.coreBind.SetVerification(this.cbx_Point2, null);
     this.cbx_Point2.CheckedChanged += new System.EventHandler(this.cbx_Point2_CheckedChanged);
     //
     // cbEdt_Steel
     //
     this.cbEdt_Steel.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
     this.coreBind.SetDatabasecommand(this.cbEdt_Steel, null);
     this.cbEdt_Steel.Location = new System.Drawing.Point(61, 20);
     this.cbEdt_Steel.MaxLength = 20;
     this.cbEdt_Steel.Name = "cbEdt_Steel";
     this.cbEdt_Steel.Size = new System.Drawing.Size(99, 21);
     this.cbEdt_Steel.TabIndex = 1;
     this.coreBind.SetVerification(this.cbEdt_Steel, null);
     //
     // cbx_StandardNo
     //
     this.cbx_StandardNo.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_StandardNo, null);
     this.cbx_StandardNo.Location = new System.Drawing.Point(649, 75);
     this.cbx_StandardNo.Name = "cbx_StandardNo";
     this.cbx_StandardNo.Size = new System.Drawing.Size(71, 19);
     this.cbx_StandardNo.TabIndex = 13;
     this.cbx_StandardNo.Text = "��ӡ��׼";
     this.coreBind.SetVerification(this.cbx_StandardNo, null);
     //
     // cbx_Addr
     //
     this.cbx_Addr.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Addr, null);
     this.cbx_Addr.Location = new System.Drawing.Point(748, 48);
     this.cbx_Addr.Name = "cbx_Addr";
     this.cbx_Addr.Size = new System.Drawing.Size(71, 19);
     this.cbx_Addr.TabIndex = 12;
     this.cbx_Addr.Text = "��ӡ��ַ";
     this.coreBind.SetVerification(this.cbx_Addr, null);
     //
     // cbx_Double
     //
     this.cbx_Double.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Double, null);
     this.cbx_Double.Location = new System.Drawing.Point(649, 48);
     this.cbx_Double.Name = "cbx_Double";
     this.cbx_Double.Size = new System.Drawing.Size(71, 19);
     this.cbx_Double.TabIndex = 11;
     this.cbx_Double.Text = "��ӡ˫��";
     this.coreBind.SetVerification(this.cbx_Double, null);
     //
     // cbx_Point1
     //
     this.cbx_Point1.AutoSize = true;
     this.coreBind.SetDatabasecommand(this.cbx_Point1, null);
     this.cbx_Point1.Location = new System.Drawing.Point(59, 117);
     this.cbx_Point1.Name = "cbx_Point1";
     this.cbx_Point1.Size = new System.Drawing.Size(89, 19);
     this.cbx_Point1.TabIndex = 15;
     this.cbx_Point1.Text = "A��Ԥ������";
     this.coreBind.SetVerification(this.cbx_Point1, null);
     this.cbx_Point1.CheckedChanged += new System.EventHandler(this.cbx_Point1_CheckedChanged);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool2.ControlName = "cbxDateTime";
     controlContainerTool2.InstanceProps.Width = 24;
     controlContainerTool12.ControlName = "dateTimePicker1";
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 162;
     controlContainerTool11.ControlName = "tbQueryBatchNo";
     controlContainerTool11.InstanceProps.IsFirstInGroup = true;
     controlContainerTool11.InstanceProps.Width = 144;
     controlContainerTool21.InstanceProps.IsFirstInGroup = true;
     controlContainerTool21.InstanceProps.Width = 145;
     controlContainerTool7.ControlName = "cbEdt_Status";
     controlContainerTool7.InstanceProps.IsFirstInGroup = true;
     controlContainerTool7.InstanceProps.Width = 84;
     controlContainerTool8.ControlName = "cbEdt_Finish";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     buttonTool39.InstanceProps.IsFirstInGroup = true;
     buttonTool42.InstanceProps.IsFirstInGroup = true;
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool2,
     controlContainerTool12,
     controlContainerTool20,
     controlContainerTool11,
     controlContainerTool21,
     controlContainerTool7,
     controlContainerTool8,
     buttonTool39,
     buttonTool42,
     buttonTool5});
     ultraToolbar1.Text = "UltraToolbar1";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 199;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "��";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 162;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.SharedPropsInternal.Visible = false;
     controlContainerTool24.SharedPropsInternal.Width = 145;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "����Ԥ��";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool45.SharedPropsInternal.Visible = false;
     appearance124.Image = ((object)(resources.GetObject("appearance124.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance124;
     buttonTool4.SharedPropsInternal.Caption = "ɾ��Ԥ��";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     buttonTool4.SharedPropsInternal.Visible = false;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.SharedPropsInternal.Caption = "��";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 24;
     controlContainerTool4.ControlName = "cbEdt_Status";
     controlContainerTool4.SharedPropsInternal.Caption = "Ԥ��";
     controlContainerTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool4.SharedPropsInternal.Width = 84;
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "���Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 144;
     controlContainerTool5.ControlName = "cbEdt_Finish";
     controlContainerTool5.SharedPropsInternal.Caption = "��¯";
     controlContainerTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool4,
     controlContainerTool1,
     controlContainerTool4,
     controlContainerTool10,
     controlContainerTool5});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(992, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 628);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(992, 26);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 654);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(992, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // frmWeightPlanBC
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(992, 654);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Name = "frmWeightPlanBC";
     this.Text = "��ļ���Ԥ��";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.frmWeightPlanBC_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Finish)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Status)).EndInit();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCalcManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_WgtR)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_FC1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_CardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Steel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_WgtLL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_Num1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_SingleNum)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_BatchNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Edt_OrderNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Length)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Spec)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_StandardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEdt_Steel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_StandardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Addr)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Double)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_Point1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #19
0
ファイル: JobAdd.cs プロジェクト: zhenghua75/ynhrMemberManage
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK            = new Infragistics.Win.Misc.UltraButton();
     this.btnCancel        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel1      = new Infragistics.Win.Misc.UltraLabel();
     this.txtJobName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2      = new Infragistics.Win.Misc.UltraLabel();
     this.txtJobTheme      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel4      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox1   = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbBookEndDate   = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBookBeginDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraLabel5      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6      = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnd           = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBegin         = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobTheme)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBegin)).BeginInit();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(96, 392);
     this.btnOK.Name        = "btnOK";
     this.btnOK.TabIndex    = 0;
     this.btnOK.Text        = "确定";
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(224, 392);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.TabIndex    = 1;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(64, 48);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 2;
     this.ultraLabel1.Text     = "招聘会名称:";
     //
     // txtJobName
     //
     this.txtJobName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtJobName.Location     = new System.Drawing.Point(168, 48);
     this.txtJobName.Name         = "txtJobName";
     this.txtJobName.Size         = new System.Drawing.Size(200, 21);
     this.txtJobName.TabIndex     = 3;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(64, 96);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.TabIndex = 4;
     this.ultraLabel2.Text     = "招聘会主题:";
     //
     // txtJobTheme
     //
     this.txtJobTheme.AutoSize     = false;
     this.txtJobTheme.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtJobTheme.Location     = new System.Drawing.Point(168, 88);
     this.txtJobTheme.Multiline    = true;
     this.txtJobTheme.Name         = "txtJobTheme";
     this.txtJobTheme.Scrollbars   = System.Windows.Forms.ScrollBars.Both;
     this.txtJobTheme.Size         = new System.Drawing.Size(200, 72);
     this.txtJobTheme.TabIndex     = 5;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(48, 184);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel3.TabIndex = 6;
     this.ultraLabel3.Text     = "招聘会开始时间:";
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(48, 224);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel4.TabIndex = 7;
     this.ultraLabel4.Text     = "招聘会结束时间:";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbBookEndDate);
     this.ultraGroupBox1.Controls.Add(this.cmbBookBeginDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.cmbEnd);
     this.ultraGroupBox1.Controls.Add(this.cmbBegin);
     this.ultraGroupBox1.Controls.Add(this.txtJobName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.txtJobTheme);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.btnOK);
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Location = new System.Drawing.Point(248, 16);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(384, 472);
     this.ultraGroupBox1.TabIndex = 8;
     //
     // cmbBookEndDate
     //
     this.cmbBookEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBookEndDate.Location     = new System.Drawing.Point(168, 304);
     this.cmbBookEndDate.MaskInput    = "{date} {time}";
     this.cmbBookEndDate.Name         = "cmbBookEndDate";
     this.cmbBookEndDate.Size         = new System.Drawing.Size(200, 21);
     this.cmbBookEndDate.TabIndex     = 16;
     //
     // cmbBookBeginDate
     //
     this.cmbBookBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBookBeginDate.Location     = new System.Drawing.Point(168, 264);
     this.cmbBookBeginDate.MaskInput    = "{date} {time}";
     this.cmbBookBeginDate.Name         = "cmbBookBeginDate";
     this.cmbBookBeginDate.Size         = new System.Drawing.Size(200, 21);
     this.cmbBookBeginDate.TabIndex     = 15;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(56, 264);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel5.TabIndex = 13;
     this.ultraLabel5.Text     = "预订开始时间:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(56, 304);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(104, 23);
     this.ultraLabel6.TabIndex = 14;
     this.ultraLabel6.Text     = "预订结束时间:";
     //
     // cmbEnd
     //
     this.cmbEnd.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnd.Location      = new System.Drawing.Point(168, 224);
     this.cmbEnd.MaskInput     = "{date} {time}";
     this.cmbEnd.Name          = "cmbEnd";
     this.cmbEnd.Size          = new System.Drawing.Size(200, 21);
     this.cmbEnd.TabIndex      = 12;
     this.cmbEnd.ValueChanged += new System.EventHandler(this.cmbEnd_ValueChanged);
     //
     // cmbBegin
     //
     this.cmbBegin.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBegin.Location      = new System.Drawing.Point(168, 184);
     this.cmbBegin.MaskInput     = "{date} {time}";
     this.cmbBegin.Name          = "cmbBegin";
     this.cmbBegin.Size          = new System.Drawing.Size(200, 21);
     this.cmbBegin.TabIndex      = 11;
     this.cmbBegin.ValueChanged += new System.EventHandler(this.cmbBegin_ValueChanged);
     //
     // JobAdd
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(880, 517);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "JobAdd";
     this.Text  = "招聘会新设";
     this.Load += new System.EventHandler(this.JobAdd_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobTheme)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBegin)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ultraGroupBox1   = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGroupBox4   = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbBeginDate2    = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate2    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate2      = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate2      = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraGroupBox3   = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbBeginDate     = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate     = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate       = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate       = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.txtJobName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1      = new Infragistics.Win.Misc.UltraLabel();
     this.btnQuery         = new Infragistics.Win.Misc.UltraButton();
     this.ultraGrid1       = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox2   = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraCombo1      = new Infragistics.Win.UltraWinGrid.UltraCombo();
     this.cmbBookEndDate   = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBookBeginDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraLabel5      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6      = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnd           = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBegin         = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.txtJobName2      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel4      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7      = new Infragistics.Win.Misc.UltraLabel();
     this.btnOK            = new Infragistics.Win.Misc.UltraButton();
     this.btnCancel        = new Infragistics.Win.Misc.UltraButton();
     this.txtPrice         = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
     this.ultraGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBegin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName2)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox4);
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox3);
     this.ultraGroupBox1.Controls.Add(this.txtJobName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Location = new System.Drawing.Point(208, 12);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(736, 161);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text     = "招聘会信息修改";
     //
     // ultraGroupBox4
     //
     this.ultraGroupBox4.Controls.Add(this.cmbBeginDate2);
     this.ultraGroupBox4.Controls.Add(this.chkBeginDate2);
     this.ultraGroupBox4.Controls.Add(this.cmbEndDate2);
     this.ultraGroupBox4.Controls.Add(this.chkEndDate2);
     this.ultraGroupBox4.Location = new System.Drawing.Point(328, 61);
     this.ultraGroupBox4.Name     = "ultraGroupBox4";
     this.ultraGroupBox4.Size     = new System.Drawing.Size(296, 96);
     this.ultraGroupBox4.TabIndex = 18;
     this.ultraGroupBox4.Text     = "招聘会结束时间";
     //
     // cmbBeginDate2
     //
     this.cmbBeginDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate2.Location     = new System.Drawing.Point(136, 24);
     this.cmbBeginDate2.MaskInput    = "{date} {time}";
     this.cmbBeginDate2.Name         = "cmbBeginDate2";
     this.cmbBeginDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate2.TabIndex     = 12;
     //
     // chkBeginDate2
     //
     this.chkBeginDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate2.Location    = new System.Drawing.Point(16, 24);
     this.chkBeginDate2.Name        = "chkBeginDate2";
     this.chkBeginDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate2.TabIndex    = 14;
     this.chkBeginDate2.Text        = "开始时间";
     //
     // cmbEndDate2
     //
     this.cmbEndDate2.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate2.Location     = new System.Drawing.Point(136, 56);
     this.cmbEndDate2.MaskInput    = "{date} {time}";
     this.cmbEndDate2.Name         = "cmbEndDate2";
     this.cmbEndDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate2.TabIndex     = 13;
     this.cmbEndDate2.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate2
     //
     this.chkEndDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate2.Location    = new System.Drawing.Point(16, 56);
     this.chkEndDate2.Name        = "chkEndDate2";
     this.chkEndDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate2.TabIndex    = 15;
     this.chkEndDate2.Text        = "结束时间";
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox3.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox3.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox3.Controls.Add(this.chkEndDate);
     this.ultraGroupBox3.Location = new System.Drawing.Point(16, 61);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(296, 96);
     this.ultraGroupBox3.TabIndex = 17;
     this.ultraGroupBox3.Text     = "招聘会开始时间";
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(136, 24);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 12;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(16, 24);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 14;
     this.chkBeginDate.Text        = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(136, 56);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 13;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(16, 56);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex    = 15;
     this.chkEndDate.Text        = "结束时间";
     //
     // txtJobName
     //
     this.txtJobName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtJobName.Location     = new System.Drawing.Point(320, 21);
     this.txtJobName.Name         = "txtJobName";
     this.txtJobName.Size         = new System.Drawing.Size(224, 21);
     this.txtJobName.TabIndex     = 2;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(216, 21);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 1;
     this.ultraLabel1.Text     = "招聘会名称:";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(640, 61);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 0;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(12, 179);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(772, 360);
     this.ultraGrid1.TabIndex           = 1;
     this.ultraGrid1.Text               = "招聘会信息";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.txtPrice);
     this.ultraGroupBox2.Controls.Add(this.ultraCombo1);
     this.ultraGroupBox2.Controls.Add(this.cmbBookEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBookBeginDate);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.cmbEnd);
     this.ultraGroupBox2.Controls.Add(this.cmbBegin);
     this.ultraGroupBox2.Controls.Add(this.txtJobName2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Controls.Add(this.btnOK);
     this.ultraGroupBox2.Controls.Add(this.btnCancel);
     this.ultraGroupBox2.Location = new System.Drawing.Point(790, 179);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(365, 384);
     this.ultraGroupBox2.TabIndex = 9;
     this.ultraGroupBox2.Text     = "招聘会信息修改";
     //
     // ultraCombo1
     //
     this.ultraCombo1.CharacterCasing   = System.Windows.Forms.CharacterCasing.Normal;
     this.ultraCombo1.DisplayStyle      = Infragistics.Win.EmbeddableElementDisplayStyle.Default;
     this.ultraCombo1.DropDownStyle     = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
     this.ultraCombo1.Location          = new System.Drawing.Point(152, 85);
     this.ultraCombo1.Name              = "ultraCombo1";
     this.ultraCombo1.Size              = new System.Drawing.Size(200, 22);
     this.ultraCombo1.TabIndex          = 31;
     this.ultraCombo1.ValueChanged     += new System.EventHandler(this.ultraCombo1_ValueChanged);
     this.ultraCombo1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraCombo1_InitializeLayout);
     //
     // cmbBookEndDate
     //
     this.cmbBookEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBookEndDate.Location     = new System.Drawing.Point(152, 260);
     this.cmbBookEndDate.MaskInput    = "{date} {time}";
     this.cmbBookEndDate.Name         = "cmbBookEndDate";
     this.cmbBookEndDate.Size         = new System.Drawing.Size(200, 21);
     this.cmbBookEndDate.TabIndex     = 30;
     //
     // cmbBookBeginDate
     //
     this.cmbBookBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBookBeginDate.Location     = new System.Drawing.Point(152, 220);
     this.cmbBookBeginDate.MaskInput    = "{date} {time}";
     this.cmbBookBeginDate.Name         = "cmbBookBeginDate";
     this.cmbBookBeginDate.Size         = new System.Drawing.Size(200, 21);
     this.cmbBookBeginDate.TabIndex     = 29;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(40, 220);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel5.TabIndex = 27;
     this.ultraLabel5.Text     = "预订开始时间:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(40, 260);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(104, 23);
     this.ultraLabel6.TabIndex = 28;
     this.ultraLabel6.Text     = "预订结束时间:";
     //
     // cmbEnd
     //
     this.cmbEnd.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnd.Location     = new System.Drawing.Point(152, 180);
     this.cmbEnd.MaskInput    = "{date} {time}";
     this.cmbEnd.Name         = "cmbEnd";
     this.cmbEnd.Size         = new System.Drawing.Size(200, 21);
     this.cmbEnd.TabIndex     = 26;
     //
     // cmbBegin
     //
     this.cmbBegin.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBegin.Location     = new System.Drawing.Point(152, 140);
     this.cmbBegin.MaskInput    = "{date} {time}";
     this.cmbBegin.Name         = "cmbBegin";
     this.cmbBegin.Size         = new System.Drawing.Size(200, 21);
     this.cmbBegin.TabIndex     = 25;
     //
     // txtJobName2
     //
     this.txtJobName2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtJobName2.Location     = new System.Drawing.Point(152, 46);
     this.txtJobName2.Name         = "txtJobName2";
     this.txtJobName2.Size         = new System.Drawing.Size(200, 21);
     this.txtJobName2.TabIndex     = 20;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(48, 46);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 19;
     this.ultraLabel2.Text     = "招聘会名称:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(48, 85);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 21;
     this.ultraLabel3.Text     = "所属服务产品:";
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(32, 140);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel4.TabIndex = 23;
     this.ultraLabel4.Text     = "招聘会开始时间:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(32, 180);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel7.TabIndex = 24;
     this.ultraLabel7.Text     = "招聘会结束时间:";
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(104, 307);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex    = 17;
     this.btnOK.Text        = "确定";
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(232, 307);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex    = 18;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // txtPrice
     //
     this.txtPrice.Location = new System.Drawing.Point(152, 111);
     this.txtPrice.Name     = "txtPrice";
     this.txtPrice.Size     = new System.Drawing.Size(200, 23);
     this.txtPrice.TabIndex = 32;
     //
     // JobModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1183, 659);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "JobModify";
     this.Text  = "招聘会信息修改";
     this.Load += new System.EventHandler(this.JobModify_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
     this.ultraGroupBox4.ResumeLayout(false);
     this.ultraGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     this.ultraGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBookBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBegin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName2)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbSales                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel21             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7              = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraComboEditor1        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMember                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.cmbDept     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbDept);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel21);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraComboEditor1);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbMember);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Location = new System.Drawing.Point(48, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(1144, 152);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(961, 45);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(144, 21);
     this.cmbSales.TabIndex     = 61;
     //
     // ultraLabel21
     //
     this.ultraLabel21.Location = new System.Drawing.Point(857, 46);
     this.ultraLabel21.Name     = "ultraLabel21";
     this.ultraLabel21.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel21.TabIndex = 60;
     this.ultraLabel21.Text     = "销售人员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(42, 112);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 53;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(42, 77);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 52;
     this.ultraLabel6.Text     = "工商注册号:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(42, 40);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 51;
     this.ultraLabel7.Text     = "会员卡号:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(146, 77);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 50;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(146, 111);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 49;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(146, 40);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 48;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(566, 43);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel2.TabIndex = 47;
     this.ultraLabel2.Text     = "是否工本费:";
     //
     // ultraComboEditor1
     //
     this.ultraComboEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.ultraComboEditor1.Location     = new System.Drawing.Point(670, 43);
     this.ultraComboEditor1.Name         = "ultraComboEditor1";
     this.ultraComboEditor1.Size         = new System.Drawing.Size(144, 21);
     this.ultraComboEditor1.TabIndex     = 46;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(301, 113);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel1.TabIndex = 45;
     this.ultraLabel1.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(405, 113);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(144, 21);
     this.cmbMemberRight.TabIndex     = 44;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(301, 81);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel4.TabIndex = 43;
     this.ultraLabel4.Text     = "是否会员:";
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.Location     = new System.Drawing.Point(405, 81);
     this.cmbMember.Name         = "cmbMember";
     this.cmbMember.Size         = new System.Drawing.Size(144, 21);
     this.cmbMember.TabIndex     = 42;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(1039, 111);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(301, 41);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(566, 119);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(96, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(566, 79);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(96, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(670, 119);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(670, 79);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(405, 41);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(947, 111);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(856, 113);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(1144, 379);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(961, 81);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(152, 21);
     this.cmbDept.TabIndex     = 73;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(859, 81);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 72;
     this.ultraLabel8.Text     = "部门:";
     //
     // AllMoneyReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1272, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "AllMoneyReport";
     this.Text  = Login.constApp.strCardTypeL6Name + "消费明细报表";
     this.Load += new System.EventHandler(this.ProductReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ultraGroupBox1      = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbEndDate          = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate          = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmdBeginDate        = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate        = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnQuery            = new Infragistics.Win.Misc.UltraButton();
     this.txtQPaperNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3         = new Infragistics.Win.Misc.UltraLabel();
     this.txtQMemberName      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2      = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtFax              = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel26        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel25        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade            = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel8         = new Infragistics.Win.Misc.UltraLabel();
     this.txtHandleManPaperNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel22        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel21        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel20        = new Infragistics.Win.Misc.UltraLabel();
     this.txtPostalcode       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel19        = new Infragistics.Win.Misc.UltraLabel();
     this.txtMobileTelephone  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel18        = new Infragistics.Win.Misc.UltraLabel();
     this.txtCorporation      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel15        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbEnterpriseType   = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtCommnets         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel11        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel9         = new Infragistics.Win.Misc.UltraLabel();
     this.txtEmail            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7         = new Infragistics.Win.Misc.UltraLabel();
     this.btnCancel           = new Infragistics.Win.Misc.UltraButton();
     this.btnModify           = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel6         = new Infragistics.Win.Misc.UltraLabel();
     this.txtLinkPhone        = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtLinkAddress      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5         = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel23        = new Infragistics.Win.Misc.UltraLabel();
     this.txtLinkman          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel24        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid1          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.cmbHandleMan        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbSales            = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbCustomerService  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHandleManPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPostalcode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileTelephone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorporation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCommnets)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLinkPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLinkAddress)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLinkman)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbHandleMan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtQPaperNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtQMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Location = new System.Drawing.Point(80, 14);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(824, 88);
     this.ultraGroupBox1.TabIndex = 22;
     this.ultraGroupBox1.Text     = "非会员档案查询";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(400, 56);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 17;
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(280, 56);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex    = 19;
     this.chkEndDate.Text        = "结束时间";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(400, 24);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmdBeginDate.TabIndex     = 16;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(280, 24);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 18;
     this.chkBeginDate.Text        = "开始时间";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(616, 32);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 8;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtQPaperNo
     //
     this.txtQPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQPaperNo.Location     = new System.Drawing.Point(144, 24);
     this.txtQPaperNo.Name         = "txtQPaperNo";
     this.txtQPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQPaperNo.TabIndex     = 5;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(40, 24);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 4;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // txtQMemberName
     //
     this.txtQMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberName.Location     = new System.Drawing.Point(144, 56);
     this.txtQMemberName.Name         = "txtQMemberName";
     this.txtQMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberName.TabIndex     = 3;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(40, 56);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 2;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbCustomerService);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     this.ultraGroupBox2.Controls.Add(this.cmbHandleMan);
     this.ultraGroupBox2.Controls.Add(this.txtFax);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel26);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel25);
     this.ultraGroupBox2.Controls.Add(this.cmbTrade);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox2.Controls.Add(this.txtHandleManPaperNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel22);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel21);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel20);
     this.ultraGroupBox2.Controls.Add(this.txtPostalcode);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel19);
     this.ultraGroupBox2.Controls.Add(this.txtMobileTelephone);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel18);
     this.ultraGroupBox2.Controls.Add(this.txtCorporation);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel15);
     this.ultraGroupBox2.Controls.Add(this.cmbEnterpriseType);
     this.ultraGroupBox2.Controls.Add(this.txtCommnets);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel11);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox2.Controls.Add(this.txtEmail);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Controls.Add(this.btnCancel);
     this.ultraGroupBox2.Controls.Add(this.btnModify);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.txtLinkPhone);
     this.ultraGroupBox2.Controls.Add(this.txtLinkAddress);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel23);
     this.ultraGroupBox2.Controls.Add(this.txtLinkman);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel24);
     this.ultraGroupBox2.Location = new System.Drawing.Point(416, 118);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(608, 426);
     this.ultraGroupBox2.TabIndex = 24;
     this.ultraGroupBox2.Text     = "非会员档案资料修改";
     //
     // txtFax
     //
     this.txtFax.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtFax.Location     = new System.Drawing.Point(424, 208);
     this.txtFax.MaxLength    = 20;
     this.txtFax.Name         = "txtFax";
     this.txtFax.Size         = new System.Drawing.Size(152, 21);
     this.txtFax.TabIndex     = 14;
     //
     // ultraLabel26
     //
     this.ultraLabel26.Location = new System.Drawing.Point(320, 208);
     this.ultraLabel26.Name     = "ultraLabel26";
     this.ultraLabel26.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel26.TabIndex = 60;
     this.ultraLabel26.Text     = "传真:";
     //
     // ultraLabel25
     //
     this.ultraLabel25.Location = new System.Drawing.Point(32, 272);
     this.ultraLabel25.Name     = "ultraLabel25";
     this.ultraLabel25.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel25.TabIndex = 55;
     this.ultraLabel25.Text     = "客服姓名:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(136, 208);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(152, 21);
     this.cmbTrade.TabIndex     = 13;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(32, 208);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 53;
     this.ultraLabel8.Text     = "行业:";
     //
     // txtHandleManPaperNo
     //
     this.txtHandleManPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtHandleManPaperNo.Location     = new System.Drawing.Point(424, 272);
     this.txtHandleManPaperNo.MaxLength    = 20;
     this.txtHandleManPaperNo.Name         = "txtHandleManPaperNo";
     this.txtHandleManPaperNo.Size         = new System.Drawing.Size(152, 21);
     this.txtHandleManPaperNo.TabIndex     = 17;
     //
     // ultraLabel22
     //
     this.ultraLabel22.Location = new System.Drawing.Point(320, 272);
     this.ultraLabel22.Name     = "ultraLabel22";
     this.ultraLabel22.Size     = new System.Drawing.Size(104, 23);
     this.ultraLabel22.TabIndex = 45;
     this.ultraLabel22.Text     = "经办人身份证号:";
     //
     // ultraLabel21
     //
     this.ultraLabel21.Location = new System.Drawing.Point(320, 240);
     this.ultraLabel21.Name     = "ultraLabel21";
     this.ultraLabel21.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel21.TabIndex = 43;
     this.ultraLabel21.Text     = "经办人:";
     //
     // ultraLabel20
     //
     this.ultraLabel20.Location = new System.Drawing.Point(32, 240);
     this.ultraLabel20.Name     = "ultraLabel20";
     this.ultraLabel20.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel20.TabIndex = 41;
     this.ultraLabel20.Text     = "销售人员:";
     //
     // txtPostalcode
     //
     this.txtPostalcode.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPostalcode.Location     = new System.Drawing.Point(424, 144);
     this.txtPostalcode.MaxLength    = 20;
     this.txtPostalcode.Name         = "txtPostalcode";
     this.txtPostalcode.Size         = new System.Drawing.Size(152, 21);
     this.txtPostalcode.TabIndex     = 10;
     //
     // ultraLabel19
     //
     this.ultraLabel19.Location = new System.Drawing.Point(320, 144);
     this.ultraLabel19.Name     = "ultraLabel19";
     this.ultraLabel19.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel19.TabIndex = 39;
     this.ultraLabel19.Text     = "邮政编码:";
     //
     // txtMobileTelephone
     //
     this.txtMobileTelephone.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMobileTelephone.Location     = new System.Drawing.Point(136, 112);
     this.txtMobileTelephone.MaxLength    = 20;
     this.txtMobileTelephone.Name         = "txtMobileTelephone";
     this.txtMobileTelephone.Size         = new System.Drawing.Size(152, 21);
     this.txtMobileTelephone.TabIndex     = 7;
     //
     // ultraLabel18
     //
     this.ultraLabel18.Location = new System.Drawing.Point(32, 112);
     this.ultraLabel18.Name     = "ultraLabel18";
     this.ultraLabel18.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel18.TabIndex = 37;
     this.ultraLabel18.Text     = "手机号码:";
     //
     // txtCorporation
     //
     this.txtCorporation.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCorporation.Location     = new System.Drawing.Point(136, 80);
     this.txtCorporation.MaxLength    = 20;
     this.txtCorporation.Name         = "txtCorporation";
     this.txtCorporation.Size         = new System.Drawing.Size(152, 21);
     this.txtCorporation.TabIndex     = 5;
     //
     // ultraLabel15
     //
     this.ultraLabel15.Location = new System.Drawing.Point(32, 80);
     this.ultraLabel15.Name     = "ultraLabel15";
     this.ultraLabel15.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel15.TabIndex = 30;
     this.ultraLabel15.Text     = "法人代表:";
     //
     // cmbEnterpriseType
     //
     this.cmbEnterpriseType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEnterpriseType.Location     = new System.Drawing.Point(424, 176);
     this.cmbEnterpriseType.Name         = "cmbEnterpriseType";
     this.cmbEnterpriseType.Size         = new System.Drawing.Size(152, 21);
     this.cmbEnterpriseType.TabIndex     = 12;
     //
     // txtCommnets
     //
     this.txtCommnets.AutoSize     = false;
     this.txtCommnets.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCommnets.Location     = new System.Drawing.Point(136, 304);
     this.txtCommnets.MaxLength    = 200;
     this.txtCommnets.Multiline    = true;
     this.txtCommnets.Name         = "txtCommnets";
     this.txtCommnets.Scrollbars   = System.Windows.Forms.ScrollBars.Both;
     this.txtCommnets.Size         = new System.Drawing.Size(440, 72);
     this.txtCommnets.TabIndex     = 19;
     //
     // ultraLabel11
     //
     this.ultraLabel11.Location = new System.Drawing.Point(32, 304);
     this.ultraLabel11.Name     = "ultraLabel11";
     this.ultraLabel11.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel11.TabIndex = 22;
     this.ultraLabel11.Text     = "备注:";
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(320, 176);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 16;
     this.ultraLabel9.Text     = "企业性质:";
     //
     // txtEmail
     //
     this.txtEmail.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtEmail.Location     = new System.Drawing.Point(136, 176);
     this.txtEmail.MaxLength    = 100;
     this.txtEmail.Name         = "txtEmail";
     this.txtEmail.Size         = new System.Drawing.Size(152, 21);
     this.txtEmail.TabIndex     = 11;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(32, 176);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 12;
     this.ultraLabel7.Text     = "电子邮箱:";
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(336, 392);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex    = 33;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(200, 392);
     this.btnModify.Name        = "btnModify";
     this.btnModify.Size        = new System.Drawing.Size(75, 23);
     this.btnModify.TabIndex    = 31;
     this.btnModify.Text        = "确定";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(32, 144);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 10;
     this.ultraLabel6.Text     = "单位地址:";
     //
     // txtLinkPhone
     //
     this.txtLinkPhone.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtLinkPhone.Location     = new System.Drawing.Point(424, 112);
     this.txtLinkPhone.MaxLength    = 20;
     this.txtLinkPhone.Name         = "txtLinkPhone";
     this.txtLinkPhone.Size         = new System.Drawing.Size(152, 21);
     this.txtLinkPhone.TabIndex     = 8;
     //
     // txtLinkAddress
     //
     this.txtLinkAddress.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtLinkAddress.Location     = new System.Drawing.Point(136, 144);
     this.txtLinkAddress.MaxLength    = 200;
     this.txtLinkAddress.Name         = "txtLinkAddress";
     this.txtLinkAddress.Size         = new System.Drawing.Size(152, 21);
     this.txtLinkAddress.TabIndex     = 9;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(320, 112);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 8;
     this.ultraLabel5.Text     = "办公电话:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Enabled      = false;
     this.txtPaperNo.Location     = new System.Drawing.Point(136, 48);
     this.txtPaperNo.MaxLength    = 30;
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(152, 21);
     this.txtPaperNo.TabIndex     = 3;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(32, 48);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 4;
     this.ultraLabel4.Text     = "工商注册号:";
     //
     // ultraLabel23
     //
     this.ultraLabel23.Location = new System.Drawing.Point(320, 80);
     this.ultraLabel23.Name     = "ultraLabel23";
     this.ultraLabel23.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel23.TabIndex = 6;
     this.ultraLabel23.Text     = "联系人:";
     //
     // txtLinkman
     //
     this.txtLinkman.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtLinkman.Location     = new System.Drawing.Point(424, 80);
     this.txtLinkman.MaxLength    = 20;
     this.txtLinkman.Name         = "txtLinkman";
     this.txtLinkman.Size         = new System.Drawing.Size(152, 21);
     this.txtLinkman.TabIndex     = 6;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(424, 48);
     this.txtMemberName.MaxLength    = 100;
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(152, 21);
     this.txtMemberName.TabIndex     = 4;
     //
     // ultraLabel24
     //
     this.ultraLabel24.Location = new System.Drawing.Point(320, 48);
     this.ultraLabel24.Name     = "ultraLabel24";
     this.ultraLabel24.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel24.TabIndex = 2;
     this.ultraLabel24.Text     = "单位名称:";
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(8, 118);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(400, 426);
     this.ultraGrid1.TabIndex           = 23;
     this.ultraGrid1.Text               = "非会员档案";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // cmbHandleMan
     //
     this.cmbHandleMan.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbHandleMan.Location     = new System.Drawing.Point(424, 237);
     this.cmbHandleMan.Name         = "cmbHandleMan";
     this.cmbHandleMan.Size         = new System.Drawing.Size(152, 21);
     this.cmbHandleMan.TabIndex     = 61;
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(136, 237);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(152, 21);
     this.cmbSales.TabIndex     = 62;
     //
     // cmbCustomerService
     //
     this.cmbCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbCustomerService.Location     = new System.Drawing.Point(136, 268);
     this.cmbCustomerService.Name         = "cmbCustomerService";
     this.cmbCustomerService.Size         = new System.Drawing.Size(152, 21);
     this.cmbCustomerService.TabIndex     = 63;
     //
     // FMemberFileModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1028, 557);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGrid1);
     this.Name  = "FMemberFileModify";
     this.Text  = "非会员档案修改";
     this.Load += new System.EventHandler(this.FMemberFileModify_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHandleManPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPostalcode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileTelephone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCorporation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEnterpriseType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCommnets)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLinkPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLinkAddress)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLinkman)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbHandleMan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #23
0
 private void InitializeComponent()
 {
     this.buttonCancel = new Infragistics.Win.Misc.UltraButton();
     this.buttonOk     = new Infragistics.Win.Misc.UltraButton();
     this.txtTexto     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.lblInfo      = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.txtTexto)).BeginInit();
     this.SuspendLayout();
     //
     // buttonCancel
     //
     this.buttonCancel.ButtonStyle  = Infragistics.Win.UIElementButtonStyle.Button;
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.FlatMode     = true;
     this.buttonCancel.Location     = new System.Drawing.Point(184, 56);
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.Size         = new System.Drawing.Size(88, 24);
     this.buttonCancel.TabIndex     = 7;
     this.buttonCancel.Text         = "&Cancelar";
     //
     // buttonOk
     //
     this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Location     = new System.Drawing.Point(88, 56);
     this.buttonOk.Name         = "buttonOk";
     this.buttonOk.Size         = new System.Drawing.Size(88, 24);
     this.buttonOk.TabIndex     = 6;
     this.buttonOk.Text         = "&Aceptar";
     //
     // txtTexto
     //
     this.txtTexto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTexto.Location        = new System.Drawing.Point(16, 24);
     this.txtTexto.Name            = "txtTexto";
     this.txtTexto.Size            = new System.Drawing.Size(256, 22);
     this.txtTexto.TabIndex        = 0;
     this.txtTexto.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
     //
     // lblInfo
     //
     this.lblInfo.BackColor = System.Drawing.Color.Transparent;
     this.lblInfo.Location  = new System.Drawing.Point(16, 4);
     this.lblInfo.Name      = "lblInfo";
     this.lblInfo.Size      = new System.Drawing.Size(256, 23);
     this.lblInfo.TabIndex  = 9;
     //
     // InputBox
     //
     this.AcceptButton      = this.buttonOk;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(290, 88);
     this.ControlBox        = false;
     this.Controls.Add(this.txtTexto);
     this.Controls.Add(this.lblInfo);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOk);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "InputBox";
     this.Text            = "InputBox";
     this.Load           += new System.EventHandler(this.InputBox_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtTexto)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #24
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmAbmProductos));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.cmbTipo            = new mz.erp.ui.controls.mzComboEditor();
     this.chActivo           = new System.Windows.Forms.CheckBox();
     this.label6             = new System.Windows.Forms.Label();
     this.ueDescripcionLarga = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ueDescripcionCorta = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ueDescripcion      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ueCodigoBarras     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ueCodigo           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.label5             = new System.Windows.Forms.Label();
     this.label4             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.ueObservaciones        = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.label7                 = new System.Windows.Forms.Label();
     this.chkObligaNumeroDeSerie = new System.Windows.Forms.CheckBox();
     this.chkObligaCodigoBarras  = new System.Windows.Forms.CheckBox();
     this.panel1                 = new System.Windows.Forms.Panel();
     this.toolBarStandar         = new System.Windows.Forms.ToolBar();
     this.tbbAnterior            = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator           = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente           = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2          = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar            = new System.Windows.Forms.ToolBarButton();
     this.imglStandar            = new System.Windows.Forms.ImageList(this.components);
     this.panel2                 = new System.Windows.Forms.Panel();
     this.ultraExplorerBar1      = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTipo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueDescripcionLarga)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueDescripcionCorta)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueDescripcion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueCodigoBarras)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueCodigo)).BeginInit();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ueObservaciones)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(28, 24);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(718, 24);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(718, 24);
     this.labelTarea.TabIndex  = 0;
     this.labelTarea.Text      = "Información general de productos";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.cmbTipo);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.chActivo);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label6);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ueDescripcionLarga);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ueDescripcionCorta);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ueDescripcion);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ueCodigoBarras);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ueCodigo);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label5);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label4);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.label1);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 107);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(718, 167);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // cmbTipo
     //
     this.cmbTipo.DataSource           = null;
     this.cmbTipo.DisplayMember        = "";
     this.cmbTipo.DisplayMemberCaption = "";
     this.cmbTipo.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbTipo.Location             = new System.Drawing.Point(547, 8);
     this.cmbTipo.MaxItemsDisplay      = 200;
     this.cmbTipo.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.cmbTipo.Name               = "cmbTipo";
     this.cmbTipo.Size               = new System.Drawing.Size(157, 21);
     this.cmbTipo.SorterMember       = "";
     this.cmbTipo.TabIndex           = 13;
     this.cmbTipo.ValueMember        = "";
     this.cmbTipo.ValueMemberCaption = "";
     //
     // chActivo
     //
     this.chActivo.BackColor   = System.Drawing.Color.Transparent;
     this.chActivo.Location    = new System.Drawing.Point(425, 34);
     this.chActivo.Name        = "chActivo";
     this.chActivo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chActivo.Size        = new System.Drawing.Size(136, 16);
     this.chActivo.TabIndex    = 12;
     this.chActivo.Text        = "Activo";
     //
     // label6
     //
     this.label6.BackColor   = System.Drawing.Color.Transparent;
     this.label6.Location    = new System.Drawing.Point(415, 13);
     this.label6.Name        = "label6";
     this.label6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label6.Size        = new System.Drawing.Size(128, 16);
     this.label6.TabIndex    = 11;
     this.label6.Text        = "Tipo de Producto";
     //
     // ueDescripcionLarga
     //
     this.ueDescripcionLarga.Location   = new System.Drawing.Point(144, 105);
     this.ueDescripcionLarga.Multiline  = true;
     this.ueDescripcionLarga.Name       = "ueDescripcionLarga";
     this.ueDescripcionLarga.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
     this.ueDescripcionLarga.Size       = new System.Drawing.Size(560, 48);
     this.ueDescripcionLarga.TabIndex   = 9;
     this.ueDescripcionLarga.Text       = "ultraTextEditor5";
     //
     // ueDescripcionCorta
     //
     this.ueDescripcionCorta.Location = new System.Drawing.Point(144, 81);
     this.ueDescripcionCorta.Name     = "ueDescripcionCorta";
     this.ueDescripcionCorta.Size     = new System.Drawing.Size(560, 21);
     this.ueDescripcionCorta.TabIndex = 8;
     this.ueDescripcionCorta.Text     = "ultraTextEditor4";
     //
     // ueDescripcion
     //
     this.ueDescripcion.Location = new System.Drawing.Point(144, 57);
     this.ueDescripcion.Name     = "ueDescripcion";
     this.ueDescripcion.Size     = new System.Drawing.Size(560, 21);
     this.ueDescripcion.TabIndex = 7;
     this.ueDescripcion.Text     = "ultraTextEditor3";
     //
     // ueCodigoBarras
     //
     this.ueCodigoBarras.Location = new System.Drawing.Point(144, 33);
     this.ueCodigoBarras.Name     = "ueCodigoBarras";
     this.ueCodigoBarras.Size     = new System.Drawing.Size(152, 21);
     this.ueCodigoBarras.TabIndex = 6;
     this.ueCodigoBarras.Text     = "ultraTextEditor2";
     //
     // ueCodigo
     //
     this.ueCodigo.Location = new System.Drawing.Point(144, 9);
     this.ueCodigo.Name     = "ueCodigo";
     this.ueCodigo.Size     = new System.Drawing.Size(152, 21);
     this.ueCodigo.TabIndex = 5;
     this.ueCodigo.Text     = "ultraTextEditor1";
     //
     // label5
     //
     this.label5.BackColor   = System.Drawing.Color.Transparent;
     this.label5.Location    = new System.Drawing.Point(11, 109);
     this.label5.Name        = "label5";
     this.label5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label5.Size        = new System.Drawing.Size(128, 16);
     this.label5.TabIndex    = 4;
     this.label5.Text        = "Descripción Larga";
     //
     // label4
     //
     this.label4.BackColor   = System.Drawing.Color.Transparent;
     this.label4.Location    = new System.Drawing.Point(11, 85);
     this.label4.Name        = "label4";
     this.label4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label4.Size        = new System.Drawing.Size(128, 16);
     this.label4.TabIndex    = 3;
     this.label4.Text        = "Descripción Corta";
     //
     // label3
     //
     this.label3.BackColor   = System.Drawing.Color.Transparent;
     this.label3.Location    = new System.Drawing.Point(11, 61);
     this.label3.Name        = "label3";
     this.label3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label3.Size        = new System.Drawing.Size(128, 16);
     this.label3.TabIndex    = 2;
     this.label3.Text        = "Descripción";
     //
     // label2
     //
     this.label2.BackColor   = System.Drawing.Color.Transparent;
     this.label2.Location    = new System.Drawing.Point(11, 36);
     this.label2.Name        = "label2";
     this.label2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label2.Size        = new System.Drawing.Size(128, 16);
     this.label2.TabIndex    = 1;
     this.label2.Text        = "Codigo de Barras";
     //
     // label1
     //
     this.label1.BackColor   = System.Drawing.Color.Transparent;
     this.label1.Location    = new System.Drawing.Point(11, 12);
     this.label1.Name        = "label1";
     this.label1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label1.Size        = new System.Drawing.Size(128, 16);
     this.label1.TabIndex    = 0;
     this.label1.Text        = "Codigo";
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ueObservaciones);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.label7);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.chkObligaNumeroDeSerie);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.chkObligaCodigoBarras);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 333);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(718, 157);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // ueObservaciones
     //
     this.ueObservaciones.Location   = new System.Drawing.Point(146, 4);
     this.ueObservaciones.Multiline  = true;
     this.ueObservaciones.Name       = "ueObservaciones";
     this.ueObservaciones.Scrollbars = System.Windows.Forms.ScrollBars.Vertical;
     this.ueObservaciones.Size       = new System.Drawing.Size(558, 92);
     this.ueObservaciones.TabIndex   = 16;
     this.ueObservaciones.Text       = "ultraTextEditor6";
     //
     // label7
     //
     this.label7.BackColor   = System.Drawing.Color.Transparent;
     this.label7.Location    = new System.Drawing.Point(13, 4);
     this.label7.Name        = "label7";
     this.label7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label7.Size        = new System.Drawing.Size(123, 16);
     this.label7.TabIndex    = 15;
     this.label7.Text        = "Observaciones";
     //
     // chkObligaNumeroDeSerie
     //
     this.chkObligaNumeroDeSerie.BackColor   = System.Drawing.Color.Transparent;
     this.chkObligaNumeroDeSerie.Location    = new System.Drawing.Point(8, 120);
     this.chkObligaNumeroDeSerie.Name        = "chkObligaNumeroDeSerie";
     this.chkObligaNumeroDeSerie.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkObligaNumeroDeSerie.Size        = new System.Drawing.Size(152, 24);
     this.chkObligaNumeroDeSerie.TabIndex    = 14;
     this.chkObligaNumeroDeSerie.Text        = "Obliga Numero de Serie";
     //
     // chkObligaCodigoBarras
     //
     this.chkObligaCodigoBarras.BackColor   = System.Drawing.Color.Transparent;
     this.chkObligaCodigoBarras.Location    = new System.Drawing.Point(24, 104);
     this.chkObligaCodigoBarras.Name        = "chkObligaCodigoBarras";
     this.chkObligaCodigoBarras.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkObligaCodigoBarras.Size        = new System.Drawing.Size(136, 16);
     this.chkObligaCodigoBarras.TabIndex    = 13;
     this.chkObligaCodigoBarras.Text        = "Obliga Codigo Barras";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.toolBarStandar);
     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(784, 32);
     this.panel1.TabIndex = 0;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente,
         this.tbbSeparator2,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(784, 28);
     this.toolBarStandar.TabIndex       = 18;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 7;
     this.tbbCancelar.Text       = "&Cancelar";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.ultraExplorerBar1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 32);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(784, 494);
     this.panel2.TabIndex = 1;
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
     this.ultraExplorerBar1.Dock      = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 24;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 167;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text      = "Datos Generales";
     ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup3.Settings.ContainerHeight = 157;
     ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text = "Datos Adicionales";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3
     });
     this.ultraExplorerBar1.Location = new System.Drawing.Point(0, 0);
     this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size     = new System.Drawing.Size(784, 494);
     this.ultraExplorerBar1.TabIndex = 0;
     //
     // FrmAbmProductos
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(784, 526);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "FrmAbmProductos";
     this.Text = " ";
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbTipo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueDescripcionLarga)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueDescripcionCorta)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueDescripcion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueCodigoBarras)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ueCodigo)).EndInit();
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ueObservaciones)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #25
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.uneCantidad           = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.lblInfoAdicional2     = new System.Windows.Forms.Label();
     this.lblInfoAdicional1     = new System.Windows.Forms.Label();
     this.labelUnidadOrigen     = new System.Windows.Forms.Label();
     this.labelCantidadDestino  = new System.Windows.Forms.Label();
     this.labelUnidadDestino    = new System.Windows.Forms.Label();
     this.labelFormula          = new System.Windows.Forms.Label();
     this.unePrecio             = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.unePrecioUnidadOrigen = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.buttonElipsis         = new System.Windows.Forms.Button();
     this.editorID               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtDescripcion         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.lblCodigoSecundario    = new System.Windows.Forms.Label();
     this.mzComboListaDePrecios  = new mz.erp.ui.controls.mzComboEditor();
     this.cboTipoDePrecioDeCosto = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.uneCantidad)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.unePrecio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.unePrecioUnidadOrigen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.editorID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescripcion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzComboListaDePrecios)).BeginInit();
     this.SuspendLayout();
     //
     // uneCantidad
     //
     this.uneCantidad.Location      = new System.Drawing.Point(407, 8);
     this.uneCantidad.MaskInput     = "nnnnnn.nn";
     this.uneCantidad.MaxValue      = 10000000;
     this.uneCantidad.MinValue      = 0;
     this.uneCantidad.Name          = "uneCantidad";
     this.uneCantidad.Nullable      = true;
     this.uneCantidad.NullText      = "0";
     this.uneCantidad.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.uneCantidad.Size          = new System.Drawing.Size(72, 21);
     this.uneCantidad.TabIndex      = 1;
     this.uneCantidad.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     this.uneCantidad.Value         = 1D;
     //
     // lblInfoAdicional2
     //
     this.lblInfoAdicional2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblInfoAdicional2.Location    = new System.Drawing.Point(144, 50);
     this.lblInfoAdicional2.Name        = "lblInfoAdicional2";
     this.lblInfoAdicional2.Size        = new System.Drawing.Size(264, 21);
     this.lblInfoAdicional2.TabIndex    = 10;
     //
     // lblInfoAdicional1
     //
     this.lblInfoAdicional1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblInfoAdicional1.Location    = new System.Drawing.Point(8, 50);
     this.lblInfoAdicional1.Name        = "lblInfoAdicional1";
     this.lblInfoAdicional1.Size        = new System.Drawing.Size(136, 21);
     this.lblInfoAdicional1.TabIndex    = 9;
     this.lblInfoAdicional1.Click      += new System.EventHandler(this.lblInfoAdicional1_Click);
     //
     // labelUnidadOrigen
     //
     this.labelUnidadOrigen.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.labelUnidadOrigen.Location    = new System.Drawing.Point(479, 8);
     this.labelUnidadOrigen.Name        = "labelUnidadOrigen";
     this.labelUnidadOrigen.Size        = new System.Drawing.Size(56, 21);
     this.labelUnidadOrigen.TabIndex    = 11;
     this.labelUnidadOrigen.Click      += new System.EventHandler(this.labelUnidadOrigen_Click);
     //
     // labelCantidadDestino
     //
     this.labelCantidadDestino.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.labelCantidadDestino.Location    = new System.Drawing.Point(407, 29);
     this.labelCantidadDestino.Name        = "labelCantidadDestino";
     this.labelCantidadDestino.Size        = new System.Drawing.Size(72, 21);
     this.labelCantidadDestino.TabIndex    = 12;
     this.labelCantidadDestino.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // labelUnidadDestino
     //
     this.labelUnidadDestino.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.labelUnidadDestino.Location    = new System.Drawing.Point(479, 29);
     this.labelUnidadDestino.Name        = "labelUnidadDestino";
     this.labelUnidadDestino.Size        = new System.Drawing.Size(56, 21);
     this.labelUnidadDestino.TabIndex    = 13;
     this.labelUnidadDestino.Click      += new System.EventHandler(this.labelUnidadDestino_Click);
     //
     // labelFormula
     //
     this.labelFormula.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.labelFormula.Location    = new System.Drawing.Point(408, 48);
     this.labelFormula.Name        = "labelFormula";
     this.labelFormula.Size        = new System.Drawing.Size(128, 21);
     this.labelFormula.TabIndex    = 14;
     this.labelFormula.Click      += new System.EventHandler(this.labelFormula_Click);
     //
     // unePrecio
     //
     this.unePrecio.FormatString  = "c";
     this.unePrecio.Location      = new System.Drawing.Point(704, 29);
     this.unePrecio.MinValue      = -2147483647D;
     this.unePrecio.Name          = "unePrecio";
     this.unePrecio.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.unePrecio.Size          = new System.Drawing.Size(64, 21);
     this.unePrecio.TabIndex      = 4;
     this.unePrecio.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     this.unePrecio.TabStop       = false;
     this.unePrecio.ValueChanged += new System.EventHandler(this.unePrecio_ValueChanged);
     //
     // unePrecioUnidadOrigen
     //
     this.unePrecioUnidadOrigen.FormatString  = "c";
     this.unePrecioUnidadOrigen.Location      = new System.Drawing.Point(704, 8);
     this.unePrecioUnidadOrigen.MinValue      = -2147483647D;
     this.unePrecioUnidadOrigen.Name          = "unePrecioUnidadOrigen";
     this.unePrecioUnidadOrigen.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.unePrecioUnidadOrigen.Size          = new System.Drawing.Size(64, 21);
     this.unePrecioUnidadOrigen.TabIndex      = 3;
     this.unePrecioUnidadOrigen.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     this.unePrecioUnidadOrigen.TabStop       = false;
     //
     // buttonElipsis
     //
     this.buttonElipsis.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonElipsis.Location  = new System.Drawing.Point(120, 8);
     this.buttonElipsis.Name      = "buttonElipsis";
     this.buttonElipsis.Size      = new System.Drawing.Size(25, 22);
     this.buttonElipsis.TabIndex  = 18;
     this.buttonElipsis.TabStop   = false;
     this.buttonElipsis.Text      = "...";
     this.buttonElipsis.Click    += new System.EventHandler(this.buttonElipsis_Click);
     //
     // editorID
     //
     this.editorID.AcceptsTab = true;
     this.editorID.Location   = new System.Drawing.Point(8, 8);
     this.editorID.Name       = "editorID";
     this.editorID.Size       = new System.Drawing.Size(110, 21);
     this.editorID.TabIndex   = 0;
     //
     // txtDescripcion
     //
     this.txtDescripcion.Location      = new System.Drawing.Point(144, 8);
     this.txtDescripcion.Multiline     = true;
     this.txtDescripcion.Name          = "txtDescripcion";
     this.txtDescripcion.ReadOnly      = true;
     this.txtDescripcion.Size          = new System.Drawing.Size(264, 42);
     this.txtDescripcion.TabIndex      = 20;
     this.txtDescripcion.TabStop       = false;
     this.txtDescripcion.ValueChanged += new System.EventHandler(this.txtDescripcion_ValueChanged);
     //
     // lblCodigoSecundario
     //
     this.lblCodigoSecundario.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblCodigoSecundario.Location    = new System.Drawing.Point(8, 29);
     this.lblCodigoSecundario.Name        = "lblCodigoSecundario";
     this.lblCodigoSecundario.Size        = new System.Drawing.Size(136, 21);
     this.lblCodigoSecundario.TabIndex    = 21;
     //
     // mzComboListaDePrecios
     //
     this.mzComboListaDePrecios.AutoCompleteMode     = Infragistics.Win.AutoCompleteMode.Append;
     this.mzComboListaDePrecios.DisplayMember        = "";
     this.mzComboListaDePrecios.DisplayMemberCaption = "";
     this.mzComboListaDePrecios.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzComboListaDePrecios.Location             = new System.Drawing.Point(536, 8);
     this.mzComboListaDePrecios.MaxItemsDisplay      = 7;
     this.mzComboListaDePrecios.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzComboListaDePrecios.Name               = "mzComboListaDePrecios";
     this.mzComboListaDePrecios.Size               = new System.Drawing.Size(168, 21);
     this.mzComboListaDePrecios.SorterMember       = "";
     this.mzComboListaDePrecios.TabIndex           = 1813;
     this.mzComboListaDePrecios.ValueMember        = "";
     this.mzComboListaDePrecios.ValueMemberCaption = "";
     //
     // cboTipoDePrecioDeCosto
     //
     this.cboTipoDePrecioDeCosto.Location = new System.Drawing.Point(536, 8);
     this.cboTipoDePrecioDeCosto.Name     = "cboTipoDePrecioDeCosto";
     this.cboTipoDePrecioDeCosto.Size     = new System.Drawing.Size(168, 21);
     this.cboTipoDePrecioDeCosto.TabIndex = 2;
     this.cboTipoDePrecioDeCosto.Tag      = "TiposDeComprobantes";
     //
     // mzProductosControl
     //
     this.BackColor = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.cboTipoDePrecioDeCosto);
     this.Controls.Add(this.mzComboListaDePrecios);
     this.Controls.Add(this.lblCodigoSecundario);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.buttonElipsis);
     this.Controls.Add(this.editorID);
     this.Controls.Add(this.unePrecioUnidadOrigen);
     this.Controls.Add(this.unePrecio);
     this.Controls.Add(this.labelFormula);
     this.Controls.Add(this.labelUnidadDestino);
     this.Controls.Add(this.labelCantidadDestino);
     this.Controls.Add(this.labelUnidadOrigen);
     this.Controls.Add(this.lblInfoAdicional2);
     this.Controls.Add(this.lblInfoAdicional1);
     this.Controls.Add(this.uneCantidad);
     this.Name  = "mzProductosControl";
     this.Size  = new System.Drawing.Size(776, 80);
     this.Load += new System.EventHandler(this.mzProductosControl_Load);
     ((System.ComponentModel.ISupportInitialize)(this.uneCantidad)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.unePrecio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.unePrecioUnidadOrigen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.editorID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescripcion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzComboListaDePrecios)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel6              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbProduct               = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.cmbProduct);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Location = new System.Drawing.Point(28, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(888, 150);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(288, 64);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(88, 23);
     this.ultraLabel6.TabIndex = 41;
     this.ultraLabel6.Text     = "服务产品:";
     //
     // cmbProduct
     //
     this.cmbProduct.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbProduct.Location     = new System.Drawing.Point(392, 64);
     this.cmbProduct.Name         = "cmbProduct";
     this.cmbProduct.Size         = new System.Drawing.Size(144, 21);
     this.cmbProduct.TabIndex     = 40;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(504, 104);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(288, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 112);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 72);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 32;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(552, 72);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(96, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(552, 32);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(96, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(656, 72);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(656, 32);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(392, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(400, 104);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(296, 104);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 72);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(128, 112);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 32);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 13;
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(840, 379);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ProductReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(944, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "ProductReport";
     this.Text  = Login.constApp.strCardTypeL8Name + "服务产品消费报表";
     this.Load += new System.EventHandler(this.ProductReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #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();
     this.ultraGrid1         = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraLabel1        = new Infragistics.Win.Misc.UltraLabel();
     this.txtQMemberCardNo   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtQPaperNo        = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox1     = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnQuery           = new Infragistics.Win.Misc.UltraButton();
     this.txtQMemberName     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3        = new Infragistics.Win.Misc.UltraLabel();
     this.btnAddCard         = new Infragistics.Win.Misc.UltraButton();
     this.ultraGroupBox2     = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtCost            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel9        = new Infragistics.Win.Misc.UltraLabel();
     this.btnCancel          = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel8        = new Infragistics.Win.Misc.UltraLabel();
     this.txtNewMemberCardNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtFree            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5        = new Infragistics.Win.Misc.UltraLabel();
     this.txtMemberName      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4        = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6        = new Infragistics.Win.Misc.UltraLabel();
     this.txtMemberCardNo    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7        = new Infragistics.Win.Misc.UltraLabel();
     this.errorProvider1     = new System.Windows.Forms.ErrorProvider(this.components);
     this.ultraGroupBox3     = new Infragistics.Win.Misc.UltraGroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(88, 48);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(224, 64);
     this.ultraGrid1.TabIndex           = 0;
     this.ultraGrid1.Text               = "已挂失会员卡";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(8, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 1;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // txtQMemberCardNo
     //
     this.txtQMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberCardNo.Location     = new System.Drawing.Point(136, 32);
     this.txtQMemberCardNo.MaxLength    = 8;
     this.txtQMemberCardNo.Name         = "txtQMemberCardNo";
     this.txtQMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberCardNo.TabIndex     = 2;
     //
     // txtQPaperNo
     //
     this.txtQPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQPaperNo.Location     = new System.Drawing.Point(136, 72);
     this.txtQPaperNo.Name         = "txtQPaperNo";
     this.txtQPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQPaperNo.TabIndex     = 4;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(8, 72);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 3;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.txtQMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtQMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.txtQPaperNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Location = new System.Drawing.Point(200, 72);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(616, 112);
     this.ultraGroupBox1.TabIndex = 5;
     this.ultraGroupBox1.Text     = "已挂失会员卡查询";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(296, 72);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 7;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // txtQMemberName
     //
     this.txtQMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberName.Location     = new System.Drawing.Point(408, 32);
     this.txtQMemberName.Name         = "txtQMemberName";
     this.txtQMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberName.TabIndex     = 6;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(280, 32);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 5;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // btnAddCard
     //
     this.btnAddCard.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAddCard.Location    = new System.Drawing.Point(56, 224);
     this.btnAddCard.Name        = "btnAddCard";
     this.btnAddCard.Size        = new System.Drawing.Size(72, 23);
     this.btnAddCard.TabIndex    = 8;
     this.btnAddCard.Text        = "补卡";
     this.btnAddCard.Click      += new System.EventHandler(this.btnAddCard_Click);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.txtCost);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox2.Controls.Add(this.btnCancel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox2.Controls.Add(this.txtNewMemberCardNo);
     this.ultraGroupBox2.Controls.Add(this.txtFree);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox2.Controls.Add(this.btnAddCard);
     this.ultraGroupBox2.Location = new System.Drawing.Point(720, 200);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(272, 264);
     this.ultraGroupBox2.TabIndex = 9;
     this.ultraGroupBox2.Text     = "补卡操作";
     //
     // txtCost
     //
     this.txtCost.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCost.Location     = new System.Drawing.Point(138, 192);
     this.txtCost.Name         = "txtCost";
     this.txtCost.Size         = new System.Drawing.Size(100, 21);
     this.txtCost.TabIndex     = 24;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(34, 192);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 23;
     this.ultraLabel9.Text     = "工本费:";
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(152, 224);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(72, 23);
     this.btnCancel.TabIndex    = 22;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(32, 64);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel8.TabIndex = 20;
     this.ultraLabel8.Text     = "新会员卡号:";
     //
     // txtNewMemberCardNo
     //
     this.txtNewMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtNewMemberCardNo.Location     = new System.Drawing.Point(136, 64);
     this.txtNewMemberCardNo.MaxLength    = 8;
     this.txtNewMemberCardNo.Name         = "txtNewMemberCardNo";
     this.txtNewMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtNewMemberCardNo.TabIndex     = 21;
     //
     // txtFree
     //
     this.txtFree.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtFree.Enabled      = false;
     this.txtFree.Location     = new System.Drawing.Point(138, 160);
     this.txtFree.Name         = "txtFree";
     this.txtFree.Size         = new System.Drawing.Size(100, 21);
     this.txtFree.TabIndex     = 19;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(34, 160);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 18;
     this.ultraLabel5.Text     = "场次:";
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(138, 96);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(34, 104);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 14;
     this.ultraLabel4.Text     = "单位名称:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(138, 128);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(34, 128);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 16;
     this.ultraLabel6.Text     = "工商注册号:";
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(138, 32);
     this.txtMemberCardNo.MaxLength    = 8;
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 13;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(34, 32);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 12;
     this.ultraLabel7.Text     = "会员卡号:";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox3.Location = new System.Drawing.Point(16, 200);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(696, 408);
     this.ultraGroupBox3.TabIndex = 10;
     //
     // MemberCardAddCard
     //
     this.AcceptButton      = this.btnQuery;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1008, 654);
     this.Controls.Add(this.ultraGroupBox3);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberCardAddCard";
     this.Text  = Login.constApp.strCardTypeL8Name + "补卡";
     this.Load += new System.EventHandler(this.MemberCardAddCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnDelete       = new Infragistics.Win.Misc.UltraButton();
     this.ultraGroupBox1  = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbType         = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtValue        = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1     = new Infragistics.Win.Misc.UltraLabel();
     this.btnModify       = new Infragistics.Win.Misc.UltraButton();
     this.btnAdd          = new Infragistics.Win.Misc.UltraButton();
     this.ultraGrid1      = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGrid2      = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox2  = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbMemberType   = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtMemberValue  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5     = new Infragistics.Win.Misc.UltraLabel();
     this.btnMemberModify = new Infragistics.Win.Misc.UltraButton();
     this.btnMemberAdd    = new Infragistics.Win.Misc.UltraButton();
     this.btnMemberDelete = new Infragistics.Win.Misc.UltraButton();
     this.cmbMember       = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel3     = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberValue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     this.SuspendLayout();
     //
     // btnDelete
     //
     this.btnDelete.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnDelete.Location    = new System.Drawing.Point(272, 128);
     this.btnDelete.Name        = "btnDelete";
     this.btnDelete.Size        = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex    = 3;
     this.btnDelete.Text        = "删除";
     this.btnDelete.Click      += new System.EventHandler(this.btnDelete_Click);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbType);
     this.ultraGroupBox1.Controls.Add(this.txtValue);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.btnModify);
     this.ultraGroupBox1.Controls.Add(this.btnAdd);
     this.ultraGroupBox1.Controls.Add(this.btnDelete);
     this.ultraGroupBox1.Location = new System.Drawing.Point(707, 72);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(384, 192);
     this.ultraGroupBox1.TabIndex = 5;
     this.ultraGroupBox1.Text     = "参数设置";
     //
     // cmbType
     //
     this.cmbType.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbType.Location      = new System.Drawing.Point(144, 32);
     this.cmbType.Name          = "cmbType";
     this.cmbType.Size          = new System.Drawing.Size(216, 21);
     this.cmbType.TabIndex      = 13;
     //
     // txtValue
     //
     this.txtValue.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtValue.Location     = new System.Drawing.Point(144, 72);
     this.txtValue.Name         = "txtValue";
     this.txtValue.Size         = new System.Drawing.Size(216, 21);
     this.txtValue.TabIndex     = 12;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(40, 72);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 10;
     this.ultraLabel2.Text     = "参数值:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(40, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 9;
     this.ultraLabel1.Text     = "参数类型:";
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(168, 128);
     this.btnModify.Name        = "btnModify";
     this.btnModify.Size        = new System.Drawing.Size(75, 23);
     this.btnModify.TabIndex    = 8;
     this.btnModify.Text        = "修改";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // btnAdd
     //
     this.btnAdd.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAdd.Location    = new System.Drawing.Point(64, 128);
     this.btnAdd.Name        = "btnAdd";
     this.btnAdd.Size        = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex    = 7;
     this.btnAdd.Text        = "添加";
     this.btnAdd.Click      += new System.EventHandler(this.btnAdd_Click);
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(16, 32);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(685, 248);
     this.ultraGrid1.TabIndex           = 6;
     this.ultraGrid1.Text               = "参数列表";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // ultraGrid2
     //
     this.ultraGrid2.Location           = new System.Drawing.Point(16, 304);
     this.ultraGrid2.Name               = "ultraGrid2";
     this.ultraGrid2.Size               = new System.Drawing.Size(685, 248);
     this.ultraGrid2.TabIndex           = 7;
     this.ultraGrid2.Text               = "会员参数设置";
     this.ultraGrid2.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid2_InitializeLayout);
     this.ultraGrid2.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid2_AfterSelectChange);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbMemberType);
     this.ultraGroupBox2.Controls.Add(this.txtMemberValue);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.btnMemberModify);
     this.ultraGroupBox2.Controls.Add(this.btnMemberAdd);
     this.ultraGroupBox2.Controls.Add(this.btnMemberDelete);
     this.ultraGroupBox2.Controls.Add(this.cmbMember);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Location = new System.Drawing.Point(707, 320);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(384, 208);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "会员参数设置";
     //
     // cmbMemberType
     //
     this.cmbMemberType.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbMemberType.Location      = new System.Drawing.Point(152, 72);
     this.cmbMemberType.Name          = "cmbMemberType";
     this.cmbMemberType.Size          = new System.Drawing.Size(216, 21);
     this.cmbMemberType.TabIndex      = 20;
     //
     // txtMemberValue
     //
     this.txtMemberValue.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberValue.Location     = new System.Drawing.Point(152, 104);
     this.txtMemberValue.Name         = "txtMemberValue";
     this.txtMemberValue.Size         = new System.Drawing.Size(216, 21);
     this.txtMemberValue.TabIndex     = 19;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(48, 104);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel4.TabIndex = 17;
     this.ultraLabel4.Text     = "参数值:";
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(48, 70);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 16;
     this.ultraLabel5.Text     = "参数类型:";
     //
     // btnMemberModify
     //
     this.btnMemberModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnMemberModify.Location    = new System.Drawing.Point(176, 160);
     this.btnMemberModify.Name        = "btnMemberModify";
     this.btnMemberModify.Size        = new System.Drawing.Size(75, 23);
     this.btnMemberModify.TabIndex    = 15;
     this.btnMemberModify.Text        = "修改";
     this.btnMemberModify.Click      += new System.EventHandler(this.btnMemberModify_Click);
     //
     // btnMemberAdd
     //
     this.btnMemberAdd.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnMemberAdd.Location    = new System.Drawing.Point(80, 160);
     this.btnMemberAdd.Name        = "btnMemberAdd";
     this.btnMemberAdd.Size        = new System.Drawing.Size(75, 23);
     this.btnMemberAdd.TabIndex    = 14;
     this.btnMemberAdd.Text        = "添加";
     this.btnMemberAdd.Click      += new System.EventHandler(this.btnMemberAdd_Click);
     //
     // btnMemberDelete
     //
     this.btnMemberDelete.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnMemberDelete.Location    = new System.Drawing.Point(280, 160);
     this.btnMemberDelete.Name        = "btnMemberDelete";
     this.btnMemberDelete.Size        = new System.Drawing.Size(75, 23);
     this.btnMemberDelete.TabIndex    = 13;
     this.btnMemberDelete.Text        = "删除";
     this.btnMemberDelete.Click      += new System.EventHandler(this.btnMemberDelete_Click);
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbMember.Location      = new System.Drawing.Point(152, 32);
     this.cmbMember.Name          = "cmbMember";
     this.cmbMember.Size          = new System.Drawing.Size(216, 21);
     this.cmbMember.TabIndex      = 1;
     this.cmbMember.ValueChanged += new System.EventHandler(this.cmbMember_ValueChanged);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(48, 36);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 0;
     this.ultraLabel3.Text     = "会员类型:";
     //
     // MemberSetting
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1132, 589);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGrid2);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "MemberSetting";
     this.Text  = "一通卡会员参数设置";
     this.Load += new System.EventHandler(this.MemberSetting_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberValue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
     this.pbMIcon = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.lblMessage = new Infragistics.Win.Misc.UltraLabel();
     this.pnlButtons = new Infragistics.Win.Misc.UltraPanel();
     this.btnTwo = new System.Windows.Forms.Button();
     this.btnOne = new System.Windows.Forms.Button();
     this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.tbMoreDetails = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.egbDetails = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.pnlContent = new Infragistics.Win.Misc.UltraPanel();
     this.pnlButtons.ClientArea.SuspendLayout();
     this.pnlButtons.SuspendLayout();
     this.ultraExpandableGroupBoxPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbMoreDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.egbDetails)).BeginInit();
     this.egbDetails.SuspendLayout();
     this.pnlContent.ClientArea.SuspendLayout();
     this.pnlContent.SuspendLayout();
     this.SuspendLayout();
     //
     // pbMIcon
     //
     appearance1.BorderColor = System.Drawing.Color.Transparent;
     this.pbMIcon.Appearance = appearance1;
     this.pbMIcon.BackColor = System.Drawing.Color.Transparent;
     this.pbMIcon.BorderShadowColor = System.Drawing.Color.Empty;
     this.pbMIcon.Location = new System.Drawing.Point(12, 12);
     this.pbMIcon.Name = "pbMIcon";
     this.pbMIcon.Size = new System.Drawing.Size(48, 48);
     this.pbMIcon.TabIndex = 0;
     //
     // lblMessage
     //
     appearance2.TextHAlignAsString = "Left";
     appearance2.TextVAlignAsString = "Middle";
     this.lblMessage.Appearance = appearance2;
     this.lblMessage.Location = new System.Drawing.Point(66, 12);
     this.lblMessage.MaximumSize = new System.Drawing.Size(506, 240);
     this.lblMessage.MinimumSize = new System.Drawing.Size(100, 48);
     this.lblMessage.Name = "lblMessage";
     this.lblMessage.Size = new System.Drawing.Size(506, 48);
     this.lblMessage.TabIndex = 1;
     //
     // pnlButtons
     //
     appearance3.BackColor = System.Drawing.SystemColors.Control;
     this.pnlButtons.Appearance = appearance3;
     //
     // pnlButtons.ClientArea
     //
     this.pnlButtons.ClientArea.Controls.Add(this.btnTwo);
     this.pnlButtons.ClientArea.Controls.Add(this.btnOne);
     this.pnlButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlButtons.Location = new System.Drawing.Point(0, 513);
     this.pnlButtons.Name = "pnlButtons";
     this.pnlButtons.Size = new System.Drawing.Size(582, 40);
     this.pnlButtons.TabIndex = 3;
     //
     // btnTwo
     //
     this.btnTwo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnTwo.Location = new System.Drawing.Point(416, 8);
     this.btnTwo.Name = "btnTwo";
     this.btnTwo.Size = new System.Drawing.Size(75, 23);
     this.btnTwo.TabIndex = 1;
     this.btnTwo.Text = "Button 2";
     this.btnTwo.UseVisualStyleBackColor = true;
     this.btnTwo.Click += new System.EventHandler(this.btnTwo_Click);
     //
     // btnOne
     //
     this.btnOne.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOne.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnOne.Location = new System.Drawing.Point(497, 8);
     this.btnOne.Name = "btnOne";
     this.btnOne.Size = new System.Drawing.Size(75, 23);
     this.btnOne.TabIndex = 0;
     this.btnOne.Text = "Button 1";
     this.btnOne.UseVisualStyleBackColor = true;
     this.btnOne.Click += new System.EventHandler(this.btnOne_Click);
     //
     // ultraExpandableGroupBoxPanel1
     //
     this.ultraExpandableGroupBoxPanel1.Controls.Add(this.tbMoreDetails);
     this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(0, 23);
     this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
     this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(562, 418);
     this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
     //
     // tbMoreDetails
     //
     this.tbMoreDetails.AlwaysInEditMode = true;
     this.tbMoreDetails.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)));
     appearance4.BackColor = System.Drawing.Color.Transparent;
     appearance4.BackColorDisabled = System.Drawing.Color.Transparent;
     this.tbMoreDetails.Appearance = appearance4;
     this.tbMoreDetails.BackColor = System.Drawing.Color.Transparent;
     this.tbMoreDetails.Location = new System.Drawing.Point(30, 3);
     this.tbMoreDetails.Multiline = true;
     this.tbMoreDetails.Name = "tbMoreDetails";
     this.tbMoreDetails.ReadOnly = true;
     this.tbMoreDetails.Scrollbars = System.Windows.Forms.ScrollBars.Both;
     this.tbMoreDetails.Size = new System.Drawing.Size(529, 412);
     this.tbMoreDetails.TabIndex = 0;
     this.tbMoreDetails.UseAppStyling = false;
     this.tbMoreDetails.WordWrap = false;
     //
     // egbDetails
     //
     this.egbDetails.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.egbDetails.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
     this.egbDetails.Controls.Add(this.ultraExpandableGroupBoxPanel1);
     this.egbDetails.ExpandedSize = new System.Drawing.Size(562, 441);
     appearance5.FontData.BoldAsString = "True";
     this.egbDetails.HeaderAppearance = appearance5;
     this.egbDetails.Location = new System.Drawing.Point(12, 66);
     this.egbDetails.MaximumSize = new System.Drawing.Size(564, 449);
     this.egbDetails.Name = "egbDetails";
     this.egbDetails.Size = new System.Drawing.Size(562, 441);
     this.egbDetails.TabIndex = 4;
     this.egbDetails.Text = "More Details";
     this.egbDetails.UseAppStyling = false;
     this.egbDetails.ExpandedStateChanged += new System.EventHandler(this.egbDetails_ExpandedStateChanged);
     //
     // pnlContent
     //
     //
     // pnlContent.ClientArea
     //
     this.pnlContent.ClientArea.Controls.Add(this.egbDetails);
     this.pnlContent.ClientArea.Controls.Add(this.pnlButtons);
     this.pnlContent.ClientArea.Controls.Add(this.lblMessage);
     this.pnlContent.ClientArea.Controls.Add(this.pbMIcon);
     this.pnlContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlContent.Location = new System.Drawing.Point(0, 0);
     this.pnlContent.Name = "pnlContent";
     this.pnlContent.Size = new System.Drawing.Size(582, 553);
     this.pnlContent.TabIndex = 5;
     //
     // MessageDialog
     //
     this.AcceptButton = this.btnTwo;
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.CancelButton = this.btnOne;
     this.ClientSize = new System.Drawing.Size(582, 553);
     this.Controls.Add(this.pnlContent);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(600, 600);
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(194, 152);
     this.Name = "MessageDialog";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Message Dialog Box";
     this.Load += new System.EventHandler(this.MessageDialog_Load);
     this.pnlButtons.ClientArea.ResumeLayout(false);
     this.pnlButtons.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbMoreDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.egbDetails)).EndInit();
     this.egbDetails.ResumeLayout(false);
     this.pnlContent.ClientArea.ResumeLayout(false);
     this.pnlContent.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnAddCard         = new Infragistics.Win.Misc.UltraButton();
     this.txtNewMemberCardNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4        = new Infragistics.Win.Misc.UltraLabel();
     this.ultraButton1       = new Infragistics.Win.Misc.UltraButton();
     this.ultraGroupBox1     = new Infragistics.Win.Misc.UltraGroupBox();
     this.errorProvider1     = new System.Windows.Forms.ErrorProvider();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnAddCard
     //
     this.btnAddCard.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAddCard.Location    = new System.Drawing.Point(56, 88);
     this.btnAddCard.Name        = "btnAddCard";
     this.btnAddCard.Size        = new System.Drawing.Size(72, 23);
     this.btnAddCard.TabIndex    = 11;
     this.btnAddCard.Text        = "È·¶¨";
     this.btnAddCard.Click      += new System.EventHandler(this.btnAddCard_Click);
     //
     // txtNewMemberCardNo
     //
     this.txtNewMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtNewMemberCardNo.Location     = new System.Drawing.Point(152, 40);
     this.txtNewMemberCardNo.MaxLength    = 8;
     this.txtNewMemberCardNo.Name         = "txtNewMemberCardNo";
     this.txtNewMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtNewMemberCardNo.TabIndex     = 10;
     this.txtNewMemberCardNo.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.txtNewMemberCardNo_KeyPress);
     this.txtNewMemberCardNo.Validated   += new System.EventHandler(this.txtNewMemberCardNo_Validated);
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(40, 40);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 9;
     this.ultraLabel4.Text     = "лáÔ±¿¨ºÅ£º";
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(152, 88);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(72, 23);
     this.ultraButton1.TabIndex    = 12;
     this.ultraButton1.Text        = "È¡Ïû";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.btnAddCard);
     this.ultraGroupBox1.Controls.Add(this.txtNewMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.ultraButton1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 48);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(320, 160);
     this.ultraGroupBox1.TabIndex = 13;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // MemberCardAddCardNewCard
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(416, 237);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name = "MemberCardAddCardNewCard";
     this.Text = "²¹¿¨²Ù×÷";
     ((System.ComponentModel.ISupportInitialize)(this.txtNewMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbBeginDate2  = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate2  = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate2    = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate2    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbBeginDate   = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate   = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate     = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate     = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkIs          = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraButton1   = new Infragistics.Win.Misc.UltraButton();
     this.btnOK          = new Infragistics.Win.Misc.UltraButton();
     this.txtJobName     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid1     = new Infragistics.Win.UltraWinGrid.UltraGrid();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox3);
     this.ultraGroupBox1.Controls.Add(this.ultraGroupBox2);
     this.ultraGroupBox1.Controls.Add(this.chkIs);
     this.ultraGroupBox1.Controls.Add(this.ultraButton1);
     this.ultraGroupBox1.Controls.Add(this.btnOK);
     this.ultraGroupBox1.Controls.Add(this.txtJobName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(128, 40);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(744, 176);
     this.ultraGroupBox1.TabIndex = 0;
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.cmbBeginDate2);
     this.ultraGroupBox3.Controls.Add(this.chkBeginDate2);
     this.ultraGroupBox3.Controls.Add(this.cmbEndDate2);
     this.ultraGroupBox3.Controls.Add(this.chkEndDate2);
     this.ultraGroupBox3.Location = new System.Drawing.Point(328, 64);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(296, 96);
     this.ultraGroupBox3.TabIndex = 17;
     this.ultraGroupBox3.Text     = "招聘会结束时间";
     //
     // cmbBeginDate2
     //
     this.cmbBeginDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate2.Location     = new System.Drawing.Point(136, 24);
     this.cmbBeginDate2.MaskInput    = "{date} {time}";
     this.cmbBeginDate2.Name         = "cmbBeginDate2";
     this.cmbBeginDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate2.TabIndex     = 12;
     //
     // chkBeginDate2
     //
     this.chkBeginDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate2.Location    = new System.Drawing.Point(16, 24);
     this.chkBeginDate2.Name        = "chkBeginDate2";
     this.chkBeginDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate2.TabIndex    = 14;
     this.chkBeginDate2.Text        = "开始时间";
     //
     // cmbEndDate2
     //
     this.cmbEndDate2.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate2.Location     = new System.Drawing.Point(136, 56);
     this.cmbEndDate2.MaskInput    = "{date} {time}";
     this.cmbEndDate2.Name         = "cmbEndDate2";
     this.cmbEndDate2.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate2.TabIndex     = 13;
     this.cmbEndDate2.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate2
     //
     this.chkEndDate2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate2.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate2.Location    = new System.Drawing.Point(16, 56);
     this.chkEndDate2.Name        = "chkEndDate2";
     this.chkEndDate2.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate2.TabIndex    = 15;
     this.chkEndDate2.Text        = "结束时间";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 64);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(296, 96);
     this.ultraGroupBox2.TabIndex = 16;
     this.ultraGroupBox2.Text     = "招聘会开始时间";
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(136, 24);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 12;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(16, 24);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(120, 20);
     this.chkBeginDate.TabIndex    = 14;
     this.chkBeginDate.Text        = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(136, 56);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 13;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(16, 56);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(120, 20);
     this.chkEndDate.TabIndex    = 15;
     this.chkEndDate.Text        = "结束时间";
     //
     // chkIs
     //
     this.chkIs.Location = new System.Drawing.Point(392, 32);
     this.chkIs.Name     = "chkIs";
     this.chkIs.Size     = new System.Drawing.Size(120, 20);
     this.chkIs.TabIndex = 4;
     this.chkIs.Text     = "是否失效";
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(648, 104);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 3;
     this.ultraButton1.Text        = "取消";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(648, 64);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex    = 2;
     this.btnOK.Text        = "查询";
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // txtJobName
     //
     this.txtJobName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtJobName.Location     = new System.Drawing.Point(240, 32);
     this.txtJobName.Name         = "txtJobName";
     this.txtJobName.Size         = new System.Drawing.Size(136, 21);
     this.txtJobName.TabIndex     = 1;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(136, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 16);
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "招聘会名称:";
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location          = new System.Drawing.Point(128, 231);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(744, 328);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "招聘会信息";
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // JobQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1183, 571);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "JobQuery";
     this.Text  = "招聘会信息查询";
     this.Load += new System.EventHandler(this.JobQuery_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     this.ultraGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtJobName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #32
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources   = new System.Resources.ResourceManager(typeof(mzProveedoresControl));
     Infragistics.Win.Appearance      appearance1 = new Infragistics.Win.Appearance();
     this.toolTip          = new System.Windows.Forms.ToolTip(this.components);
     this.button4          = new System.Windows.Forms.Button();
     this.button2          = new System.Windows.Forms.Button();
     this.button1          = new System.Windows.Forms.Button();
     this.buttonElipsis    = new System.Windows.Forms.Button();
     this.labelDescription = new Infragistics.Win.Misc.UltraLabel();
     this.editorID         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.btnCtaCte        = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.editorID)).BeginInit();
     this.SuspendLayout();
     //
     // button4
     //
     this.button4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button4.BackColor = System.Drawing.SystemColors.Control;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button4.Image     = ((System.Drawing.Image)(resources.GetObject("button4.Image")));
     this.button4.Location  = new System.Drawing.Point(440, 1);
     this.button4.Name      = "button4";
     this.button4.Size      = new System.Drawing.Size(22, 21);
     this.button4.TabIndex  = 15;
     this.button4.TabStop   = false;
     this.button4.Click    += new System.EventHandler(this.button4_Click);
     //
     // button2
     //
     this.button2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button2.Image     = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
     this.button2.Location  = new System.Drawing.Point(416, 1);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(22, 21);
     this.button2.TabIndex  = 14;
     this.button2.TabStop   = false;
     //
     // button1
     //
     this.button1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.BackColor = System.Drawing.SystemColors.Control;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button1.Image     = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location  = new System.Drawing.Point(392, 1);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(22, 21);
     this.button1.TabIndex  = 13;
     this.button1.TabStop   = false;
     //
     // buttonElipsis
     //
     this.buttonElipsis.BackColor = System.Drawing.SystemColors.Control;
     this.buttonElipsis.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonElipsis.Location  = new System.Drawing.Point(104, 1);
     this.buttonElipsis.Name      = "buttonElipsis";
     this.buttonElipsis.Size      = new System.Drawing.Size(22, 21);
     this.buttonElipsis.TabIndex  = 11;
     this.buttonElipsis.TabStop   = false;
     this.buttonElipsis.Text      = "...";
     //
     // labelDescription
     //
     appearance1.TextVAlign                      = Infragistics.Win.VAlign.Middle;
     this.labelDescription.Appearance            = appearance1;
     this.labelDescription.BackColor             = System.Drawing.SystemColors.Control;
     this.labelDescription.BorderStyleInner      = Infragistics.Win.UIElementBorderStyle.Dotted;
     this.labelDescription.ImageTransparentColor = System.Drawing.Color.Turquoise;
     this.labelDescription.Location              = new System.Drawing.Point(128, 1);
     this.labelDescription.Name                  = "labelDescription";
     this.labelDescription.Size                  = new System.Drawing.Size(264, 21);
     this.labelDescription.TabIndex              = 12;
     this.labelDescription.Click                += new System.EventHandler(this.labelDescription_Click);
     //
     // editorID
     //
     this.editorID.Location = new System.Drawing.Point(0, 1);
     this.editorID.Name     = "editorID";
     this.editorID.Size     = new System.Drawing.Size(104, 21);
     this.editorID.TabIndex = 10;
     //
     // btnCtaCte
     //
     this.btnCtaCte.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCtaCte.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnCtaCte.Image     = ((System.Drawing.Image)(resources.GetObject("btnCtaCte.Image")));
     this.btnCtaCte.Location  = new System.Drawing.Point(464, 0);
     this.btnCtaCte.Name      = "btnCtaCte";
     this.btnCtaCte.Size      = new System.Drawing.Size(22, 21);
     this.btnCtaCte.TabIndex  = 16;
     this.btnCtaCte.TabStop   = false;
     //
     // mzProveedoresControl
     //
     this.Controls.Add(this.btnCtaCte);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.buttonElipsis);
     this.Controls.Add(this.labelDescription);
     this.Controls.Add(this.editorID);
     this.Name = "mzProveedoresControl";
     this.Size = new System.Drawing.Size(490, 22);
     ((System.ComponentModel.ISupportInitialize)(this.editorID)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #33
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Usuario));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.ultraLabel3          = new Infragistics.Win.Misc.UltraLabel();
     this.textNombre           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraCheckEditor1    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel8          = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel11         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel14         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraComboEditor1    = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraDateTimeEditor3 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraNumericEditor1  = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.ultraCheckEditor2    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel19         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel12         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraCheckEditor3    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel18         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel13         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1          = new Infragistics.Win.Misc.UltraLabel();
     this.labelIdUsuario       = new Infragistics.Win.Misc.UltraLabel();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.ultraCheckEditor4    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.ultraLabel10         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel16         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraNumericEditor2  = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.ultraTextEditor3     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel15         = new Infragistics.Win.Misc.UltraLabel();
     this.ultraTextEditor2     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4          = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5          = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel9          = new Infragistics.Win.Misc.UltraLabel();
     this.ultraCheckEditor5    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraExplorerBarContainerControl3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.ultraLabel22      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel21      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel20      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel17      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6       = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7       = new Infragistics.Win.Misc.UltraLabel();
     this.imglStandar       = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar    = new System.Windows.Forms.ToolBar();
     this.tbFirstRecord     = new System.Windows.Forms.ToolBarButton();
     this.tbPreviousRecord  = new System.Windows.Forms.ToolBarButton();
     this.tbNextRecord      = new System.Windows.Forms.ToolBarButton();
     this.tbLastRecord      = new System.Windows.Forms.ToolBarButton();
     this.tbSep1            = new System.Windows.Forms.ToolBarButton();
     this.tbRefresh         = new System.Windows.Forms.ToolBarButton();
     this.tbSep2            = new System.Windows.Forms.ToolBarButton();
     this.tbSave            = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textNombre)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor1)).BeginInit();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
     this.ultraExplorerBarContainerControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).BeginInit();
     this.ultraExplorerBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.textNombre);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraDateTimeEditor1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraCheckEditor1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel8);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel11);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel14);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraComboEditor1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraDateTimeEditor3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraNumericEditor1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraCheckEditor2);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel19);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel12);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraCheckEditor3);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel18);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel13);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.ultraLabel1);
     this.ultraExplorerBarContainerControl1.Controls.Add(this.labelIdUsuario);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 49);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(551, 239);
     this.ultraExplorerBarContainerControl1.TabIndex = 0;
     //
     // ultraLabel3
     //
     this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel3.Location  = new System.Drawing.Point(0, 24);
     this.ultraLabel3.Name      = "ultraLabel3";
     this.ultraLabel3.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel3.TabIndex  = 2;
     this.ultraLabel3.Text      = "Nombre completo:";
     //
     // textNombre
     //
     this.textNombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.textNombre.Location  = new System.Drawing.Point(128, 24);
     this.textNombre.MaxLength = 50;
     this.textNombre.Multiline = true;
     this.textNombre.Name      = "textNombre";
     this.textNombre.Size      = new System.Drawing.Size(417, 44);
     this.textNombre.TabIndex  = 0;
     //
     // ultraDateTimeEditor1
     //
     this.ultraDateTimeEditor1.DateTime = new System.DateTime(2004, 11, 18, 0, 0, 0, 0);
     this.ultraDateTimeEditor1.Location = new System.Drawing.Point(128, 72);
     this.ultraDateTimeEditor1.Name     = "ultraDateTimeEditor1";
     this.ultraDateTimeEditor1.Size     = new System.Drawing.Size(128, 22);
     this.ultraDateTimeEditor1.TabIndex = 1;
     this.ultraDateTimeEditor1.Value    = new System.DateTime(2004, 11, 18, 0, 0, 0, 0);
     //
     // ultraCheckEditor1
     //
     this.ultraCheckEditor1.BackColor = System.Drawing.Color.Transparent;
     this.ultraCheckEditor1.Location  = new System.Drawing.Point(128, 96);
     this.ultraCheckEditor1.Name      = "ultraCheckEditor1";
     this.ultraCheckEditor1.Size      = new System.Drawing.Size(24, 20);
     this.ultraCheckEditor1.TabIndex  = 2;
     //
     // ultraLabel8
     //
     this.ultraLabel8.BackColor             = System.Drawing.Color.Transparent;
     this.ultraLabel8.ImageTransparentColor = System.Drawing.Color.Empty;
     this.ultraLabel8.Location = new System.Drawing.Point(0, 72);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.Size     = new System.Drawing.Size(120, 22);
     this.ultraLabel8.TabIndex = 8;
     this.ultraLabel8.Text     = "Expiración:";
     //
     // ultraLabel11
     //
     this.ultraLabel11.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel11.Location  = new System.Drawing.Point(0, 96);
     this.ultraLabel11.Name      = "ultraLabel11";
     this.ultraLabel11.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel11.TabIndex  = 11;
     this.ultraLabel11.Text      = "Bloqueado:";
     //
     // ultraLabel14
     //
     this.ultraLabel14.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel14.Location  = new System.Drawing.Point(0, 168);
     this.ultraLabel14.Name      = "ultraLabel14";
     this.ultraLabel14.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel14.TabIndex  = 14;
     this.ultraLabel14.Text      = "Administrador:";
     //
     // ultraComboEditor1
     //
     this.ultraComboEditor1.Location = new System.Drawing.Point(128, 192);
     this.ultraComboEditor1.Name     = "ultraComboEditor1";
     this.ultraComboEditor1.Size     = new System.Drawing.Size(168, 22);
     this.ultraComboEditor1.TabIndex = 6;
     //
     // ultraDateTimeEditor3
     //
     this.ultraDateTimeEditor3.DateTime = new System.DateTime(2004, 11, 18, 0, 0, 0, 0);
     this.ultraDateTimeEditor3.Location = new System.Drawing.Point(128, 144);
     this.ultraDateTimeEditor3.Name     = "ultraDateTimeEditor3";
     this.ultraDateTimeEditor3.Size     = new System.Drawing.Size(168, 22);
     this.ultraDateTimeEditor3.TabIndex = 4;
     this.ultraDateTimeEditor3.Value    = new System.DateTime(2004, 11, 18, 0, 0, 0, 0);
     //
     // ultraNumericEditor1
     //
     this.ultraNumericEditor1.Location = new System.Drawing.Point(128, 120);
     this.ultraNumericEditor1.Name     = "ultraNumericEditor1";
     this.ultraNumericEditor1.Size     = new System.Drawing.Size(168, 22);
     this.ultraNumericEditor1.TabIndex = 3;
     //
     // ultraCheckEditor2
     //
     this.ultraCheckEditor2.BackColor = System.Drawing.Color.Transparent;
     this.ultraCheckEditor2.Location  = new System.Drawing.Point(128, 168);
     this.ultraCheckEditor2.Name      = "ultraCheckEditor2";
     this.ultraCheckEditor2.Size      = new System.Drawing.Size(16, 20);
     this.ultraCheckEditor2.TabIndex  = 5;
     //
     // ultraLabel19
     //
     this.ultraLabel19.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel19.Location  = new System.Drawing.Point(0, 216);
     this.ultraLabel19.Name      = "ultraLabel19";
     this.ultraLabel19.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel19.TabIndex  = 19;
     this.ultraLabel19.Text      = "Activo:";
     //
     // ultraLabel12
     //
     this.ultraLabel12.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel12.Location  = new System.Drawing.Point(0, 120);
     this.ultraLabel12.Name      = "ultraLabel12";
     this.ultraLabel12.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel12.TabIndex  = 12;
     this.ultraLabel12.Text      = "Intentos de conexión:";
     //
     // ultraCheckEditor3
     //
     this.ultraCheckEditor3.BackColor = System.Drawing.Color.Transparent;
     this.ultraCheckEditor3.Location  = new System.Drawing.Point(128, 216);
     this.ultraCheckEditor3.Name      = "ultraCheckEditor3";
     this.ultraCheckEditor3.Size      = new System.Drawing.Size(16, 20);
     this.ultraCheckEditor3.TabIndex  = 7;
     //
     // ultraLabel18
     //
     this.ultraLabel18.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel18.Location  = new System.Drawing.Point(0, 192);
     this.ultraLabel18.Name      = "ultraLabel18";
     this.ultraLabel18.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel18.TabIndex  = 18;
     this.ultraLabel18.Text      = "Perfil utilizado:";
     //
     // ultraLabel13
     //
     this.ultraLabel13.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel13.Location  = new System.Drawing.Point(0, 144);
     this.ultraLabel13.Name      = "ultraLabel13";
     this.ultraLabel13.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel13.TabIndex  = 13;
     this.ultraLabel13.Text      = "Hablitación:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel1.Location  = new System.Drawing.Point(0, 0);
     this.ultraLabel1.Name      = "ultraLabel1";
     this.ultraLabel1.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel1.TabIndex  = 0;
     this.ultraLabel1.Text      = "ID:";
     //
     // labelIdUsuario
     //
     this.labelIdUsuario.BackColor = System.Drawing.Color.Transparent;
     this.labelIdUsuario.Location  = new System.Drawing.Point(128, 0);
     this.labelIdUsuario.Name      = "labelIdUsuario";
     this.labelIdUsuario.Size      = new System.Drawing.Size(168, 22);
     this.labelIdUsuario.TabIndex  = 1;
     this.labelIdUsuario.Text      = "ID:";
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraCheckEditor4);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraDateTimeEditor2);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraLabel10);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraLabel16);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraNumericEditor2);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraTextEditor3);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraLabel15);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraTextEditor2);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraLabel4);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraLabel5);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraLabel9);
     this.ultraExplorerBarContainerControl2.Controls.Add(this.ultraCheckEditor5);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, 89);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(264, 143);
     this.ultraExplorerBarContainerControl2.TabIndex = 1;
     //
     // ultraCheckEditor4
     //
     this.ultraCheckEditor4.BackColor = System.Drawing.Color.Transparent;
     this.ultraCheckEditor4.Location  = new System.Drawing.Point(96, 112);
     this.ultraCheckEditor4.Name      = "ultraCheckEditor4";
     this.ultraCheckEditor4.Size      = new System.Drawing.Size(24, 16);
     this.ultraCheckEditor4.TabIndex  = 5;
     //
     // ultraDateTimeEditor2
     //
     this.ultraDateTimeEditor2.DateTime = new System.DateTime(2004, 11, 18, 0, 0, 0, 0);
     this.ultraDateTimeEditor2.Location = new System.Drawing.Point(96, 48);
     this.ultraDateTimeEditor2.Name     = "ultraDateTimeEditor2";
     this.ultraDateTimeEditor2.Size     = new System.Drawing.Size(136, 22);
     this.ultraDateTimeEditor2.TabIndex = 2;
     this.ultraDateTimeEditor2.Value    = new System.DateTime(2004, 11, 18, 0, 0, 0, 0);
     //
     // ultraLabel10
     //
     this.ultraLabel10.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel10.Location  = new System.Drawing.Point(0, 48);
     this.ultraLabel10.Name      = "ultraLabel10";
     this.ultraLabel10.Size      = new System.Drawing.Size(88, 16);
     this.ultraLabel10.TabIndex  = 10;
     this.ultraLabel10.Text      = "Vencimiento:";
     //
     // ultraLabel16
     //
     this.ultraLabel16.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel16.Location  = new System.Drawing.Point(0, 72);
     this.ultraLabel16.Name      = "ultraLabel16";
     this.ultraLabel16.Size      = new System.Drawing.Size(88, 16);
     this.ultraLabel16.TabIndex  = 16;
     this.ultraLabel16.Text      = "Permitir cambio:";
     //
     // ultraNumericEditor2
     //
     this.ultraNumericEditor2.Location = new System.Drawing.Point(96, 88);
     this.ultraNumericEditor2.Name     = "ultraNumericEditor2";
     this.ultraNumericEditor2.Size     = new System.Drawing.Size(136, 22);
     this.ultraNumericEditor2.TabIndex = 4;
     //
     // ultraTextEditor3
     //
     this.ultraTextEditor3.Location     = new System.Drawing.Point(96, 24);
     this.ultraTextEditor3.MaxLength    = 50;
     this.ultraTextEditor3.Name         = "ultraTextEditor3";
     this.ultraTextEditor3.PasswordChar = '*';
     this.ultraTextEditor3.Size         = new System.Drawing.Size(136, 22);
     this.ultraTextEditor3.TabIndex     = 1;
     //
     // ultraLabel15
     //
     this.ultraLabel15.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel15.Location  = new System.Drawing.Point(0, 112);
     this.ultraLabel15.Name      = "ultraLabel15";
     this.ultraLabel15.Size      = new System.Drawing.Size(88, 16);
     this.ultraLabel15.TabIndex  = 15;
     this.ultraLabel15.Text      = "Nunca caduca:";
     //
     // ultraTextEditor2
     //
     this.ultraTextEditor2.Location     = new System.Drawing.Point(96, 0);
     this.ultraTextEditor2.MaxLength    = 50;
     this.ultraTextEditor2.Name         = "ultraTextEditor2";
     this.ultraTextEditor2.PasswordChar = '*';
     this.ultraTextEditor2.Size         = new System.Drawing.Size(136, 22);
     this.ultraTextEditor2.TabIndex     = 0;
     //
     // ultraLabel4
     //
     this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel4.Location  = new System.Drawing.Point(0, 0);
     this.ultraLabel4.Name      = "ultraLabel4";
     this.ultraLabel4.Size      = new System.Drawing.Size(88, 16);
     this.ultraLabel4.TabIndex  = 4;
     this.ultraLabel4.Text      = "Clave:";
     //
     // ultraLabel5
     //
     this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel5.Location  = new System.Drawing.Point(0, 24);
     this.ultraLabel5.Name      = "ultraLabel5";
     this.ultraLabel5.Size      = new System.Drawing.Size(88, 16);
     this.ultraLabel5.TabIndex  = 5;
     this.ultraLabel5.Text      = "Repetir:";
     //
     // ultraLabel9
     //
     this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel9.Location  = new System.Drawing.Point(0, 96);
     this.ultraLabel9.Name      = "ultraLabel9";
     this.ultraLabel9.Size      = new System.Drawing.Size(88, 16);
     this.ultraLabel9.TabIndex  = 9;
     this.ultraLabel9.Text      = "Días de validez:";
     //
     // ultraCheckEditor5
     //
     this.ultraCheckEditor5.BackColor = System.Drawing.Color.Transparent;
     this.ultraCheckEditor5.Location  = new System.Drawing.Point(96, 72);
     this.ultraCheckEditor5.Name      = "ultraCheckEditor5";
     this.ultraCheckEditor5.Size      = new System.Drawing.Size(24, 16);
     this.ultraCheckEditor5.TabIndex  = 3;
     //
     // ultraExplorerBarContainerControl3
     //
     this.ultraExplorerBarContainerControl3.Controls.Add(this.ultraLabel22);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.ultraLabel21);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.ultraLabel20);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.ultraLabel17);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.ultraLabel6);
     this.ultraExplorerBarContainerControl3.Controls.Add(this.ultraLabel7);
     this.ultraExplorerBarContainerControl3.Location = new System.Drawing.Point(316, 89);
     this.ultraExplorerBarContainerControl3.Name     = "ultraExplorerBarContainerControl3";
     this.ultraExplorerBarContainerControl3.Size     = new System.Drawing.Size(263, 63);
     this.ultraExplorerBarContainerControl3.TabIndex = 2;
     //
     // ultraLabel22
     //
     this.ultraLabel22.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel22.Location  = new System.Drawing.Point(128, 48);
     this.ultraLabel22.Name      = "ultraLabel22";
     this.ultraLabel22.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel22.TabIndex  = 20;
     this.ultraLabel22.Text      = "Raúl Gómez";
     //
     // ultraLabel21
     //
     this.ultraLabel21.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel21.Location  = new System.Drawing.Point(128, 24);
     this.ultraLabel21.Name      = "ultraLabel21";
     this.ultraLabel21.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel21.TabIndex  = 19;
     this.ultraLabel21.Text      = "4";
     //
     // ultraLabel20
     //
     this.ultraLabel20.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel20.Location  = new System.Drawing.Point(128, 0);
     this.ultraLabel20.Name      = "ultraLabel20";
     this.ultraLabel20.Size      = new System.Drawing.Size(120, 22);
     this.ultraLabel20.TabIndex  = 18;
     this.ultraLabel20.Text      = "21/8/2004";
     //
     // ultraLabel17
     //
     this.ultraLabel17.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel17.Location  = new System.Drawing.Point(0, 48);
     this.ultraLabel17.Name      = "ultraLabel17";
     this.ultraLabel17.Size      = new System.Drawing.Size(112, 22);
     this.ultraLabel17.TabIndex  = 17;
     this.ultraLabel17.Text      = "Última modificación:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel6.Location  = new System.Drawing.Point(0, 24);
     this.ultraLabel6.Name      = "ultraLabel6";
     this.ultraLabel6.Size      = new System.Drawing.Size(104, 22);
     this.ultraLabel6.TabIndex  = 6;
     this.ultraLabel6.Text      = "Conexiones fallidas:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel7.Location  = new System.Drawing.Point(0, 0);
     this.ultraLabel7.Name      = "ultraLabel7";
     this.ultraLabel7.Size      = new System.Drawing.Size(104, 22);
     this.ultraLabel7.TabIndex  = 7;
     this.ultraLabel7.Text      = "Última conexión:";
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbFirstRecord,
         this.tbPreviousRecord,
         this.tbNextRecord,
         this.tbLastRecord,
         this.tbSep1,
         this.tbRefresh,
         this.tbSep2,
         this.tbSave
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(616, 28);
     this.toolBarStandar.TabIndex       = 32;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbFirstRecord
     //
     this.tbFirstRecord.ImageIndex = 0;
     //
     // tbPreviousRecord
     //
     this.tbPreviousRecord.ImageIndex = 1;
     //
     // tbNextRecord
     //
     this.tbNextRecord.ImageIndex = 2;
     //
     // tbLastRecord
     //
     this.tbLastRecord.ImageIndex = 3;
     //
     // tbSep1
     //
     this.tbSep1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbRefresh
     //
     this.tbRefresh.ImageIndex = 5;
     //
     // tbSep2
     //
     this.tbSep2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbSave
     //
     this.tbSave.ImageIndex = 4;
     this.tbSave.Text       = "Guardar";
     //
     // ultraExplorerBar1
     //
     this.ultraExplorerBar1.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.ultraExplorerBar1.ColumnCount = 2;
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar1.Controls.Add(this.ultraExplorerBarContainerControl3);
     ultraExplorerBarGroup1.ColumnsSpanned           = 2;
     ultraExplorerBarGroup1.Container                = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup1.Expanded                 = false;
     ultraExplorerBarGroup1.Settings.ContainerHeight = 239;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "General";
     ultraExplorerBarGroup2.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup2.Settings.ContainerHeight = 143;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text      = "Clave";
     ultraExplorerBarGroup3.Container = this.ultraExplorerBarContainerControl3;
     ultraExplorerBarGroup3.Settings.ContainerHeight = 63;
     ultraExplorerBarGroup3.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup3.Text = "Información";
     this.ultraExplorerBar1.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3
     });
     this.ultraExplorerBar1.Location = new System.Drawing.Point(8, 32);
     this.ultraExplorerBar1.Name     = "ultraExplorerBar1"; this.ultraExplorerBar1.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar1.Size     = new System.Drawing.Size(600, 592);
     this.ultraExplorerBar1.TabIndex = 33;
     //
     // Usuario
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(616, 630);
     this.Controls.Add(this.ultraExplorerBar1);
     this.Controls.Add(this.toolBarStandar);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name = "Usuario";
     this.Text = "Usuario";
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textNombre)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor1)).EndInit();
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
     this.ultraExplorerBarContainerControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar1)).EndInit();
     this.ultraExplorerBar1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #34
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmConfirmarPreciosProductosCompras));
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup ultraExplorerBarGroup3 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup();
     this.ultraExplorerBarContainerControl2 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.labelTarea                        = new System.Windows.Forms.Label();
     this.containerProductos                = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.groupBox2                         = new System.Windows.Forms.GroupBox();
     this.gridManagerView1                  = new mz.erp.ui.controls.GridManagerView();
     this.gridProductos                     = new Janus.Windows.GridEX.GridEX();
     this.groupBox1                         = new System.Windows.Forms.GroupBox();
     this.checkBox1                         = new System.Windows.Forms.CheckBox();
     this.uccFechaFactura                   = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.ultraLabel2                       = new Infragistics.Win.Misc.UltraLabel();
     this.umeNumeroFactura                  = new Infragistics.Win.UltraWinMaskedEdit.UltraMaskedEdit();
     this.ultraLabel5                       = new Infragistics.Win.Misc.UltraLabel();
     this.uneValorCotizacionFactura         = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
     this.ultraLabel31                      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel32                      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel33                      = new Infragistics.Win.Misc.UltraLabel();
     this.mzCEFuenteDeCambioFactura         = new mz.erp.ui.controls.mzComboEditor();
     this.mzCEMonedaFactura                 = new mz.erp.ui.controls.mzComboEditor();
     this.ultraLabel4                       = new Infragistics.Win.Misc.UltraLabel();
     this.mzCmbProveedor                    = new mz.erp.ui.controls.mzComboSearchEditor();
     this.ultraExplorerBarContainerControl1 = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarContainerControl();
     this.uTEObservaciones                  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.imglStandar                       = new System.Windows.Forms.ImageList(this.components);
     this.toolBarStandar                    = new System.Windows.Forms.ToolBar();
     this.tbbAnterior                       = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator                      = new System.Windows.Forms.ToolBarButton();
     this.tbbSiguiente                      = new System.Windows.Forms.ToolBarButton();
     this.tbbSeparator2                     = new System.Windows.Forms.ToolBarButton();
     this.tbbCancelar                       = new System.Windows.Forms.ToolBarButton();
     this.ultraExplorerBar                  = new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar();
     this.ultraExplorerBarContainerControl2.SuspendLayout();
     this.containerProductos.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridProductos)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uccFechaFactura)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uneValorCotizacionFactura)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEFuenteDeCambioFactura)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEMonedaFactura)).BeginInit();
     this.ultraExplorerBarContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uTEObservaciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar)).BeginInit();
     this.ultraExplorerBar.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraExplorerBarContainerControl2
     //
     this.ultraExplorerBarContainerControl2.Controls.Add(this.labelTarea);
     this.ultraExplorerBarContainerControl2.Location = new System.Drawing.Point(28, -43);
     this.ultraExplorerBarContainerControl2.Name     = "ultraExplorerBarContainerControl2";
     this.ultraExplorerBarContainerControl2.Size     = new System.Drawing.Size(846, 34);
     this.ultraExplorerBarContainerControl2.TabIndex = 2;
     //
     // labelTarea
     //
     this.labelTarea.BackColor = System.Drawing.Color.Transparent;
     this.labelTarea.Dock      = System.Windows.Forms.DockStyle.Top;
     this.labelTarea.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelTarea.Location  = new System.Drawing.Point(0, 0);
     this.labelTarea.Name      = "labelTarea";
     this.labelTarea.Size      = new System.Drawing.Size(846, 23);
     this.labelTarea.TabIndex  = 1;
     this.labelTarea.Text      = "Tarea";
     this.labelTarea.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // containerProductos
     //
     this.containerProductos.Controls.Add(this.groupBox2);
     this.containerProductos.Controls.Add(this.groupBox1);
     this.containerProductos.Location = new System.Drawing.Point(28, -221);
     this.containerProductos.Name     = "containerProductos";
     this.containerProductos.Size     = new System.Drawing.Size(846, 453);
     this.containerProductos.TabIndex = 3;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.gridManagerView1);
     this.groupBox2.Controls.Add(this.gridProductos);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 120);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(846, 333);
     this.groupBox2.TabIndex = 157;
     this.groupBox2.TabStop  = false;
     //
     // gridManagerView1
     //
     this.gridManagerView1.BackColor = System.Drawing.SystemColors.Control;
     this.gridManagerView1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.gridManagerView1.Location  = new System.Drawing.Point(3, 16);
     this.gridManagerView1.Name      = "gridManagerView1";
     this.gridManagerView1.Size      = new System.Drawing.Size(840, 24);
     this.gridManagerView1.TabIndex  = 7;
     this.gridManagerView1.Visible   = false;
     //
     // gridProductos
     //
     this.gridProductos.AllowCardSizing = false;
     this.gridProductos.AllowDelete     = Janus.Windows.GridEX.InheritableBoolean.True;
     this.gridProductos.AllowEdit       = Janus.Windows.GridEX.InheritableBoolean.False;
     this.gridProductos.Cursor          = System.Windows.Forms.Cursors.Default;
     this.gridProductos.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.gridProductos.EditorsControlStyle.ButtonAppearance = Janus.Windows.GridEX.ButtonAppearance.Regular;
     this.gridProductos.EnterKeyBehavior   = Janus.Windows.GridEX.EnterKeyBehavior.None;
     this.gridProductos.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridProductos.InvalidValueAction = Janus.Windows.GridEX.InvalidValueAction.DiscardChanges;
     this.gridProductos.Location           = new System.Drawing.Point(3, 16);
     this.gridProductos.Name               = "gridProductos";
     this.gridProductos.Size               = new System.Drawing.Size(840, 314);
     this.gridProductos.TabIndex           = 8;
     this.gridProductos.TabStop            = false;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.uccFechaFactura);
     this.groupBox1.Controls.Add(this.ultraLabel2);
     this.groupBox1.Controls.Add(this.umeNumeroFactura);
     this.groupBox1.Controls.Add(this.ultraLabel5);
     this.groupBox1.Controls.Add(this.uneValorCotizacionFactura);
     this.groupBox1.Controls.Add(this.ultraLabel31);
     this.groupBox1.Controls.Add(this.ultraLabel32);
     this.groupBox1.Controls.Add(this.ultraLabel33);
     this.groupBox1.Controls.Add(this.mzCEFuenteDeCambioFactura);
     this.groupBox1.Controls.Add(this.mzCEMonedaFactura);
     this.groupBox1.Controls.Add(this.ultraLabel4);
     this.groupBox1.Controls.Add(this.mzCmbProveedor);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(846, 120);
     this.groupBox1.TabIndex = 156;
     this.groupBox1.TabStop  = false;
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(17, 93);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(184, 16);
     this.checkBox1.TabIndex = 3;
     this.checkBox1.Text     = "La factura ha sido cargada";
     //
     // uccFechaFactura
     //
     dateButton1.Caption = "Today";
     this.uccFechaFactura.DateButtons.Add(dateButton1);
     this.uccFechaFactura.Location          = new System.Drawing.Point(88, 64);
     this.uccFechaFactura.Name              = "uccFechaFactura";
     this.uccFechaFactura.NonAutoSizeHeight = 23;
     this.uccFechaFactura.Size              = new System.Drawing.Size(112, 21);
     this.uccFechaFactura.TabIndex          = 2;
     this.uccFechaFactura.Value             = new System.DateTime(2005, 1, 28, 0, 0, 0, 0);
     //
     // ultraLabel2
     //
     this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel2.Location  = new System.Drawing.Point(16, 64);
     this.ultraLabel2.Name      = "ultraLabel2";
     this.ultraLabel2.Size      = new System.Drawing.Size(62, 16);
     this.ultraLabel2.TabIndex  = 168;
     this.ultraLabel2.Text      = "Fecha";
     //
     // umeNumeroFactura
     //
     this.umeNumeroFactura.EditAs    = Infragistics.Win.UltraWinMaskedEdit.EditAsType.UseSpecifiedMask;
     this.umeNumeroFactura.InputMask = "?-####-########";
     this.umeNumeroFactura.Location  = new System.Drawing.Point(88, 40);
     this.umeNumeroFactura.Name      = "umeNumeroFactura";
     this.umeNumeroFactura.TabIndex  = 1;
     this.umeNumeroFactura.Text      = "A--";
     //
     // ultraLabel5
     //
     this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel5.Location  = new System.Drawing.Point(16, 41);
     this.ultraLabel5.Name      = "ultraLabel5";
     this.ultraLabel5.Size      = new System.Drawing.Size(62, 16);
     this.ultraLabel5.TabIndex  = 167;
     this.ultraLabel5.Text      = "Número";
     //
     // uneValorCotizacionFactura
     //
     this.uneValorCotizacionFactura.Location      = new System.Drawing.Point(344, 88);
     this.uneValorCotizacionFactura.Name          = "uneValorCotizacionFactura";
     this.uneValorCotizacionFactura.NumericType   = Infragistics.Win.UltraWinEditors.NumericType.Double;
     this.uneValorCotizacionFactura.PromptChar    = ' ';
     this.uneValorCotizacionFactura.Size          = new System.Drawing.Size(100, 21);
     this.uneValorCotizacionFactura.TabIndex      = 6;
     this.uneValorCotizacionFactura.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl;
     //
     // ultraLabel31
     //
     this.ultraLabel31.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel31.Location  = new System.Drawing.Point(216, 90);
     this.ultraLabel31.Name      = "ultraLabel31";
     this.ultraLabel31.Size      = new System.Drawing.Size(104, 16);
     this.ultraLabel31.TabIndex  = 162;
     this.ultraLabel31.Text      = "Valor Conversion";
     //
     // ultraLabel32
     //
     this.ultraLabel32.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel32.Location  = new System.Drawing.Point(216, 64);
     this.ultraLabel32.Name      = "ultraLabel32";
     this.ultraLabel32.Size      = new System.Drawing.Size(120, 16);
     this.ultraLabel32.TabIndex  = 161;
     this.ultraLabel32.Text      = "Fuente de Cambio";
     //
     // ultraLabel33
     //
     this.ultraLabel33.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel33.Location  = new System.Drawing.Point(216, 41);
     this.ultraLabel33.Name      = "ultraLabel33";
     this.ultraLabel33.Size      = new System.Drawing.Size(72, 16);
     this.ultraLabel33.TabIndex  = 160;
     this.ultraLabel33.Text      = "Moneda";
     //
     // mzCEFuenteDeCambioFactura
     //
     this.mzCEFuenteDeCambioFactura.AutoComplete         = true;
     this.mzCEFuenteDeCambioFactura.DataSource           = null;
     this.mzCEFuenteDeCambioFactura.DisplayMember        = "";
     this.mzCEFuenteDeCambioFactura.DisplayMemberCaption = "";
     this.mzCEFuenteDeCambioFactura.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCEFuenteDeCambioFactura.Location             = new System.Drawing.Point(344, 64);
     this.mzCEFuenteDeCambioFactura.MaxItemsDisplay      = 8;
     this.mzCEFuenteDeCambioFactura.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCEFuenteDeCambioFactura.Name               = "mzCEFuenteDeCambioFactura";
     this.mzCEFuenteDeCambioFactura.Size               = new System.Drawing.Size(167, 21);
     this.mzCEFuenteDeCambioFactura.SorterMember       = "";
     this.mzCEFuenteDeCambioFactura.TabIndex           = 5;
     this.mzCEFuenteDeCambioFactura.ValueMember        = "";
     this.mzCEFuenteDeCambioFactura.ValueMemberCaption = "";
     //
     // mzCEMonedaFactura
     //
     this.mzCEMonedaFactura.AutoComplete         = true;
     this.mzCEMonedaFactura.DataSource           = null;
     this.mzCEMonedaFactura.DisplayMember        = "";
     this.mzCEMonedaFactura.DisplayMemberCaption = "";
     this.mzCEMonedaFactura.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCEMonedaFactura.Location             = new System.Drawing.Point(344, 40);
     this.mzCEMonedaFactura.MaxItemsDisplay      = 8;
     this.mzCEMonedaFactura.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCEMonedaFactura.Name               = "mzCEMonedaFactura";
     this.mzCEMonedaFactura.Size               = new System.Drawing.Size(167, 21);
     this.mzCEMonedaFactura.SorterMember       = "";
     this.mzCEMonedaFactura.TabIndex           = 4;
     this.mzCEMonedaFactura.ValueMember        = "";
     this.mzCEMonedaFactura.ValueMemberCaption = "";
     //
     // ultraLabel4
     //
     this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
     this.ultraLabel4.Location  = new System.Drawing.Point(16, 16);
     this.ultraLabel4.Name      = "ultraLabel4";
     this.ultraLabel4.Size      = new System.Drawing.Size(62, 16);
     this.ultraLabel4.TabIndex  = 159;
     this.ultraLabel4.Text      = "Proveedor";
     //
     // mzCmbProveedor
     //
     this.mzCmbProveedor.BackColor            = System.Drawing.SystemColors.Control;
     this.mzCmbProveedor.DataValue            = "";
     this.mzCmbProveedor.EditObject           = null;
     this.mzCmbProveedor.FastSearch           = false;
     this.mzCmbProveedor.Font                 = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mzCmbProveedor.HierarchicalSearch   = false;
     this.mzCmbProveedor.Location             = new System.Drawing.Point(88, 16);
     this.mzCmbProveedor.Name                 = "mzCmbProveedor";
     this.mzCmbProveedor.ReadOnly             = false;
     this.mzCmbProveedor.SearchObject         = null;
     this.mzCmbProveedor.SearchObjectListener = null;
     this.mzCmbProveedor.Size                 = new System.Drawing.Size(560, 22);
     this.mzCmbProveedor.TabIndex             = 0;
     //
     // ultraExplorerBarContainerControl1
     //
     this.ultraExplorerBarContainerControl1.Controls.Add(this.uTEObservaciones);
     this.ultraExplorerBarContainerControl1.Location = new System.Drawing.Point(28, 291);
     this.ultraExplorerBarContainerControl1.Name     = "ultraExplorerBarContainerControl1";
     this.ultraExplorerBarContainerControl1.Size     = new System.Drawing.Size(846, 150);
     this.ultraExplorerBarContainerControl1.TabIndex = 4;
     //
     // uTEObservaciones
     //
     this.uTEObservaciones.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.uTEObservaciones.Location  = new System.Drawing.Point(0, 0);
     this.uTEObservaciones.Multiline = true;
     this.uTEObservaciones.Name      = "uTEObservaciones";
     this.uTEObservaciones.Size      = new System.Drawing.Size(846, 150);
     this.uTEObservaciones.TabIndex  = 2;
     //
     // imglStandar
     //
     this.imglStandar.ImageSize        = new System.Drawing.Size(16, 16);
     this.imglStandar.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglStandar.ImageStream")));
     this.imglStandar.TransparentColor = System.Drawing.Color.Magenta;
     //
     // toolBarStandar
     //
     this.toolBarStandar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBarStandar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbAnterior,
         this.tbbSeparator,
         this.tbbSiguiente,
         this.tbbSeparator2,
         this.tbbCancelar
     });
     this.toolBarStandar.DropDownArrows = true;
     this.toolBarStandar.ImageList      = this.imglStandar;
     this.toolBarStandar.Location       = new System.Drawing.Point(0, 0);
     this.toolBarStandar.Name           = "toolBarStandar";
     this.toolBarStandar.ShowToolTips   = true;
     this.toolBarStandar.Size           = new System.Drawing.Size(912, 28);
     this.toolBarStandar.TabIndex       = 24;
     this.toolBarStandar.TextAlign      = System.Windows.Forms.ToolBarTextAlign.Right;
     //
     // tbbAnterior
     //
     this.tbbAnterior.ImageIndex = 9;
     this.tbbAnterior.Text       = "&Anterior";
     //
     // tbbSeparator
     //
     this.tbbSeparator.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbSiguiente
     //
     this.tbbSiguiente.ImageIndex = 8;
     this.tbbSiguiente.Text       = "&Siguiente";
     //
     // tbbSeparator2
     //
     this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbbCancelar
     //
     this.tbbCancelar.ImageIndex = 7;
     this.tbbCancelar.Text       = "Cancelar";
     //
     // ultraExplorerBar
     //
     this.ultraExplorerBar.Controls.Add(this.ultraExplorerBarContainerControl2);
     this.ultraExplorerBar.Controls.Add(this.containerProductos);
     this.ultraExplorerBar.Controls.Add(this.ultraExplorerBarContainerControl1);
     this.ultraExplorerBar.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.ultraExplorerBar.Dock       = System.Windows.Forms.DockStyle.Fill;
     ultraExplorerBarGroup1.Container = this.ultraExplorerBarContainerControl2;
     ultraExplorerBarGroup1.Enabled   = false;
     ultraExplorerBarGroup1.Key       = "Tarea";
     ultraExplorerBarGroup1.Settings.ContainerHeight = 34;
     ultraExplorerBarGroup1.Settings.HeaderVisible   = Infragistics.Win.DefaultableBoolean.False;
     ultraExplorerBarGroup1.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup1.Text      = "Tarea";
     ultraExplorerBarGroup2.Container = this.containerProductos;
     ultraExplorerBarGroup2.Key       = "Productos";
     ultraExplorerBarGroup2.Settings.ContainerHeight = 453;
     ultraExplorerBarGroup2.Settings.Style           = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     ultraExplorerBarGroup2.Text           = "Producto";
     ultraExplorerBarGroup3.Container      = this.ultraExplorerBarContainerControl1;
     ultraExplorerBarGroup3.Key            = "Observaciones";
     ultraExplorerBarGroup3.Settings.Style = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
     this.ultraExplorerBar.Groups.AddRange(new Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarGroup[] {
         ultraExplorerBarGroup1,
         ultraExplorerBarGroup2,
         ultraExplorerBarGroup3
     });
     this.ultraExplorerBar.Location = new System.Drawing.Point(0, 28);
     this.ultraExplorerBar.Name     = "ultraExplorerBar"; this.ultraExplorerBar.AnimationEnabled = false;         //German 20101207 - Tarea Infragistics 2008 – Tarea 983
     this.ultraExplorerBar.Size     = new System.Drawing.Size(912, 466);
     this.ultraExplorerBar.TabIndex = 25;
     this.ultraExplorerBar.TabStop  = false;
     //
     // FrmConfirmarPreciosProductosCompras
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(912, 494);
     this.Controls.Add(this.ultraExplorerBar);
     this.Controls.Add(this.toolBarStandar);
     this.Name = "FrmConfirmarPreciosProductosCompras";
     this.Text = "FrmConfirmarPreciosProductosCompras";
     this.ultraExplorerBarContainerControl2.ResumeLayout(false);
     this.containerProductos.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridProductos)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uccFechaFactura)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uneValorCotizacionFactura)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEFuenteDeCambioFactura)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEMonedaFactura)).EndInit();
     this.ultraExplorerBarContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uTEObservaciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExplorerBar)).EndInit();
     this.ultraExplorerBar.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbManager     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel9    = new Infragistics.Win.Misc.UltraLabel();
     this.btnAddDept     = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel3    = new Infragistics.Win.Misc.UltraLabel();
     this.lblParentDept  = new Infragistics.Win.Misc.UltraLabel();
     this.txtDiscount    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.cmbParentDept  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtDeptName    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraButton1   = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel4    = new Infragistics.Win.Misc.UltraLabel();
     this.cmbParentDept2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtDeptName2   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbManager3    = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton3   = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel10   = new Infragistics.Win.Misc.UltraLabel();
     this.ultraButton2   = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel6    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel7    = new Infragistics.Win.Misc.UltraLabel();
     this.txtDiscount3   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.cmbParentDept3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtDeptName3   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel8    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGrid1     = new Infragistics.Win.UltraWinGrid.UltraGrid();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.cmbManager);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.btnAddDept);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.lblParentDept);
     this.ultraGroupBox1.Controls.Add(this.txtDiscount);
     this.ultraGroupBox1.Controls.Add(this.cmbParentDept);
     this.ultraGroupBox1.Controls.Add(this.txtDeptName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(24, 8);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(280, 216);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text     = "添加部门";
     //
     // cmbManager
     //
     this.cmbManager.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbManager.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbManager.Location      = new System.Drawing.Point(144, 136);
     this.cmbManager.Name          = "cmbManager";
     this.cmbManager.Size          = new System.Drawing.Size(112, 21);
     this.cmbManager.TabIndex      = 9;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(38, 136);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.TabIndex = 8;
     this.ultraLabel9.Text     = "部门管理员:";
     //
     // btnAddDept
     //
     this.btnAddDept.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAddDept.Location    = new System.Drawing.Point(96, 176);
     this.btnAddDept.Name        = "btnAddDept";
     this.btnAddDept.TabIndex    = 6;
     this.btnAddDept.Text        = "添加部门";
     this.btnAddDept.Click      += new System.EventHandler(this.btnAddDept_Click);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(40, 104);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.TabIndex = 5;
     this.ultraLabel3.Text     = "折扣:";
     //
     // lblParentDept
     //
     this.lblParentDept.Location = new System.Drawing.Point(40, 72);
     this.lblParentDept.Name     = "lblParentDept";
     this.lblParentDept.TabIndex = 4;
     this.lblParentDept.Text     = "上级部门名称:";
     //
     // txtDiscount
     //
     this.txtDiscount.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDiscount.Location     = new System.Drawing.Point(144, 104);
     this.txtDiscount.Name         = "txtDiscount";
     this.txtDiscount.Size         = new System.Drawing.Size(100, 21);
     this.txtDiscount.TabIndex     = 3;
     //
     // cmbParentDept
     //
     this.cmbParentDept.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbParentDept.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbParentDept.Location      = new System.Drawing.Point(144, 72);
     this.cmbParentDept.Name          = "cmbParentDept";
     this.cmbParentDept.Size          = new System.Drawing.Size(112, 21);
     this.cmbParentDept.TabIndex      = 2;
     //
     // txtDeptName
     //
     this.txtDeptName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDeptName.Location     = new System.Drawing.Point(144, 32);
     this.txtDeptName.Name         = "txtDeptName";
     this.txtDeptName.Size         = new System.Drawing.Size(100, 21);
     this.txtDeptName.TabIndex     = 1;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(40, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "部门名称:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbParentDept2);
     this.ultraGroupBox2.Controls.Add(this.txtDeptName2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 232);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(280, 120);
     this.ultraGroupBox2.TabIndex = 1;
     this.ultraGroupBox2.Text     = "查询部门";
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(88, 80);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.TabIndex    = 11;
     this.ultraButton1.Text        = "查询部门";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(24, 56);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 10;
     this.ultraLabel4.Text     = "上级部门名称:";
     //
     // cmbParentDept2
     //
     this.cmbParentDept2.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbParentDept2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbParentDept2.Location      = new System.Drawing.Point(136, 48);
     this.cmbParentDept2.Name          = "cmbParentDept2";
     this.cmbParentDept2.Size          = new System.Drawing.Size(112, 21);
     this.cmbParentDept2.TabIndex      = 9;
     //
     // txtDeptName2
     //
     this.txtDeptName2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDeptName2.Location     = new System.Drawing.Point(136, 24);
     this.txtDeptName2.Name         = "txtDeptName2";
     this.txtDeptName2.Size         = new System.Drawing.Size(100, 21);
     this.txtDeptName2.TabIndex     = 8;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(32, 24);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.TabIndex = 7;
     this.ultraLabel5.Text     = "部门名称:";
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.cmbManager3);
     this.ultraGroupBox3.Controls.Add(this.ultraButton3);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel10);
     this.ultraGroupBox3.Controls.Add(this.ultraButton2);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox3.Controls.Add(this.txtDiscount3);
     this.ultraGroupBox3.Controls.Add(this.cmbParentDept3);
     this.ultraGroupBox3.Controls.Add(this.txtDeptName3);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox3.Location = new System.Drawing.Point(24, 360);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(280, 216);
     this.ultraGroupBox3.TabIndex = 2;
     this.ultraGroupBox3.Text     = "修改部门";
     //
     // cmbManager3
     //
     this.cmbManager3.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbManager3.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbManager3.Location      = new System.Drawing.Point(136, 144);
     this.cmbManager3.Name          = "cmbManager3";
     this.cmbManager3.Size          = new System.Drawing.Size(112, 21);
     this.cmbManager3.TabIndex      = 17;
     //
     // ultraButton3
     //
     this.ultraButton3.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton3.Location    = new System.Drawing.Point(136, 176);
     this.ultraButton3.Name        = "ultraButton3";
     this.ultraButton3.TabIndex    = 16;
     this.ultraButton3.Text        = "删除部门";
     this.ultraButton3.Click      += new System.EventHandler(this.ultraButton3_Click);
     //
     // ultraLabel10
     //
     this.ultraLabel10.Location = new System.Drawing.Point(32, 144);
     this.ultraLabel10.Name     = "ultraLabel10";
     this.ultraLabel10.TabIndex = 15;
     this.ultraLabel10.Text     = "部门管理员:";
     //
     // ultraButton2
     //
     this.ultraButton2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton2.Location    = new System.Drawing.Point(32, 176);
     this.ultraButton2.Name        = "ultraButton2";
     this.ultraButton2.TabIndex    = 13;
     this.ultraButton2.Text        = "修改部门";
     this.ultraButton2.Click      += new System.EventHandler(this.ultraButton2_Click);
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(32, 113);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.TabIndex = 12;
     this.ultraLabel6.Text     = "折扣:";
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(32, 81);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.TabIndex = 11;
     this.ultraLabel7.Text     = "上级部门名称:";
     //
     // txtDiscount3
     //
     this.txtDiscount3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDiscount3.Location     = new System.Drawing.Point(136, 113);
     this.txtDiscount3.Name         = "txtDiscount3";
     this.txtDiscount3.Size         = new System.Drawing.Size(100, 21);
     this.txtDiscount3.TabIndex     = 10;
     //
     // cmbParentDept3
     //
     this.cmbParentDept3.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbParentDept3.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbParentDept3.Location      = new System.Drawing.Point(136, 81);
     this.cmbParentDept3.Name          = "cmbParentDept3";
     this.cmbParentDept3.Size          = new System.Drawing.Size(112, 21);
     this.cmbParentDept3.TabIndex      = 9;
     //
     // txtDeptName3
     //
     this.txtDeptName3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtDeptName3.Location     = new System.Drawing.Point(136, 41);
     this.txtDeptName3.Name         = "txtDeptName3";
     this.txtDeptName3.Size         = new System.Drawing.Size(100, 21);
     this.txtDeptName3.TabIndex     = 8;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(32, 41);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.TabIndex = 7;
     this.ultraLabel8.Text     = "部门名称:";
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location          = new System.Drawing.Point(344, 24);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(520, 544);
     this.ultraGrid1.TabIndex          = 3;
     this.ultraGrid1.Text              = "部门列表";
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // DeptManage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(888, 581);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox3);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "DeptManage";
     this.Text  = "部门管理";
     this.Load += new System.EventHandler(this.DeptManage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbManager3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbParentDept3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeptName3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }