Beispiel #1
0
    public static void LoadReportNameListInComboBox(ref Infragistics.Win.UltraWinEditors.UltraComboEditor ComboList, String Interface, String Module)
    {
        if (ComboList != null)
        {
            //Clear the list
            ComboList.Items.Clear();
            ComboList.Items.Add("<Selecione>");

            //Recarrega os filtros (outros usuários podem ter criados filtros nesse meio tempo).
            Objects.LoadReports();

            //Get only the filters from the specified interface.
            foreach (Relatorio r in LstReports.Where(x => x.Interface.ToUpper().Trim() == Interface.ToUpper().Trim() && x.Modulo.ToUpper().Trim() == Module.ToUpper().Trim()))
            {
                //Name that will show to the user
                //'!r.IsPrivate' means that this filter/report is public, all users can see/view
                if (!r.IsPrivate)
                {
                    ComboList.Items.Add($"[{r.UsrCrt}] - {r.NomeRelatorio}");
                }
                else
                {
                    ComboList.Items.Add($"{r.NomeRelatorio}");
                }
            }
        }
    }
Beispiel #2
0
        /****************************************************************************************************
        * NAME         : Common_StopBits_DataBinding                                                       *
        * DESCRIPTION  : Initial ComboEditorBox datasource load when the form load funcrion .              *
        * WRITTEN BY   : PrabakaranG                                                                       *
        * DATE         : 20Mar15                                                                           *
        ****************************************************************************************************/
        private void Common_StopBits_DataBinding(Infragistics.Win.UltraWinEditors.UltraComboEditor UCE_StopBits_Control)
        {
            DataTable dt = clsCommon.getStopBits();

            UCE_StopBits_Control.ValueMember   = "ValueText";
            UCE_StopBits_Control.DisplayMember = "DisplayText";
            UCE_StopBits_Control.DataSource    = dt;
            UCE_StopBits_Control.DataBind();
            UCE_StopBits_Control.SelectedIndex = 0;
        }
        private void CMXLoad(Infragistics.Win.UltraWinEditors.UltraComboEditor CMXFill,
                             string TableName, string ColumnValue, string ColumnDisplay)
        {
            string query = "select  " + ColumnValue + "," + ColumnDisplay + " from " + TableName + " ORDER BY " + ColumnDisplay + "";

            DA = new SqlDataAdapter(query, Con);
            Con.Open();
            DS = new DataSet();
            DA.Fill(DS, TableName);
            CMXFill.DataSource    = DS.Tables[TableName];
            CMXFill.DisplayMember = ColumnDisplay;
            CMXFill.ValueMember   = ColumnValue;
            Con.Close();
        }
Beispiel #4
0
        private void addItemtoComboEditor(Infragistics.Win.UltraWinEditors.UltraComboEditor uce, String query)
        {
            String        item;
            SqlDataReader myreader = null;

            myreader = SqlManager.getQuery(query, conn);

            while (uce.Items.Count > 0)
            {
                uce.Items.RemoveAt(0);
            }

            if (myreader.HasRows)
            {
                while (myreader.Read())
                {
                    item = myreader[0].ToString();
                    uce.Items.Add(item);
                }
            }
            myreader.Close();
        }
Beispiel #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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);
 }
Beispiel #6
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);
 }
Beispiel #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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);
 }
 /// <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);
 }
Beispiel #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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);
 }
Beispiel #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMember                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbMember);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Location = new System.Drawing.Point(128, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(748, 152);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(56, 104);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel1.TabIndex = 45;
     this.ultraLabel1.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(160, 104);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.Size         = new System.Drawing.Size(144, 21);
     this.cmbMemberRight.TabIndex     = 44;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(56, 72);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel4.TabIndex = 43;
     this.ultraLabel4.Text     = "是否会员:";
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.Location     = new System.Drawing.Point(160, 72);
     this.cmbMember.Name         = "cmbMember";
     this.cmbMember.Size         = new System.Drawing.Size(144, 21);
     this.cmbMember.TabIndex     = 42;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(624, 96);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(56, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(320, 88);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(96, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(320, 48);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(96, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "操作开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(424, 88);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(424, 48);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(160, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(624, 64);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(624, 32);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(48, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(840, 379);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // AllMoneyReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(944, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "AllMoneyReport";
     this.Text  = Login.constApp.strCardTypeL8Name + "收入报表";
     this.Load += new System.EventHandler(this.ProductReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Login));
     this.ultraPictureBox1 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
     this.btnLogin         = new Infragistics.Win.Misc.UltraButton();
     this.btnCancel        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel1      = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2      = new Infragistics.Win.Misc.UltraLabel();
     this.txtPWD           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraGroupBox1   = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnBrushCard     = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel3      = new Infragistics.Win.Misc.UltraLabel();
     this.txtOperName      = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbDept          = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     ((System.ComponentModel.ISupportInitialize)(this.txtPWD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     this.SuspendLayout();
     //
     // ultraPictureBox1
     //
     this.ultraPictureBox1.BackColor         = System.Drawing.Color.Transparent;
     this.ultraPictureBox1.BorderShadowColor = System.Drawing.Color.Empty;
     this.ultraPictureBox1.Image             = ((object)(resources.GetObject("ultraPictureBox1.Image")));
     this.ultraPictureBox1.Location          = new System.Drawing.Point(8, 0);
     this.ultraPictureBox1.Name     = "ultraPictureBox1";
     this.ultraPictureBox1.Size     = new System.Drawing.Size(232, 120);
     this.ultraPictureBox1.TabIndex = 0;
     //
     // btnLogin
     //
     this.btnLogin.ButtonStyle  = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnLogin.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnLogin.Location     = new System.Drawing.Point(16, 144);
     this.btnLogin.Name         = "btnLogin";
     this.btnLogin.Size         = new System.Drawing.Size(56, 23);
     this.btnLogin.TabIndex     = 5;
     this.btnLogin.Text         = "登录";
     this.btnLogin.Click       += new System.EventHandler(this.btnLogin_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle  = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(88, 144);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(56, 23);
     this.btnCancel.TabIndex     = 6;
     this.btnCancel.Text         = "取消";
     this.btnCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 64);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(64, 23);
     this.ultraLabel1.TabIndex = 3;
     this.ultraLabel1.Text     = "用户名:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 104);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(56, 23);
     this.ultraLabel2.TabIndex = 4;
     this.ultraLabel2.Text     = "密  码:";
     //
     // txtPWD
     //
     this.txtPWD.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPWD.Location     = new System.Drawing.Point(96, 104);
     this.txtPWD.Name         = "txtPWD";
     this.txtPWD.NullText     = "请输入密码";
     this.txtPWD.PasswordChar = '*';
     this.txtPWD.Size         = new System.Drawing.Size(120, 21);
     this.txtPWD.TabIndex     = 2;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnBrushCard);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtOperName);
     this.ultraGroupBox1.Controls.Add(this.cmbDept);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.txtPWD);
     this.ultraGroupBox1.Controls.Add(this.btnLogin);
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Location = new System.Drawing.Point(8, 120);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(232, 184);
     this.ultraGroupBox1.TabIndex = 7;
     this.ultraGroupBox1.Text     = "操作员登录";
     //
     // btnBrushCard
     //
     this.btnBrushCard.ButtonStyle  = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnBrushCard.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnBrushCard.Location     = new System.Drawing.Point(160, 144);
     this.btnBrushCard.Name         = "btnBrushCard";
     this.btnBrushCard.Size         = new System.Drawing.Size(56, 23);
     this.btnBrushCard.TabIndex     = 10;
     this.btnBrushCard.Text         = "刷卡";
     this.btnBrushCard.Click       += new System.EventHandler(this.btnBrushCard_Click);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 32);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(56, 23);
     this.ultraLabel3.TabIndex = 9;
     this.ultraLabel3.Text     = "部  门:";
     //
     // txtOperName
     //
     this.txtOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtOperName.Location     = new System.Drawing.Point(96, 64);
     this.txtOperName.Name         = "txtOperName";
     this.txtOperName.Size         = new System.Drawing.Size(120, 21);
     this.txtOperName.TabIndex     = 1;
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbDept.Location      = new System.Drawing.Point(96, 24);
     this.cmbDept.Name          = "cmbDept";
     this.cmbDept.Size          = new System.Drawing.Size(120, 21);
     this.cmbDept.TabIndex      = 7;
     this.cmbDept.ValueChanged += new System.EventHandler(this.cmbDept_ValueChanged);
     //
     // Login
     //
     this.AcceptButton      = this.btnLogin;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(242)), ((System.Byte)(242)));
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(248, 309);
     this.ControlBox        = false;
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraPictureBox1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "Login";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "云南人才市场会员管理系统";
     this.Load         += new System.EventHandler(this.Login_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtPWD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #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.panel1         = new System.Windows.Forms.Panel();
     this.label6         = new System.Windows.Forms.Label();
     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.ultraLabel3    = new Infragistics.Win.Misc.UltraLabel();
     this.btnSave        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel2    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.txtSeat        = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.btnSeat        = new Infragistics.Win.Misc.UltraButton();
     this.cmbShow        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbDirection   = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnModify      = new Infragistics.Win.Misc.UltraButton();
     this.btnDelete      = new Infragistics.Win.Misc.UltraButton();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSeat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDirection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(8, 8);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(664, 432);
     this.panel1.TabIndex = 0;
     //
     // label6
     //
     this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label6.Location    = new System.Drawing.Point(504, 248);
     this.label6.Name        = "label6";
     this.label6.Size        = new System.Drawing.Size(64, 144);
     this.label6.TabIndex    = 5;
     //
     // label5
     //
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label5.Location    = new System.Drawing.Point(528, 64);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(48, 168);
     this.label5.TabIndex    = 4;
     //
     // label4
     //
     this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label4.Location    = new System.Drawing.Point(304, 120);
     this.label4.Name        = "label4";
     this.label4.Size        = new System.Drawing.Size(56, 23);
     this.label4.TabIndex    = 3;
     //
     // label3
     //
     this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label3.Location    = new System.Drawing.Point(256, 96);
     this.label3.Name        = "label3";
     this.label3.TabIndex    = 2;
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Location    = new System.Drawing.Point(192, 232);
     this.label2.Name        = "label2";
     this.label2.TabIndex    = 1;
     this.label2.Text        = "出口";
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Location    = new System.Drawing.Point(64, 40);
     this.label1.Name        = "label1";
     this.label1.TabIndex    = 0;
     this.label1.Text        = "洗手间";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(8, 72);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.TabIndex = 37;
     this.ultraLabel3.Text     = "座位朝向:";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnSave.Location    = new System.Drawing.Point(784, 280);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(104, 24);
     this.btnSave.TabIndex    = 35;
     this.btnSave.Text        = "保存展位方案";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(744, 48);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.TabIndex = 34;
     this.ultraLabel2.Text     = "招聘会:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(8, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(72, 23);
     this.ultraLabel1.TabIndex = 32;
     this.ultraLabel1.Text     = "座位:";
     //
     // txtSeat
     //
     this.txtSeat.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSeat.Location     = new System.Drawing.Point(104, 32);
     this.txtSeat.Name         = "txtSeat";
     this.txtSeat.Size         = new System.Drawing.Size(100, 21);
     this.txtSeat.TabIndex     = 31;
     //
     // btnSeat
     //
     this.btnSeat.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnSeat.Location    = new System.Drawing.Point(16, 112);
     this.btnSeat.Name        = "btnSeat";
     this.btnSeat.Size        = new System.Drawing.Size(75, 24);
     this.btnSeat.TabIndex    = 30;
     this.btnSeat.Text        = "添加座位";
     this.btnSeat.Click      += new System.EventHandler(this.btnSeat_Click);
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle     = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.DropDownStyle    = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbShow.Location         = new System.Drawing.Point(848, 48);
     this.cmbShow.MaxDropDownItems = 20;
     this.cmbShow.Name             = "cmbShow";
     this.cmbShow.Size             = new System.Drawing.Size(96, 21);
     this.cmbShow.TabIndex         = 38;
     this.cmbShow.ValueChanged    += new System.EventHandler(this.cmbShow_ValueChanged);
     //
     // cmbDirection
     //
     this.cmbDirection.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDirection.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbDirection.Location      = new System.Drawing.Point(104, 72);
     this.cmbDirection.Name          = "cmbDirection";
     this.cmbDirection.Size          = new System.Drawing.Size(104, 21);
     this.cmbDirection.TabIndex      = 39;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnModify);
     this.ultraGroupBox1.Controls.Add(this.btnDelete);
     this.ultraGroupBox1.Controls.Add(this.btnSeat);
     this.ultraGroupBox1.Controls.Add(this.txtSeat);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.cmbDirection);
     this.ultraGroupBox1.Location = new System.Drawing.Point(728, 96);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(288, 152);
     this.ultraGroupBox1.TabIndex = 40;
     this.ultraGroupBox1.Text     = "添加座位";
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(200, 112);
     this.btnModify.Name        = "btnModify";
     this.btnModify.TabIndex    = 41;
     this.btnModify.Text        = "修改座位";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // btnDelete
     //
     this.btnDelete.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnDelete.Location    = new System.Drawing.Point(112, 112);
     this.btnDelete.Name        = "btnDelete";
     this.btnDelete.TabIndex    = 40;
     this.btnDelete.Text        = "删除座位";
     this.btnDelete.Click      += new System.EventHandler(this.btnDelete_Click);
     //
     // ShowPlan3
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(996, 476);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.cmbShow);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.ultraLabel2);
     this.Controls.Add(this.panel1);
     this.Name  = "ShowPlan3";
     this.Text  = "招聘会二厅展位方案设置";
     this.Load += new System.EventHandler(this.ShowPlan3_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSeat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDirection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #13
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.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
     this.ultraGroupBox1  = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnLoadSeat     = new Infragistics.Win.Misc.UltraButton();
     this.cmbFloor        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel2     = new Infragistics.Win.Misc.UltraLabel();
     this.cmbShow         = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2  = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnHold         = new Infragistics.Win.Misc.UltraButton();
     this.btnCancelRemain = new Infragistics.Win.Misc.UltraButton();
     this.txtSeat         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel3     = new Infragistics.Win.Misc.UltraLabel();
     this.btnRemain       = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel7     = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbFloor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSeat)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnLoadSeat);
     this.ultraGroupBox1.Controls.Add(this.cmbFloor);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(736, 80);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(280, 168);
     this.ultraGroupBox1.TabIndex = 13;
     this.ultraGroupBox1.Text     = "座位";
     //
     // btnLoadSeat
     //
     this.btnLoadSeat.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnLoadSeat.Location    = new System.Drawing.Point(104, 128);
     this.btnLoadSeat.Name        = "btnLoadSeat";
     this.btnLoadSeat.Size        = new System.Drawing.Size(75, 23);
     this.btnLoadSeat.TabIndex    = 6;
     this.btnLoadSeat.Text        = "导入座位图";
     this.btnLoadSeat.Click      += new System.EventHandler(this.btnLoadSeat_Click);
     //
     // cmbFloor
     //
     this.cmbFloor.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbFloor.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     valueListItem1.DataValue    = "ValueListItem0";
     valueListItem1.DisplayText  = "2";
     valueListItem2.DataValue    = "ValueListItem1";
     valueListItem2.DisplayText  = "3";
     this.cmbFloor.Items.AddRange(new Infragistics.Win.ValueListItem[] {
         valueListItem1,
         valueListItem2
     });
     this.cmbFloor.Location = new System.Drawing.Point(128, 80);
     this.cmbFloor.Name     = "cmbFloor";
     this.cmbFloor.Size     = new System.Drawing.Size(144, 21);
     this.cmbFloor.TabIndex = 4;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 80);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 3;
     this.ultraLabel2.Text     = "展厅:";
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbShow.Location      = new System.Drawing.Point(128, 32);
     this.cmbShow.Name          = "cmbShow";
     this.cmbShow.Size          = new System.Drawing.Size(144, 21);
     this.cmbShow.TabIndex      = 1;
     this.cmbShow.ValueChanged += new System.EventHandler(this.cmbShow_ValueChanged);
     //
     // 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 = 2;
     this.ultraLabel1.Text     = "招聘会:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.btnHold);
     this.ultraGroupBox2.Controls.Add(this.btnCancelRemain);
     this.ultraGroupBox2.Controls.Add(this.txtSeat);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.btnRemain);
     this.ultraGroupBox2.Location = new System.Drawing.Point(736, 264);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(280, 136);
     this.ultraGroupBox2.TabIndex = 14;
     //
     // btnHold
     //
     this.btnHold.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnHold.Location    = new System.Drawing.Point(184, 88);
     this.btnHold.Name        = "btnHold";
     this.btnHold.Size        = new System.Drawing.Size(75, 23);
     this.btnHold.TabIndex    = 10;
     this.btnHold.Text        = "占位";
     this.btnHold.Click      += new System.EventHandler(this.btnHold_Click);
     //
     // btnCancelRemain
     //
     this.btnCancelRemain.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancelRemain.Location    = new System.Drawing.Point(104, 88);
     this.btnCancelRemain.Name        = "btnCancelRemain";
     this.btnCancelRemain.Size        = new System.Drawing.Size(75, 23);
     this.btnCancelRemain.TabIndex    = 9;
     this.btnCancelRemain.Text        = "取消预留";
     this.btnCancelRemain.Click      += new System.EventHandler(this.btnCancelRemain_Click);
     //
     // txtSeat
     //
     this.txtSeat.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSeat.Location     = new System.Drawing.Point(152, 32);
     this.txtSeat.Name         = "txtSeat";
     this.txtSeat.Size         = new System.Drawing.Size(100, 21);
     this.txtSeat.TabIndex     = 8;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 32);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 7;
     this.ultraLabel3.Text     = "选定的座位:";
     //
     // btnRemain
     //
     this.btnRemain.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnRemain.Location    = new System.Drawing.Point(24, 88);
     this.btnRemain.Name        = "btnRemain";
     this.btnRemain.Size        = new System.Drawing.Size(75, 23);
     this.btnRemain.TabIndex    = 7;
     this.btnRemain.Text        = "预留";
     this.btnRemain.Click      += new System.EventHandler(this.btnRemain_Click);
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(744, 8);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(248, 40);
     this.ultraLabel7.TabIndex = 15;
     this.ultraLabel7.Text     = "红色-预订,蓝色-签到,绿色-占位";
     //
     // ShowRemain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScroll          = true;
     this.ClientSize          = new System.Drawing.Size(1028, 677);
     this.Controls.Add(this.ultraLabel7);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Name  = "ShowRemain";
     this.Text  = Login.constApp.strCardTypeL6Name + "展位预留";
     this.Load += new System.EventHandler(this.ShowRemain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbFloor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSeat)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components      = new System.ComponentModel.Container();
     this.ultraGrid1      = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider(this.components);
     this.ultraGroupBox1  = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtReturnPrepay = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7     = new Infragistics.Win.Misc.UltraLabel();
     this.cmbShow         = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel9     = new Infragistics.Win.Misc.UltraLabel();
     this.btnCancel       = new Infragistics.Win.Misc.UltraButton();
     this.btnOK           = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6     = new Infragistics.Win.Misc.UltraLabel();
     this.txtMemberName   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel5     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2  = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbEndDate      = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate      = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbBeginDate    = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate    = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.txtQMemberName  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1     = new Infragistics.Win.Misc.UltraLabel();
     this.btnQuery        = new Infragistics.Win.Misc.UltraButton();
     this.txtQPaperNo     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2     = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtReturnPrepay)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location           = new System.Drawing.Point(16, 200);
     this.ultraGrid1.Name               = "ultraGrid1";
     this.ultraGrid1.Size               = new System.Drawing.Size(624, 304);
     this.ultraGrid1.TabIndex           = 5;
     this.ultraGrid1.Text               = "查询结果";
     this.ultraGrid1.InitializeLayout  += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     this.ultraGrid1.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGrid1_AfterSelectChange);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.txtReturnPrepay);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Controls.Add(this.btnOK);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Location = new System.Drawing.Point(656, 232);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(360, 240);
     this.ultraGroupBox1.TabIndex = 3;
     this.ultraGroupBox1.Text     = "退费";
     //
     // txtReturnPrepay
     //
     this.txtReturnPrepay.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtReturnPrepay.Location     = new System.Drawing.Point(200, 128);
     this.txtReturnPrepay.Name         = "txtReturnPrepay";
     this.txtReturnPrepay.Size         = new System.Drawing.Size(100, 21);
     this.txtReturnPrepay.TabIndex     = 21;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(88, 128);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel7.TabIndex = 20;
     this.ultraLabel7.Text     = "退费:";
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbShow.Enabled       = false;
     this.cmbShow.Location      = new System.Drawing.Point(200, 32);
     this.cmbShow.Name          = "cmbShow";
     this.cmbShow.Size          = new System.Drawing.Size(104, 21);
     this.cmbShow.TabIndex      = 19;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(88, 32);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel9.TabIndex = 18;
     this.ultraLabel9.Text     = "招聘会:";
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnCancel.Location    = new System.Drawing.Point(216, 168);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.Size        = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex    = 13;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(104, 168);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex    = 12;
     this.btnOK.Text        = "确定";
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Enabled      = false;
     this.txtPaperNo.Location     = new System.Drawing.Point(198, 96);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 11;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(86, 96);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 10;
     this.ultraLabel6.Text     = "工商注册号:";
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Enabled      = false;
     this.txtMemberName.Location     = new System.Drawing.Point(198, 64);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 9;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(86, 64);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 8;
     this.ultraLabel5.Text     = "单位名称:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.txtQMemberName);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtQPaperNo);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Location = new System.Drawing.Point(248, 40);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(496, 144);
     this.ultraGroupBox2.TabIndex = 4;
     this.ultraGroupBox2.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(336, 64);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 45;
     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(264, 64);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(72, 20);
     this.chkEndDate.TabIndex    = 47;
     this.chkEndDate.Text        = "结束时间";
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(336, 40);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 44;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(264, 40);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(80, 20);
     this.chkBeginDate.TabIndex    = 46;
     this.chkBeginDate.Text        = "开始时间";
     //
     // txtQMemberName
     //
     this.txtQMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQMemberName.Location     = new System.Drawing.Point(152, 40);
     this.txtQMemberName.Name         = "txtQMemberName";
     this.txtQMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtQMemberName.TabIndex     = 21;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(40, 40);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 20;
     this.ultraLabel1.Text     = "单位名称:";
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(216, 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);
     //
     // txtQPaperNo
     //
     this.txtQPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtQPaperNo.Location     = new System.Drawing.Point(152, 64);
     this.txtQPaperNo.Name         = "txtQPaperNo";
     this.txtQPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtQPaperNo.TabIndex     = 17;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(40, 64);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 16;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ReturnPrepay
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1028, 549);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGrid1);
     this.Name  = "ReturnPrepay";
     this.Text  = Login.constApp.strCardTypeL8Name + "退费";
     this.Load += new System.EventHandler(this.ReturnPrepay_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ultraGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtReturnPrepay)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQPaperNo)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SalesManage));
     this.ultraTree1     = new Infragistics.Win.UltraWinTree.UltraTree();
     this.imageList1     = new System.Windows.Forms.ImageList(this.components);
     this.gbOper         = new Infragistics.Win.Misc.UltraGroupBox();
     this.txtTel         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2    = new Infragistics.Win.Misc.UltraLabel();
     this.txtCredentials = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel6    = new Infragistics.Win.Misc.UltraLabel();
     this.lblDept        = new Infragistics.Win.Misc.UltraLabel();
     this.cmbDept        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnDeleteOper  = new Infragistics.Win.Misc.UltraButton();
     this.btnModifyOper  = new Infragistics.Win.Misc.UltraButton();
     this.btnAddOper     = new Infragistics.Win.Misc.UltraButton();
     this.txtOperName    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     ((System.ComponentModel.ISupportInitialize)(this.ultraTree1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbOper)).BeginInit();
     this.gbOper.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtTel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCredentials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName)).BeginInit();
     this.SuspendLayout();
     //
     // ultraTree1
     //
     this.ultraTree1.AllowDrop      = true;
     this.ultraTree1.ImageList      = this.imageList1;
     this.ultraTree1.Location       = new System.Drawing.Point(64, 32);
     this.ultraTree1.Name           = "ultraTree1";
     this.ultraTree1.Size           = new System.Drawing.Size(416, 432);
     this.ultraTree1.TabIndex       = 0;
     this.ultraTree1.ViewStyle      = Infragistics.Win.UltraWinTree.ViewStyle.Standard;
     this.ultraTree1.AfterActivate += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ultraTree1_AfterActivate);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     //
     // gbOper
     //
     this.gbOper.Controls.Add(this.txtTel);
     this.gbOper.Controls.Add(this.ultraLabel2);
     this.gbOper.Controls.Add(this.txtCredentials);
     this.gbOper.Controls.Add(this.ultraLabel6);
     this.gbOper.Controls.Add(this.lblDept);
     this.gbOper.Controls.Add(this.cmbDept);
     this.gbOper.Controls.Add(this.btnDeleteOper);
     this.gbOper.Controls.Add(this.btnModifyOper);
     this.gbOper.Controls.Add(this.btnAddOper);
     this.gbOper.Controls.Add(this.txtOperName);
     this.gbOper.Controls.Add(this.ultraLabel1);
     this.gbOper.Location = new System.Drawing.Point(528, 32);
     this.gbOper.Name     = "gbOper";
     this.gbOper.Size     = new System.Drawing.Size(376, 232);
     this.gbOper.TabIndex = 1;
     this.gbOper.Text     = "业务员";
     //
     // txtTel
     //
     this.txtTel.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtTel.Location     = new System.Drawing.Point(144, 67);
     this.txtTel.MaxLength    = 20;
     this.txtTel.Name         = "txtTel";
     this.txtTel.Size         = new System.Drawing.Size(100, 21);
     this.txtTel.TabIndex     = 31;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 67);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 30;
     this.ultraLabel2.Text     = "电话:";
     //
     // txtCredentials
     //
     this.txtCredentials.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCredentials.Location     = new System.Drawing.Point(144, 93);
     this.txtCredentials.MaxLength    = 40;
     this.txtCredentials.Name         = "txtCredentials";
     this.txtCredentials.Size         = new System.Drawing.Size(100, 21);
     this.txtCredentials.TabIndex     = 27;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(24, 93);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel6.TabIndex = 26;
     this.ultraLabel6.Text     = "证件号:";
     //
     // lblDept
     //
     this.lblDept.Location = new System.Drawing.Point(24, 117);
     this.lblDept.Name     = "lblDept";
     this.lblDept.Size     = new System.Drawing.Size(100, 23);
     this.lblDept.TabIndex = 22;
     this.lblDept.Text     = "所属部门:";
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(144, 117);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(104, 21);
     this.cmbDept.TabIndex     = 21;
     //
     // btnDeleteOper
     //
     this.btnDeleteOper.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnDeleteOper.Location    = new System.Drawing.Point(185, 168);
     this.btnDeleteOper.Name        = "btnDeleteOper";
     this.btnDeleteOper.Size        = new System.Drawing.Size(72, 23);
     this.btnDeleteOper.TabIndex    = 16;
     this.btnDeleteOper.Text        = "删除";
     this.btnDeleteOper.Click      += new System.EventHandler(this.btnDeleteOper_Click);
     //
     // btnModifyOper
     //
     this.btnModifyOper.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModifyOper.Location    = new System.Drawing.Point(107, 168);
     this.btnModifyOper.Name        = "btnModifyOper";
     this.btnModifyOper.Size        = new System.Drawing.Size(72, 23);
     this.btnModifyOper.TabIndex    = 15;
     this.btnModifyOper.Text        = "修改";
     this.btnModifyOper.Click      += new System.EventHandler(this.btnModifyOper_Click);
     //
     // btnAddOper
     //
     this.btnAddOper.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAddOper.Location    = new System.Drawing.Point(24, 168);
     this.btnAddOper.Name        = "btnAddOper";
     this.btnAddOper.Size        = new System.Drawing.Size(72, 23);
     this.btnAddOper.TabIndex    = 6;
     this.btnAddOper.Text        = "添加";
     this.btnAddOper.Click      += new System.EventHandler(this.btnAddOper_Click);
     //
     // txtOperName
     //
     this.txtOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtOperName.Location     = new System.Drawing.Point(144, 40);
     this.txtOperName.Name         = "txtOperName";
     this.txtOperName.Size         = new System.Drawing.Size(100, 21);
     this.txtOperName.TabIndex     = 1;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 40);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "业务员:";
     //
     // SalesManage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(936, 533);
     this.Controls.Add(this.gbOper);
     this.Controls.Add(this.ultraTree1);
     this.Name  = "SalesManage";
     this.Text  = "业务员管理";
     this.Load += new System.EventHandler(this.SalesManage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraTree1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbOper)).EndInit();
     this.gbOper.ResumeLayout(false);
     this.gbOper.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtTel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCredentials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #16
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.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.cmbShow        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel2    = new Infragistics.Win.Misc.UltraLabel();
     this.txtEndDate     = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
     this.btnOK          = new Infragistics.Win.Misc.UltraButton();
     this.btnCancel      = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEndDate)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnCancel);
     this.ultraGroupBox1.Controls.Add(this.btnOK);
     this.ultraGroupBox1.Controls.Add(this.txtEndDate);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(24, 40);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(448, 344);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text     = "ultraGroupBox1";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(48, 48);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "招聘会:";
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.Location     = new System.Drawing.Point(168, 48);
     this.cmbShow.Name         = "cmbShow";
     this.cmbShow.TabIndex     = 1;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(48, 104);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.TabIndex = 2;
     this.ultraLabel2.Text     = "结束时间:";
     //
     // txtEndDate
     //
     this.txtEndDate.BackColor   = System.Drawing.SystemColors.Window;
     this.txtEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.txtEndDate.DateButtons.Add(dateButton1);
     this.txtEndDate.Location          = new System.Drawing.Point(168, 104);
     this.txtEndDate.Name              = "txtEndDate";
     this.txtEndDate.NonAutoSizeHeight = 23;
     this.txtEndDate.Size              = new System.Drawing.Size(144, 21);
     this.txtEndDate.TabIndex          = 3;
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(104, 216);
     this.btnOK.Name        = "btnOK";
     this.btnOK.TabIndex    = 4;
     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(216, 216);
     this.btnCancel.Name        = "btnCancel";
     this.btnCancel.TabIndex    = 5;
     this.btnCancel.Text        = "取消";
     this.btnCancel.Click      += new System.EventHandler(this.btnCancel_Click);
     //
     // JobEnd
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(560, 453);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "JobEnd";
     this.Text  = "招聘会结束";
     this.Load += new System.EventHandler(this.JobEnd_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEndDate)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components          = new System.ComponentModel.Container();
     this.errorProvider1      = new System.Windows.Forms.ErrorProvider(this.components);
     this.ultraGroupBox2      = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbCustomerService  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbHandleMan        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbSales            = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     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.btnOK          = 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();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbHandleMan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((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();
     this.SuspendLayout();
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbCustomerService);
     this.ultraGroupBox2.Controls.Add(this.cmbHandleMan);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     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.btnOK);
     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(208, 72);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(608, 438);
     this.ultraGroupBox2.TabIndex = 22;
     //
     // cmbCustomerService
     //
     this.cmbCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbCustomerService.Location     = new System.Drawing.Point(136, 272);
     this.cmbCustomerService.Name         = "cmbCustomerService";
     this.cmbCustomerService.Size         = new System.Drawing.Size(152, 21);
     this.cmbCustomerService.TabIndex     = 65;
     //
     // 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      = 64;
     this.cmbHandleMan.ValueChanged += new System.EventHandler(this.cmbHandleMan_ValueChanged);
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(136, 242);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(152, 21);
     this.cmbSales.TabIndex     = 63;
     //
     // 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 = 58;
     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 = 54;
     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;
     this.cmbTrade.Validated   += new System.EventHandler(this.cmbTrade_Validated);
     //
     // 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 = 51;
     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;
     this.cmbEnterpriseType.Validated   += new System.EventHandler(this.cmbEnterpriseType_Validated);
     //
     // 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, 80);
     this.txtCommnets.TabIndex     = 20;
     //
     // 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, 400);
     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);
     //
     // btnOK
     //
     this.btnOK.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnOK.Location    = new System.Drawing.Point(200, 400);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex    = 31;
     this.btnOK.Text        = "确定";
     this.btnOK.Click      += new System.EventHandler(this.ultraButton1_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.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;
     this.txtPaperNo.Validated   += new System.EventHandler(this.txtPaperNo_Validated);
     //
     // 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;
     this.txtMemberName.Validated   += new System.EventHandler(this.txtMemberName_Validated);
     //
     // 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     = "单位名称:";
     //
     // FMemberCardProvide
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(920, 517);
     this.Controls.Add(this.ultraGroupBox2);
     this.Name  = "FMemberCardProvide";
     this.Text  = "非会员录入";
     this.Load += new System.EventHandler(this.MemberCardProvide_Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCustomerService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbHandleMan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((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();
     this.ResumeLayout(false);
 }
Beispiel #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components          = new System.ComponentModel.Container();
     this.ultraGroupBox1      = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel5         = new Infragistics.Win.Misc.UltraLabel();
     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.txtPaperNo          = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName       = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraButton1        = new Infragistics.Win.Misc.UltraButton();
     this.cmbOperName         = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     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.cmbBillType         = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.txtMemberCardNo     = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraGrid1          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox2      = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraButton2        = new Infragistics.Win.Misc.UltraButton();
     this.ultraPrintDocument1 = new Infragistics.Win.Printing.UltraPrintDocument(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBillType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     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.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.ultraButton1);
     this.ultraGroupBox1.Controls.Add(this.cmbOperName);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbBillType);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Location = new System.Drawing.Point(72, 32);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(704, 200);
     this.ultraGroupBox1.TabIndex = 0;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(264, 72);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.TabIndex = 23;
     this.ultraLabel5.Text     = "小票类型:";
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(32, 72);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 22;
     this.ultraLabel4.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(496, 32);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.TabIndex = 21;
     this.ultraLabel3.Text     = "工商注册号:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(264, 32);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.TabIndex = 20;
     this.ultraLabel2.Text     = "单位名称:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(32, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 19;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(592, 32);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(368, 32);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(288, 152);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.TabIndex    = 14;
     this.ultraButton1.Text        = "查询";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(136, 72);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(104, 21);
     this.cmbOperName.TabIndex     = 13;
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(376, 112);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.TabIndex   = 11;
     this.chkEndDate.Text       = "操作结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(16, 112);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.TabIndex   = 10;
     this.chkBeginDate.Text       = "操作起始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(504, 112);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.TabIndex     = 5;
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(136, 112);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.TabIndex     = 4;
     //
     // cmbBillType
     //
     this.cmbBillType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBillType.Location     = new System.Drawing.Point(368, 72);
     this.cmbBillType.Name         = "cmbBillType";
     this.cmbBillType.Size         = new System.Drawing.Size(104, 21);
     this.cmbBillType.TabIndex     = 2;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(136, 32);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 1;
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location          = new System.Drawing.Point(80, 248);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(704, 224);
     this.ultraGrid1.TabIndex          = 1;
     this.ultraGrid1.Text              = "小票列表";
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraButton2);
     this.ultraGroupBox2.Location = new System.Drawing.Point(168, 488);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(552, 72);
     this.ultraGroupBox2.TabIndex = 2;
     //
     // ultraButton2
     //
     this.ultraButton2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton2.Location    = new System.Drawing.Point(239, 25);
     this.ultraButton2.Name        = "ultraButton2";
     this.ultraButton2.TabIndex    = 15;
     this.ultraButton2.Text        = "重打";
     this.ultraButton2.Click      += new System.EventHandler(this.ultraButton2_Click);
     //
     // ultraPrintDocument1
     //
     this.ultraPrintDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.ultraPrintDocument1_PrintPage);
     //
     // BillRepeat
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(864, 621);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "BillRepeat";
     this.Text  = "小票重打";
     this.Load += new System.EventHandler(this.BillRepeat_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBillType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.cmbDept                  = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSales                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel20             = new Infragistics.Win.Misc.UltraLabel();
     this.btnExcel                 = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3              = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2              = new Infragistics.Win.Misc.UltraLabel();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbOperName              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1             = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery                 = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo               = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName            = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.cmbDept);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbSales);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel20);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Location = new System.Drawing.Point(53, 28);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(927, 150);
     this.ultraGroupBox2.TabIndex = 3;
     this.ultraGroupBox2.Text     = "查找";
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(710, 34);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(152, 21);
     this.cmbDept.TabIndex     = 67;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(608, 34);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 66;
     this.ultraLabel1.Text     = "部门:";
     //
     // cmbSales
     //
     this.cmbSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSales.Location     = new System.Drawing.Point(420, 114);
     this.cmbSales.Name         = "cmbSales";
     this.cmbSales.Size         = new System.Drawing.Size(152, 21);
     this.cmbSales.TabIndex     = 65;
     //
     // ultraLabel20
     //
     this.ultraLabel20.Location = new System.Drawing.Point(318, 114);
     this.ultraLabel20.Name     = "ultraLabel20";
     this.ultraLabel20.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel20.TabIndex = 64;
     this.ultraLabel20.Text     = "销售人员:";
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(809, 108);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(32, 112);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(32, 72);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(32, 32);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // chkEndDate
     //
     this.chkEndDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location   = new System.Drawing.Point(324, 74);
     this.chkEndDate.Name       = "chkEndDate";
     this.chkEndDate.Size       = new System.Drawing.Size(88, 20);
     this.chkEndDate.TabIndex   = 31;
     this.chkEndDate.Text       = "结束时间";
     //
     // chkBeginDate
     //
     this.chkBeginDate.GlyphStyle = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location   = new System.Drawing.Point(324, 34);
     this.chkBeginDate.Name       = "chkBeginDate";
     this.chkBeginDate.Size       = new System.Drawing.Size(88, 20);
     this.chkBeginDate.TabIndex   = 30;
     this.chkBeginDate.Text       = "开始时间";
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(420, 74);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 29;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(420, 34);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 28;
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(136, 112);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(710, 108);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(606, 108);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(136, 32);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(136, 72);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(32, 184);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(976, 392);
     this.ultraGroupBox1.TabIndex = 5;
     this.ultraGroupBox1.Click   += new System.EventHandler(this.ultraGroupBox1_Click);
     //
     // AddPrepayReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1024, 589);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Name  = "AddPrepayReport";
     this.Text  = Login.constApp.strCardTypeL6Name + "非会员充值报表";
     this.Load += new System.EventHandler(this.AddPrepayReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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);
 }
Beispiel #21
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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogIn));
     this.pictureBox1   = new System.Windows.Forms.PictureBox();
     this.editUserName  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.editPassword  = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.buttonOk      = new Infragistics.Win.Misc.UltraButton();
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.comboEmpresas = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.comboPerfiles = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.label4        = new System.Windows.Forms.Label();
     this.buttonCanel   = new Infragistics.Win.Misc.UltraButton();
     this.mzCEUsuarios  = new mz.erp.ui.controls.mzComboEditor();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.editUserName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.editPassword)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboEmpresas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboPerfiles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEUsuarios)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(16, 16);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(120, 120);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     this.pictureBox1.Click   += new System.EventHandler(this.pictureBox1_Click);
     //
     // editUserName
     //
     this.editUserName.Location = new System.Drawing.Point(214, 37);
     this.editUserName.Name     = "editUserName";
     this.editUserName.Size     = new System.Drawing.Size(256, 22);
     this.editUserName.TabIndex = 1;
     this.editUserName.TabStop  = false;
     this.editUserName.Leave   += new System.EventHandler(this.editUserName_Leave);
     //
     // editPassword
     //
     this.editPassword.Location     = new System.Drawing.Point(216, 60);
     this.editPassword.Name         = "editPassword";
     this.editPassword.PasswordChar = '*';
     this.editPassword.Size         = new System.Drawing.Size(256, 22);
     this.editPassword.TabIndex     = 2;
     //
     // buttonOk
     //
     this.buttonOk.Location = new System.Drawing.Point(264, 112);
     this.buttonOk.Name     = "buttonOk";
     this.buttonOk.Size     = new System.Drawing.Size(112, 24);
     this.buttonOk.TabIndex = 4;
     this.buttonOk.Text     = "Iniciar sesión";
     this.buttonOk.Click   += new System.EventHandler(this.buttonOk_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(144, 36);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 23);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Usuario:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(144, 60);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 6;
     this.label2.Text     = "Contraseña:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(144, 9);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(72, 23);
     this.label3.TabIndex = 7;
     this.label3.Text     = "Empresa:";
     //
     // comboEmpresas
     //
     this.comboEmpresas.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.comboEmpresas.Location      = new System.Drawing.Point(216, 9);
     this.comboEmpresas.Name          = "comboEmpresas";
     this.comboEmpresas.Size          = new System.Drawing.Size(256, 22);
     this.comboEmpresas.TabIndex      = 0;
     this.comboEmpresas.ValueChanged += new System.EventHandler(this.comboEmpresas_ValueChanged);
     //
     // comboPerfiles
     //
     this.comboPerfiles.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.comboPerfiles.Location      = new System.Drawing.Point(216, 84);
     this.comboPerfiles.Name          = "comboPerfiles";
     this.comboPerfiles.Size          = new System.Drawing.Size(256, 22);
     this.comboPerfiles.TabIndex      = 3;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(144, 84);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(72, 23);
     this.label4.TabIndex = 10;
     this.label4.Text     = "Perfil:";
     //
     // buttonCanel
     //
     this.buttonCanel.ButtonStyle  = Infragistics.Win.UIElementButtonStyle.Button;
     this.buttonCanel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCanel.Location     = new System.Drawing.Point(384, 112);
     this.buttonCanel.Name         = "buttonCanel";
     this.buttonCanel.Size         = new System.Drawing.Size(88, 24);
     this.buttonCanel.TabIndex     = 5;
     this.buttonCanel.Text         = "&Cancelar";
     this.buttonCanel.UseFlatMode  = Infragistics.Win.DefaultableBoolean.True;
     //
     // mzCEUsuarios
     //
     this.mzCEUsuarios.AutoCompleteMode     = Infragistics.Win.AutoCompleteMode.Append;
     this.mzCEUsuarios.AutoSize             = false;
     this.mzCEUsuarios.DisplayMember        = "";
     this.mzCEUsuarios.DisplayMemberCaption = "";
     this.mzCEUsuarios.DropDownStyle        = Infragistics.Win.DropDownStyle.DropDownList;
     this.mzCEUsuarios.Location             = new System.Drawing.Point(216, 37);
     this.mzCEUsuarios.MaxDropDownItems     = 7;
     this.mzCEUsuarios.MaxItemsDisplay      = 50;
     this.mzCEUsuarios.MoreItemsDisplayText = "(Ver mas elementos...)";
     this.mzCEUsuarios.Name               = "mzCEUsuarios";
     this.mzCEUsuarios.Size               = new System.Drawing.Size(256, 22);
     this.mzCEUsuarios.SorterMember       = "";
     this.mzCEUsuarios.SortStyle          = Infragistics.Win.ValueListSortStyle.Ascending;
     this.mzCEUsuarios.TabIndex           = 1;
     this.mzCEUsuarios.ValueMember        = "";
     this.mzCEUsuarios.ValueMemberCaption = "";
     this.mzCEUsuarios.ValueChanged      += new System.EventHandler(this.mzCEUsuarios_ValueChanged);
     //
     // LogIn
     //
     this.AcceptButton      = this.buttonOk;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.buttonCanel;
     this.ClientSize        = new System.Drawing.Size(482, 152);
     this.Controls.Add(this.mzCEUsuarios);
     this.Controls.Add(this.buttonCanel);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.comboPerfiles);
     this.Controls.Add(this.comboEmpresas);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.buttonOk);
     this.Controls.Add(this.editPassword);
     this.Controls.Add(this.editUserName);
     this.Controls.Add(this.pictureBox1);
     this.Font            = new System.Drawing.Font("Tahoma", 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.Name            = "LogIn";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Iniciar sesión";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.editUserName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.editPassword)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboEmpresas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboPerfiles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mzCEUsuarios)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     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);
 }
Beispiel #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel10             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMemberRight           = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel9             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSynch                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel8             = new Infragistics.Win.Misc.UltraLabel();
     this.txtCustomerService      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7             = new Infragistics.Win.Misc.UltraLabel();
     this.txtSales                = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbTrade                = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel3             = new Infragistics.Win.Misc.UltraLabel();
     this.cmbMember               = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel1             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel5             = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel6             = new Infragistics.Win.Misc.UltraLabel();
     this.txtPaperNo              = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName           = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.btnExcel                = new Infragistics.Win.Misc.UltraButton();
     this.cmbEndDate              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnPrint                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel2             = new Infragistics.Win.Misc.UltraLabel();
     this.cmdBeginDate            = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbShow                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnQuery                = new Infragistics.Win.Misc.UltraButton();
     this.chkBeginDate            = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.saveFileDialog1         = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2          = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnFilter               = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(48, 64);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(168, 72);
     this.ultraGrid1.TabIndex          = 16;
     this.ultraGrid1.Text              = "展位调整报表";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnFilter);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel10);
     this.ultraGroupBox1.Controls.Add(this.cmbMemberRight);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox1.Controls.Add(this.cmbSynch);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel8);
     this.ultraGroupBox1.Controls.Add(this.txtCustomerService);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox1.Controls.Add(this.txtSales);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox1.Controls.Add(this.cmbTrade);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.cmbMember);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox1.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox1.Controls.Add(this.txtMemberName);
     this.ultraGroupBox1.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Location = new System.Drawing.Point(112, 16);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(800, 200);
     this.ultraGroupBox1.TabIndex = 17;
     //
     // ultraLabel10
     //
     this.ultraLabel10.Location = new System.Drawing.Point(120, 152);
     this.ultraLabel10.Name     = "ultraLabel10";
     this.ultraLabel10.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel10.TabIndex = 47;
     this.ultraLabel10.Text     = "会员资格:";
     //
     // cmbMemberRight
     //
     this.cmbMemberRight.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMemberRight.Location     = new System.Drawing.Point(224, 152);
     this.cmbMemberRight.Name         = "cmbMemberRight";
     this.cmbMemberRight.TabIndex     = 46;
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(104, 120);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel9.TabIndex = 40;
     this.ultraLabel9.Text     = "同步标志:";
     //
     // cmbSynch
     //
     this.cmbSynch.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSynch.Location     = new System.Drawing.Point(224, 120);
     this.cmbSynch.Name         = "cmbSynch";
     this.cmbSynch.TabIndex     = 39;
     //
     // ultraLabel8
     //
     this.ultraLabel8.Location = new System.Drawing.Point(416, 168);
     this.ultraLabel8.Name     = "ultraLabel8";
     this.ultraLabel8.TabIndex = 38;
     this.ultraLabel8.Text     = "客服姓名:";
     //
     // txtCustomerService
     //
     this.txtCustomerService.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtCustomerService.Location     = new System.Drawing.Point(520, 168);
     this.txtCustomerService.Name         = "txtCustomerService";
     this.txtCustomerService.Size         = new System.Drawing.Size(100, 21);
     this.txtCustomerService.TabIndex     = 37;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(416, 144);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.TabIndex = 36;
     this.ultraLabel7.Text     = "销售人员:";
     //
     // txtSales
     //
     this.txtSales.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSales.Location     = new System.Drawing.Point(520, 144);
     this.txtSales.Name         = "txtSales";
     this.txtSales.Size         = new System.Drawing.Size(100, 21);
     this.txtSales.TabIndex     = 35;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(416, 120);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 32;
     this.ultraLabel4.Text     = "行业:";
     //
     // cmbTrade
     //
     this.cmbTrade.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbTrade.Location     = new System.Drawing.Point(520, 120);
     this.cmbTrade.Name         = "cmbTrade";
     this.cmbTrade.Size         = new System.Drawing.Size(104, 21);
     this.cmbTrade.TabIndex     = 31;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(416, 24);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel3.TabIndex = 30;
     this.ultraLabel3.Text     = "是否会员:";
     //
     // cmbMember
     //
     this.cmbMember.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbMember.Location     = new System.Drawing.Point(520, 24);
     this.cmbMember.Name         = "cmbMember";
     this.cmbMember.Size         = new System.Drawing.Size(104, 21);
     this.cmbMember.TabIndex     = 29;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(416, 96);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 26;
     this.ultraLabel1.Text     = "工商注册号:";
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(416, 72);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.TabIndex = 25;
     this.ultraLabel5.Text     = "单位名称:";
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(416, 48);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.TabIndex = 24;
     this.ultraLabel6.Text     = "会员卡号:";
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(520, 96);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(100, 21);
     this.txtPaperNo.TabIndex     = 22;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(520, 72);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberName.TabIndex     = 21;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(520, 48);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(100, 21);
     this.txtMemberCardNo.TabIndex     = 20;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(672, 128);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.TabIndex    = 12;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(224, 88);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.TabIndex     = 7;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(104, 88);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.TabIndex    = 11;
     this.chkEndDate.Text        = "结束时间";
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(672, 96);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.TabIndex    = 3;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(104, 24);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel2.TabIndex = 6;
     this.ultraLabel2.Text     = "招聘会:";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(224, 56);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.TabIndex     = 5;
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.Location     = new System.Drawing.Point(224, 24);
     this.cmbShow.Name         = "cmbShow";
     this.cmbShow.TabIndex     = 4;
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(672, 64);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.TabIndex    = 0;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(104, 56);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.TabIndex    = 10;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 224);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(976, 384);
     this.ultraGroupBox2.TabIndex = 18;
     //
     // btnFilter
     //
     this.btnFilter.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnFilter.Location    = new System.Drawing.Point(368, 24);
     this.btnFilter.Name        = "btnFilter";
     this.btnFilter.Size        = new System.Drawing.Size(48, 23);
     this.btnFilter.TabIndex    = 50;
     this.btnFilter.Text        = "检索";
     this.btnFilter.Click      += new System.EventHandler(this.btnFilter_Click);
     //
     // NoSignInReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1016, 621);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "NoSignInReport";
     this.Text  = "展位调整报表";
     this.Load += new System.EventHandler(this.NoSignInReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #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(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);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.saveFileDialog1          = new System.Windows.Forms.SaveFileDialog();
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraGrid1               = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGridExcelExporter1  = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2           = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraLabel4              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbOperFlag              = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbEndDate               = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate               = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.cmbBeginDate             = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkBeginDate             = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.ultraLabel9              = new Infragistics.Win.Misc.UltraLabel();
     this.cmbSynch        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnExcel        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel5     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel3     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2     = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel1     = new Infragistics.Win.Misc.UltraLabel();
     this.cmbOperName     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraButton1    = new Infragistics.Win.Misc.UltraButton();
     this.btnQuery        = new Infragistics.Win.Misc.UltraButton();
     this.txtPaperNo      = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberName   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.txtMemberCardNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperFlag)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 205);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(932, 387);
     this.ultraGroupBox1.TabIndex = 9;
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.DisplayLayout.ViewStyle   = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Location          = new System.Drawing.Point(152, 56);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(192, 80);
     this.ultraGrid1.TabIndex          = 4;
     this.ultraGrid1.Text              = "查询结果";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Controls.Add(this.cmbOperFlag);
     this.ultraGroupBox2.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox2.Controls.Add(this.chkEndDate);
     this.ultraGroupBox2.Controls.Add(this.cmbBeginDate);
     this.ultraGroupBox2.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel9);
     this.ultraGroupBox2.Controls.Add(this.cmbSynch);
     this.ultraGroupBox2.Controls.Add(this.btnExcel);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox2.Controls.Add(this.cmbOperName);
     this.ultraGroupBox2.Controls.Add(this.ultraButton1);
     this.ultraGroupBox2.Controls.Add(this.btnQuery);
     this.ultraGroupBox2.Controls.Add(this.txtPaperNo);
     this.ultraGroupBox2.Controls.Add(this.txtMemberName);
     this.ultraGroupBox2.Controls.Add(this.txtMemberCardNo);
     this.ultraGroupBox2.Location = new System.Drawing.Point(104, 32);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(720, 168);
     this.ultraGroupBox2.TabIndex = 8;
     this.ultraGroupBox2.Text     = "查找";
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(24, 136);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel4.TabIndex = 45;
     this.ultraLabel4.Text     = "操作类型:";
     //
     // cmbOperFlag
     //
     this.cmbOperFlag.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperFlag.Location     = new System.Drawing.Point(128, 136);
     this.cmbOperFlag.Name         = "cmbOperFlag";
     this.cmbOperFlag.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperFlag.TabIndex     = 44;
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(392, 86);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbEndDate.TabIndex     = 41;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(320, 86);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.Size        = new System.Drawing.Size(72, 20);
     this.chkEndDate.TabIndex    = 43;
     this.chkEndDate.Text        = "结束时间";
     //
     // cmbBeginDate
     //
     this.cmbBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbBeginDate.Location     = new System.Drawing.Point(392, 62);
     this.cmbBeginDate.MaskInput    = "{date} {time}";
     this.cmbBeginDate.Name         = "cmbBeginDate";
     this.cmbBeginDate.Size         = new System.Drawing.Size(144, 21);
     this.cmbBeginDate.TabIndex     = 40;
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(320, 62);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.Size        = new System.Drawing.Size(80, 20);
     this.chkBeginDate.TabIndex    = 42;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraLabel9
     //
     this.ultraLabel9.Location = new System.Drawing.Point(288, 136);
     this.ultraLabel9.Name     = "ultraLabel9";
     this.ultraLabel9.Size     = new System.Drawing.Size(96, 23);
     this.ultraLabel9.TabIndex = 39;
     this.ultraLabel9.Text     = "同步标志:";
     //
     // cmbSynch
     //
     this.cmbSynch.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbSynch.Location     = new System.Drawing.Point(392, 136);
     this.cmbSynch.Name         = "cmbSynch";
     this.cmbSynch.Size         = new System.Drawing.Size(144, 21);
     this.cmbSynch.TabIndex     = 38;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(592, 104);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnExcel.TabIndex    = 37;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(288, 32);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.Size     = new System.Drawing.Size(64, 23);
     this.ultraLabel5.TabIndex = 36;
     this.ultraLabel5.Text     = "操作员:";
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 104);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel3.TabIndex = 34;
     this.ultraLabel3.Text     = "单位名称:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 64);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel2.TabIndex = 33;
     this.ultraLabel2.Text     = "工商注册号:";
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 32);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(100, 23);
     this.ultraLabel1.TabIndex = 32;
     this.ultraLabel1.Text     = "会员卡号:";
     //
     // cmbOperName
     //
     this.cmbOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbOperName.Location     = new System.Drawing.Point(392, 32);
     this.cmbOperName.Name         = "cmbOperName";
     this.cmbOperName.Size         = new System.Drawing.Size(144, 21);
     this.cmbOperName.TabIndex     = 27;
     //
     // ultraButton1
     //
     this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton1.Location    = new System.Drawing.Point(592, 64);
     this.ultraButton1.Name        = "ultraButton1";
     this.ultraButton1.Size        = new System.Drawing.Size(75, 23);
     this.ultraButton1.TabIndex    = 19;
     this.ultraButton1.Text        = "打印";
     this.ultraButton1.Click      += new System.EventHandler(this.ultraButton1_Click);
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(592, 24);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.Size        = new System.Drawing.Size(75, 23);
     this.btnQuery.TabIndex    = 18;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // txtPaperNo
     //
     this.txtPaperNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPaperNo.Location     = new System.Drawing.Point(128, 64);
     this.txtPaperNo.Name         = "txtPaperNo";
     this.txtPaperNo.Size         = new System.Drawing.Size(136, 21);
     this.txtPaperNo.TabIndex     = 17;
     //
     // txtMemberName
     //
     this.txtMemberName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberName.Location     = new System.Drawing.Point(128, 104);
     this.txtMemberName.Name         = "txtMemberName";
     this.txtMemberName.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberName.TabIndex     = 15;
     //
     // txtMemberCardNo
     //
     this.txtMemberCardNo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtMemberCardNo.Location     = new System.Drawing.Point(128, 32);
     this.txtMemberCardNo.Name         = "txtMemberCardNo";
     this.txtMemberCardNo.Size         = new System.Drawing.Size(136, 21);
     this.txtMemberCardNo.TabIndex     = 13;
     //
     // OperLogReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(1000, 605);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.ultraGroupBox2);
     this.Name  = "OperLogReport";
     this.Text  = Login.constApp.strCardTypeL6Name + "操作日志报表";
     this.Load += new System.EventHandler(this.OperLogReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperFlag)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSynch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaperNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberCardNo)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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);
 }
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     Infragistics.Win.ValueListItem ValueListItem1 = new Infragistics.Win.ValueListItem();
     Infragistics.Win.ValueListItem ValueListItem2 = new Infragistics.Win.ValueListItem();
     this.pnlBottom       = new System.Windows.Forms.Panel();
     base.Load           += new System.EventHandler(frmFMBSetupDefaultLayout_Load);
     this.btnClear        = new System.Windows.Forms.Button();
     this.btnClear.Click += new System.EventHandler(btnClear_Click);
     this.btnOK           = new System.Windows.Forms.Button();
     this.btnOK.Click    += new System.EventHandler(btnOK_Click);
     this.btnClose        = new System.Windows.Forms.Button();
     this.btnClose.Click += new System.EventHandler(btnClose_Click);
     this.pnlFill         = new System.Windows.Forms.Panel();
     this.grpDefault      = new System.Windows.Forms.GroupBox();
     this.cboCategory     = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cboCategory.SelectionChanged += new System.EventHandler(cboCategory_SelectionChanged);
     this.lblCategory             = new System.Windows.Forms.Label();
     this.cdvLayout               = new Miracom.UI.Controls.MCCodeView.MCCodeView();
     this.cdvLayout.ButtonPress  += new System.EventHandler(cdvLayout_ButtonPress);
     this.lblLayout               = new System.Windows.Forms.Label();
     this.cdvFactory              = new Miracom.UI.Controls.MCCodeView.MCCodeView();
     this.cdvFactory.ButtonPress += new System.EventHandler(cdvFactory_ButtonPress);
     this.lblFactory              = new System.Windows.Forms.Label();
     this.pnlBottom.SuspendLayout();
     this.pnlFill.SuspendLayout();
     this.grpDefault.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.cboCategory).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cdvLayout).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cdvFactory).BeginInit();
     this.SuspendLayout();
     //
     //pnlBottom
     //
     this.pnlBottom.Controls.Add(this.btnClear);
     this.pnlBottom.Controls.Add(this.btnOK);
     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, 108);
     this.pnlBottom.Name     = "pnlBottom";
     this.pnlBottom.Size     = new System.Drawing.Size(326, 40);
     this.pnlBottom.TabIndex = 3;
     //
     //btnClear
     //
     this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnClear.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.Location  = new System.Drawing.Point(168, 9);
     this.btnClear.Name      = "btnClear";
     this.btnClear.Size      = new System.Drawing.Size(74, 23);
     this.btnClear.TabIndex  = 2;
     this.btnClear.Text      = "Clear";
     //
     //btnOK
     //
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOK.Location     = new System.Drawing.Point(88, 9);
     this.btnOK.Name         = "btnOK";
     this.btnOK.Size         = new System.Drawing.Size(74, 23);
     this.btnOK.TabIndex     = 0;
     this.btnOK.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(244, 9);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(74, 23);
     this.btnClose.TabIndex     = 1;
     this.btnClose.Text         = "Close";
     //
     //pnlFill
     //
     this.pnlFill.Controls.Add(this.grpDefault);
     this.pnlFill.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.pnlFill.DockPadding.Left  = 3;
     this.pnlFill.DockPadding.Right = 3;
     this.pnlFill.Location          = new System.Drawing.Point(0, 0);
     this.pnlFill.Name              = "pnlFill";
     this.pnlFill.Size              = new System.Drawing.Size(326, 108);
     this.pnlFill.TabIndex          = 4;
     //
     //grpDefault
     //
     this.grpDefault.Controls.Add(this.cboCategory);
     this.grpDefault.Controls.Add(this.lblCategory);
     this.grpDefault.Controls.Add(this.cdvLayout);
     this.grpDefault.Controls.Add(this.lblLayout);
     this.grpDefault.Controls.Add(this.cdvFactory);
     this.grpDefault.Controls.Add(this.lblFactory);
     this.grpDefault.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.grpDefault.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.grpDefault.Location  = new System.Drawing.Point(3, 0);
     this.grpDefault.Name      = "grpDefault";
     this.grpDefault.Size      = new System.Drawing.Size(320, 108);
     this.grpDefault.TabIndex  = 1;
     this.grpDefault.TabStop   = false;
     //
     //cboCategory
     //
     this.cboCategory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cboCategory.UseFlatMode   = Infragistics.Win.DefaultableBoolean.True;
     ValueListItem1.DataValue       = "ValueListItem0";
     ValueListItem1.DisplayText     = "Layout";
     ValueListItem2.DataValue       = "ValueListItem1";
     ValueListItem2.DisplayText     = "User Group";
     this.cboCategory.Items.Add(ValueListItem1);
     this.cboCategory.Items.Add(ValueListItem2);
     this.cboCategory.Location = new System.Drawing.Point(120, 16);
     this.cboCategory.Name     = "cboCategory";
     this.cboCategory.Size     = new System.Drawing.Size(120, 19);
     this.cboCategory.TabIndex = 62;
     //
     //lblCategory
     //
     this.lblCategory.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblCategory.Location  = new System.Drawing.Point(12, 18);
     this.lblCategory.Name      = "lblCategory";
     this.lblCategory.Size      = new System.Drawing.Size(75, 14);
     this.lblCategory.TabIndex  = 61;
     this.lblCategory.Text      = "Category";
     //
     //cdvLayout
     //
     this.cdvLayout.BtnFlatStyle        = System.Windows.Forms.FlatStyle.System;
     this.cdvLayout.BtnToolTipText      = "";
     this.cdvLayout.DescText            = "";
     this.cdvLayout.DisplaySubItemIndex = -1;
     this.cdvLayout.DisplayText         = "";
     this.cdvLayout.Focusing            = null;
     this.cdvLayout.Font                       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cdvLayout.Index                      = 0;
     this.cdvLayout.IsViewBtnImage             = false;
     this.cdvLayout.Location                   = new System.Drawing.Point(120, 71);
     this.cdvLayout.MaxLength                  = 10;
     this.cdvLayout.MCViewStyle.BorderColor    = System.Drawing.SystemColors.Control;
     this.cdvLayout.MCViewStyle.BorderHotColor = System.Drawing.SystemColors.Control;
     this.cdvLayout.Name                       = "cdvLayout";
     this.cdvLayout.ReadOnly                   = false;
     this.cdvLayout.SearchSubItemIndex         = 0;
     this.cdvLayout.SelectedDescIndex          = -1;
     this.cdvLayout.SelectedSubItemIndex       = -1;
     this.cdvLayout.SelectionStart             = 0;
     this.cdvLayout.Size                       = new System.Drawing.Size(168, 20);
     this.cdvLayout.SmallImageList             = null;
     this.cdvLayout.StyleBorder                = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cdvLayout.TabIndex                   = 59;
     this.cdvLayout.TextBoxToolTipText         = "";
     this.cdvLayout.TextBoxWidth               = 168;
     this.cdvLayout.VisibleButton              = true;
     this.cdvLayout.VisibleColumnHeader        = false;
     this.cdvLayout.VisibleDescription         = false;
     //
     //lblLayout
     //
     this.lblLayout.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblLayout.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLayout.Location  = new System.Drawing.Point(12, 74);
     this.lblLayout.Name      = "lblLayout";
     this.lblLayout.Size      = new System.Drawing.Size(100, 14);
     this.lblLayout.TabIndex  = 60;
     this.lblLayout.Text      = "Layout";
     //
     //cdvFactory
     //
     this.cdvFactory.BtnFlatStyle        = System.Windows.Forms.FlatStyle.System;
     this.cdvFactory.BtnToolTipText      = "";
     this.cdvFactory.DescText            = "";
     this.cdvFactory.DisplaySubItemIndex = -1;
     this.cdvFactory.DisplayText         = "";
     this.cdvFactory.Focusing            = null;
     this.cdvFactory.Font                       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cdvFactory.Index                      = 0;
     this.cdvFactory.IsViewBtnImage             = false;
     this.cdvFactory.Location                   = new System.Drawing.Point(120, 43);
     this.cdvFactory.MaxLength                  = 10;
     this.cdvFactory.MCViewStyle.BorderColor    = System.Drawing.SystemColors.Control;
     this.cdvFactory.MCViewStyle.BorderHotColor = System.Drawing.SystemColors.Control;
     this.cdvFactory.Name                       = "cdvFactory";
     this.cdvFactory.ReadOnly                   = false;
     this.cdvFactory.SearchSubItemIndex         = 0;
     this.cdvFactory.SelectedDescIndex          = -1;
     this.cdvFactory.SelectedSubItemIndex       = -1;
     this.cdvFactory.SelectionStart             = 0;
     this.cdvFactory.Size                       = new System.Drawing.Size(168, 20);
     this.cdvFactory.SmallImageList             = null;
     this.cdvFactory.StyleBorder                = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cdvFactory.TabIndex                   = 57;
     this.cdvFactory.TextBoxToolTipText         = "";
     this.cdvFactory.TextBoxWidth               = 168;
     this.cdvFactory.VisibleButton              = true;
     this.cdvFactory.VisibleColumnHeader        = false;
     this.cdvFactory.VisibleDescription         = false;
     //
     //lblFactory
     //
     this.lblFactory.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblFactory.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFactory.Location  = new System.Drawing.Point(12, 46);
     this.lblFactory.Name      = "lblFactory";
     this.lblFactory.Size      = new System.Drawing.Size(100, 14);
     this.lblFactory.TabIndex  = 58;
     this.lblFactory.Text      = "Factory";
     //
     //frmFMBSetupDefaultLayout
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnClose;
     this.ClientSize        = new System.Drawing.Size(326, 148);
     this.Controls.Add(this.pnlFill);
     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.Name            = "frmFMBSetupDefaultLayout";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Default Layout Setup";
     this.pnlBottom.ResumeLayout(false);
     this.pnlFill.ResumeLayout(false);
     this.grpDefault.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.cboCategory).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cdvLayout).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cdvFactory).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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);
 }
Beispiel #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnSeat        = new Infragistics.Win.Misc.UltraButton();
     this.label13        = new System.Windows.Forms.Label();
     this.label14        = new System.Windows.Forms.Label();
     this.label15        = new System.Windows.Forms.Label();
     this.label16        = new System.Windows.Forms.Label();
     this.label17        = new System.Windows.Forms.Label();
     this.dlblPrint      = new System.Windows.Forms.Label();
     this.dlblStair      = new System.Windows.Forms.Label();
     this.dlblEntry      = new System.Windows.Forms.Label();
     this.dlblToilet     = new System.Windows.Forms.Label();
     this.panel1         = new System.Windows.Forms.Panel();
     this.dlblSpace2     = new System.Windows.Forms.Label();
     this.dlblSpace1     = new System.Windows.Forms.Label();
     this.txtSeat        = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraLabel2    = new Infragistics.Win.Misc.UltraLabel();
     this.btnSave        = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel3    = new Infragistics.Win.Misc.UltraLabel();
     this.cmbShow        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.cmbDirection   = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnModify      = new Infragistics.Win.Misc.UltraButton();
     this.btnDelete      = new Infragistics.Win.Misc.UltraButton();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSeat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDirection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnSeat
     //
     this.btnSeat.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnSeat.Location    = new System.Drawing.Point(16, 104);
     this.btnSeat.Name        = "btnSeat";
     this.btnSeat.TabIndex    = 0;
     this.btnSeat.Text        = "添加座位";
     this.btnSeat.Click      += new System.EventHandler(this.btnSeat_Click);
     //
     // label13
     //
     this.label13.BackColor = System.Drawing.Color.Black;
     this.label13.Location  = new System.Drawing.Point(200, 144);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(40, 10);
     this.label13.TabIndex  = 13;
     //
     // label14
     //
     this.label14.BackColor = System.Drawing.Color.Black;
     this.label14.Location  = new System.Drawing.Point(176, 248);
     this.label14.Name      = "label14";
     this.label14.Size      = new System.Drawing.Size(40, 10);
     this.label14.TabIndex  = 14;
     //
     // label15
     //
     this.label15.BackColor = System.Drawing.Color.Black;
     this.label15.Location  = new System.Drawing.Point(168, 216);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(40, 10);
     this.label15.TabIndex  = 15;
     //
     // label16
     //
     this.label16.BackColor = System.Drawing.Color.Black;
     this.label16.Location  = new System.Drawing.Point(184, 272);
     this.label16.Name      = "label16";
     this.label16.Size      = new System.Drawing.Size(40, 10);
     this.label16.TabIndex  = 16;
     //
     // label17
     //
     this.label17.BackColor = System.Drawing.Color.Black;
     this.label17.Location  = new System.Drawing.Point(192, 184);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(40, 10);
     this.label17.TabIndex  = 17;
     //
     // dlblPrint
     //
     this.dlblPrint.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dlblPrint.Location    = new System.Drawing.Point(224, 328);
     this.dlblPrint.Name        = "dlblPrint";
     this.dlblPrint.Size        = new System.Drawing.Size(112, 96);
     this.dlblPrint.TabIndex    = 18;
     this.dlblPrint.Text        = "文印室|电子显示屏";
     this.dlblPrint.TextAlign   = System.Drawing.ContentAlignment.BottomCenter;
     //
     // dlblStair
     //
     this.dlblStair.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dlblStair.Location    = new System.Drawing.Point(432, 432);
     this.dlblStair.Name        = "dlblStair";
     this.dlblStair.Size        = new System.Drawing.Size(120, 80);
     this.dlblStair.TabIndex    = 19;
     this.dlblStair.Text        = "信息处理室|楼梯间";
     //
     // dlblEntry
     //
     this.dlblEntry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dlblEntry.Location    = new System.Drawing.Point(480, 320);
     this.dlblEntry.Name        = "dlblEntry";
     this.dlblEntry.Size        = new System.Drawing.Size(80, 80);
     this.dlblEntry.TabIndex    = 20;
     this.dlblEntry.Text        = "入口|服务台";
     //
     // dlblToilet
     //
     this.dlblToilet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dlblToilet.Location    = new System.Drawing.Point(40, 32);
     this.dlblToilet.Name        = "dlblToilet";
     this.dlblToilet.Size        = new System.Drawing.Size(160, 64);
     this.dlblToilet.TabIndex    = 21;
     this.dlblToilet.Text        = "卫生间";
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.dlblSpace2);
     this.panel1.Controls.Add(this.dlblSpace1);
     this.panel1.Controls.Add(this.dlblToilet);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label17);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label14);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Controls.Add(this.dlblEntry);
     this.panel1.Controls.Add(this.dlblStair);
     this.panel1.Controls.Add(this.dlblPrint);
     this.panel1.Location = new System.Drawing.Point(48, 16);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(632, 568);
     this.panel1.TabIndex = 22;
     //
     // dlblSpace2
     //
     this.dlblSpace2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dlblSpace2.Location    = new System.Drawing.Point(40, 448);
     this.dlblSpace2.Name        = "dlblSpace2";
     this.dlblSpace2.Size        = new System.Drawing.Size(16, 80);
     this.dlblSpace2.TabIndex    = 23;
     //
     // dlblSpace1
     //
     this.dlblSpace1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dlblSpace1.Location    = new System.Drawing.Point(448, 32);
     this.dlblSpace1.Name        = "dlblSpace1";
     this.dlblSpace1.Size        = new System.Drawing.Size(40, 80);
     this.dlblSpace1.TabIndex    = 22;
     //
     // txtSeat
     //
     this.txtSeat.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtSeat.Location     = new System.Drawing.Point(120, 24);
     this.txtSeat.Name         = "txtSeat";
     this.txtSeat.Size         = new System.Drawing.Size(100, 21);
     this.txtSeat.TabIndex     = 23;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 24);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.Size     = new System.Drawing.Size(72, 23);
     this.ultraLabel1.TabIndex = 24;
     this.ultraLabel1.Text     = "座位:";
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(736, 48);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.TabIndex = 26;
     this.ultraLabel2.Text     = "招聘会:";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnSave.Location    = new System.Drawing.Point(792, 256);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(104, 23);
     this.btnSave.TabIndex    = 27;
     this.btnSave.Text        = "保存展位方案";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(16, 64);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.TabIndex = 29;
     this.ultraLabel3.Text     = "座位朝向:";
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle     = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.DropDownStyle    = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbShow.Location         = new System.Drawing.Point(848, 48);
     this.cmbShow.MaxDropDownItems = 20;
     this.cmbShow.Name             = "cmbShow";
     this.cmbShow.Size             = new System.Drawing.Size(120, 21);
     this.cmbShow.TabIndex         = 30;
     this.cmbShow.ValueChanged    += new System.EventHandler(this.cmbShow_ValueChanged);
     //
     // cmbDirection
     //
     this.cmbDirection.DisplayStyle  = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDirection.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
     this.cmbDirection.Location      = new System.Drawing.Point(120, 56);
     this.cmbDirection.Name          = "cmbDirection";
     this.cmbDirection.Size          = new System.Drawing.Size(104, 21);
     this.cmbDirection.TabIndex      = 31;
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnModify);
     this.ultraGroupBox1.Controls.Add(this.btnDelete);
     this.ultraGroupBox1.Controls.Add(this.btnSeat);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtSeat);
     this.ultraGroupBox1.Controls.Add(this.cmbDirection);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(728, 80);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(272, 144);
     this.ultraGroupBox1.TabIndex = 32;
     this.ultraGroupBox1.Text     = "添加座位";
     //
     // btnModify
     //
     this.btnModify.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnModify.Location    = new System.Drawing.Point(192, 104);
     this.btnModify.Name        = "btnModify";
     this.btnModify.TabIndex    = 33;
     this.btnModify.Text        = "修改座位";
     this.btnModify.Click      += new System.EventHandler(this.btnModify_Click);
     //
     // btnDelete
     //
     this.btnDelete.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnDelete.Location    = new System.Drawing.Point(104, 104);
     this.btnDelete.Name        = "btnDelete";
     this.btnDelete.TabIndex    = 32;
     this.btnDelete.Text        = "删除座位";
     this.btnDelete.Click      += new System.EventHandler(this.btnDelete_Click);
     //
     // ShowPlan2
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(1008, 753);
     this.Controls.Add(this.ultraGroupBox1);
     this.Controls.Add(this.cmbShow);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.ultraLabel2);
     this.Controls.Add(this.panel1);
     this.Name   = "ShowPlan2";
     this.Text   = "招聘会一厅展位方案设置";
     this.Load  += new System.EventHandler(this.ShowPlan2Floor_Load);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.ShowPlan2_Paint);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSeat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDirection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.ultraPrintPreviewDialog1 = new Infragistics.Win.Printing.UltraPrintPreviewDialog(this.components);
     this.ultraGridPrintDocument1  = new Infragistics.Win.UltraWinGrid.UltraGridPrintDocument(this.components);
     this.ultraGroupBox1           = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnExcel                = new Infragistics.Win.Misc.UltraButton();
     this.cmbEndDate              = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.chkEndDate              = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.btnPrint                = new Infragistics.Win.Misc.UltraButton();
     this.ultraLabel2             = new Infragistics.Win.Misc.UltraLabel();
     this.cmdBeginDate            = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
     this.cmbShow                 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.btnQuery                = new Infragistics.Win.Misc.UltraButton();
     this.chkBeginDate            = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
     this.saveFileDialog1         = new System.Windows.Forms.SaveFileDialog();
     this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
     this.ultraGroupBox2          = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnFilter               = new Infragistics.Win.Misc.UltraButton();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
     this.ultraGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // ultraGrid1
     //
     this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
     this.ultraGrid1.Location          = new System.Drawing.Point(48, 48);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(176, 88);
     this.ultraGrid1.TabIndex          = 16;
     this.ultraGrid1.Text              = "预留列表";
     this.ultraGrid1.InitializePrint  += new Infragistics.Win.UltraWinGrid.InitializePrintEventHandler(this.ultraGrid1_InitializePrint);
     this.ultraGrid1.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.ultraGrid1_InitializeLayout);
     //
     // ultraPrintPreviewDialog1
     //
     this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnFilter);
     this.ultraGroupBox1.Controls.Add(this.btnExcel);
     this.ultraGroupBox1.Controls.Add(this.cmbEndDate);
     this.ultraGroupBox1.Controls.Add(this.chkEndDate);
     this.ultraGroupBox1.Controls.Add(this.btnPrint);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.cmdBeginDate);
     this.ultraGroupBox1.Controls.Add(this.cmbShow);
     this.ultraGroupBox1.Controls.Add(this.btnQuery);
     this.ultraGroupBox1.Controls.Add(this.chkBeginDate);
     this.ultraGroupBox1.Location = new System.Drawing.Point(120, 24);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(796, 128);
     this.ultraGroupBox1.TabIndex = 17;
     //
     // btnExcel
     //
     this.btnExcel.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnExcel.Location    = new System.Drawing.Point(488, 88);
     this.btnExcel.Name        = "btnExcel";
     this.btnExcel.TabIndex    = 12;
     this.btnExcel.Text        = "导出EXCEL";
     this.btnExcel.Click      += new System.EventHandler(this.btnExcel_Click);
     //
     // cmbEndDate
     //
     this.cmbEndDate.DateTime     = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     this.cmbEndDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbEndDate.Location     = new System.Drawing.Point(280, 80);
     this.cmbEndDate.MaskInput    = "{date} {time}";
     this.cmbEndDate.Name         = "cmbEndDate";
     this.cmbEndDate.TabIndex     = 7;
     this.cmbEndDate.Value        = new System.DateTime(2008, 3, 10, 23, 59, 59, 0);
     //
     // chkEndDate
     //
     this.chkEndDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkEndDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkEndDate.Location    = new System.Drawing.Point(160, 80);
     this.chkEndDate.Name        = "chkEndDate";
     this.chkEndDate.TabIndex    = 11;
     this.chkEndDate.Text        = "结束时间";
     //
     // btnPrint
     //
     this.btnPrint.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnPrint.Location    = new System.Drawing.Point(488, 56);
     this.btnPrint.Name        = "btnPrint";
     this.btnPrint.TabIndex    = 3;
     this.btnPrint.Text        = "打印";
     this.btnPrint.Click      += new System.EventHandler(this.btnPrint_Click);
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(160, 32);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.Size     = new System.Drawing.Size(112, 23);
     this.ultraLabel2.TabIndex = 6;
     this.ultraLabel2.Text     = "招聘会:";
     //
     // cmdBeginDate
     //
     this.cmdBeginDate.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmdBeginDate.Location     = new System.Drawing.Point(280, 56);
     this.cmdBeginDate.MaskInput    = "{date} {time}";
     this.cmdBeginDate.Name         = "cmdBeginDate";
     this.cmdBeginDate.TabIndex     = 5;
     //
     // cmbShow
     //
     this.cmbShow.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbShow.Location     = new System.Drawing.Point(280, 32);
     this.cmbShow.Name         = "cmbShow";
     this.cmbShow.TabIndex     = 4;
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQuery.Location    = new System.Drawing.Point(488, 24);
     this.btnQuery.Name        = "btnQuery";
     this.btnQuery.TabIndex    = 0;
     this.btnQuery.Text        = "查询";
     this.btnQuery.Click      += new System.EventHandler(this.btnQuery_Click);
     //
     // chkBeginDate
     //
     this.chkBeginDate.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.chkBeginDate.GlyphStyle  = Infragistics.Win.GlyphStyle.Office2007;
     this.chkBeginDate.Location    = new System.Drawing.Point(160, 56);
     this.chkBeginDate.Name        = "chkBeginDate";
     this.chkBeginDate.TabIndex    = 10;
     this.chkBeginDate.Text        = "开始时间";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Location = new System.Drawing.Point(24, 168);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(960, 416);
     this.ultraGroupBox2.TabIndex = 18;
     //
     // btnFilter
     //
     this.btnFilter.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnFilter.Location    = new System.Drawing.Point(424, 32);
     this.btnFilter.Name        = "btnFilter";
     this.btnFilter.Size        = new System.Drawing.Size(48, 23);
     this.btnFilter.TabIndex    = 51;
     this.btnFilter.Text        = "检索";
     this.btnFilter.Click      += new System.EventHandler(this.btnFilter_Click);
     //
     // RemainReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(992, 597);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "RemainReport";
     this.Text  = "预留报表";
     this.Load += new System.EventHandler(this.BookingReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdBeginDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbShow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #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.btnAddOper     = new Infragistics.Win.Misc.UltraButton();
     this.cmbDept        = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel3    = new Infragistics.Win.Misc.UltraLabel();
     this.txtPwd         = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel2    = new Infragistics.Win.Misc.UltraLabel();
     this.txtOperName    = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel1    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.btnQueryOper   = new Infragistics.Win.Misc.UltraButton();
     this.cmbDept2       = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel5    = new Infragistics.Win.Misc.UltraLabel();
     this.txtOperName2   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel4    = new Infragistics.Win.Misc.UltraLabel();
     this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
     this.ultraButton3   = new Infragistics.Win.Misc.UltraButton();
     this.ultraButton2   = new Infragistics.Win.Misc.UltraButton();
     this.cmbDept3       = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
     this.ultraLabel6    = new Infragistics.Win.Misc.UltraLabel();
     this.txtOperName3   = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
     this.ultraLabel7    = 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.cmbDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPwd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
     this.ultraGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // ultraGroupBox1
     //
     this.ultraGroupBox1.Controls.Add(this.btnAddOper);
     this.ultraGroupBox1.Controls.Add(this.cmbDept);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
     this.ultraGroupBox1.Controls.Add(this.txtPwd);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel2);
     this.ultraGroupBox1.Controls.Add(this.txtOperName);
     this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
     this.ultraGroupBox1.Location = new System.Drawing.Point(16, 0);
     this.ultraGroupBox1.Name     = "ultraGroupBox1";
     this.ultraGroupBox1.Size     = new System.Drawing.Size(256, 208);
     this.ultraGroupBox1.TabIndex = 0;
     this.ultraGroupBox1.Text     = "添加操作员";
     //
     // btnAddOper
     //
     this.btnAddOper.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnAddOper.Location    = new System.Drawing.Point(80, 176);
     this.btnAddOper.Name        = "btnAddOper";
     this.btnAddOper.Size        = new System.Drawing.Size(80, 23);
     this.btnAddOper.TabIndex    = 6;
     this.btnAddOper.Text        = "添加操作员";
     this.btnAddOper.Click      += new System.EventHandler(this.btnAddOper_Click);
     //
     // cmbDept
     //
     this.cmbDept.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept.Location     = new System.Drawing.Point(144, 136);
     this.cmbDept.Name         = "cmbDept";
     this.cmbDept.Size         = new System.Drawing.Size(104, 21);
     this.cmbDept.TabIndex     = 5;
     //
     // ultraLabel3
     //
     this.ultraLabel3.Location = new System.Drawing.Point(24, 136);
     this.ultraLabel3.Name     = "ultraLabel3";
     this.ultraLabel3.TabIndex = 4;
     this.ultraLabel3.Text     = "部门:";
     //
     // txtPwd
     //
     this.txtPwd.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtPwd.Location     = new System.Drawing.Point(144, 80);
     this.txtPwd.Name         = "txtPwd";
     this.txtPwd.PasswordChar = '*';
     this.txtPwd.Size         = new System.Drawing.Size(100, 21);
     this.txtPwd.TabIndex     = 3;
     //
     // ultraLabel2
     //
     this.ultraLabel2.Location = new System.Drawing.Point(24, 80);
     this.ultraLabel2.Name     = "ultraLabel2";
     this.ultraLabel2.TabIndex = 2;
     this.ultraLabel2.Text     = "操作员密码:";
     //
     // txtOperName
     //
     this.txtOperName.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtOperName.Location     = new System.Drawing.Point(144, 40);
     this.txtOperName.Name         = "txtOperName";
     this.txtOperName.Size         = new System.Drawing.Size(100, 21);
     this.txtOperName.TabIndex     = 1;
     //
     // ultraLabel1
     //
     this.ultraLabel1.Location = new System.Drawing.Point(24, 40);
     this.ultraLabel1.Name     = "ultraLabel1";
     this.ultraLabel1.TabIndex = 0;
     this.ultraLabel1.Text     = "操作员名称:";
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.btnQueryOper);
     this.ultraGroupBox2.Controls.Add(this.cmbDept2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
     this.ultraGroupBox2.Controls.Add(this.txtOperName2);
     this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
     this.ultraGroupBox2.Location = new System.Drawing.Point(16, 208);
     this.ultraGroupBox2.Name     = "ultraGroupBox2";
     this.ultraGroupBox2.Size     = new System.Drawing.Size(264, 160);
     this.ultraGroupBox2.TabIndex = 1;
     this.ultraGroupBox2.Text     = "查询操作员";
     //
     // btnQueryOper
     //
     this.btnQueryOper.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.btnQueryOper.Location    = new System.Drawing.Point(88, 120);
     this.btnQueryOper.Name        = "btnQueryOper";
     this.btnQueryOper.Size        = new System.Drawing.Size(80, 23);
     this.btnQueryOper.TabIndex    = 8;
     this.btnQueryOper.Text        = "查询操作员";
     this.btnQueryOper.Click      += new System.EventHandler(this.btnQueryOper_Click);
     //
     // cmbDept2
     //
     this.cmbDept2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept2.Location     = new System.Drawing.Point(140, 80);
     this.cmbDept2.Name         = "cmbDept2";
     this.cmbDept2.Size         = new System.Drawing.Size(104, 21);
     this.cmbDept2.TabIndex     = 7;
     //
     // ultraLabel5
     //
     this.ultraLabel5.Location = new System.Drawing.Point(20, 80);
     this.ultraLabel5.Name     = "ultraLabel5";
     this.ultraLabel5.TabIndex = 6;
     this.ultraLabel5.Text     = "部门:";
     //
     // txtOperName2
     //
     this.txtOperName2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtOperName2.Location     = new System.Drawing.Point(142, 37);
     this.txtOperName2.Name         = "txtOperName2";
     this.txtOperName2.Size         = new System.Drawing.Size(100, 21);
     this.txtOperName2.TabIndex     = 3;
     //
     // ultraLabel4
     //
     this.ultraLabel4.Location = new System.Drawing.Point(22, 37);
     this.ultraLabel4.Name     = "ultraLabel4";
     this.ultraLabel4.TabIndex = 2;
     this.ultraLabel4.Text     = "操作员名称:";
     //
     // ultraGroupBox3
     //
     this.ultraGroupBox3.Controls.Add(this.ultraButton3);
     this.ultraGroupBox3.Controls.Add(this.ultraButton2);
     this.ultraGroupBox3.Controls.Add(this.cmbDept3);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel6);
     this.ultraGroupBox3.Controls.Add(this.txtOperName3);
     this.ultraGroupBox3.Controls.Add(this.ultraLabel7);
     this.ultraGroupBox3.Location = new System.Drawing.Point(16, 376);
     this.ultraGroupBox3.Name     = "ultraGroupBox3";
     this.ultraGroupBox3.Size     = new System.Drawing.Size(264, 160);
     this.ultraGroupBox3.TabIndex = 2;
     this.ultraGroupBox3.Text     = "修改操作员";
     //
     // ultraButton3
     //
     this.ultraButton3.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton3.Location    = new System.Drawing.Point(136, 120);
     this.ultraButton3.Name        = "ultraButton3";
     this.ultraButton3.Size        = new System.Drawing.Size(80, 23);
     this.ultraButton3.TabIndex    = 14;
     this.ultraButton3.Text        = "删除操作员";
     this.ultraButton3.Click      += new System.EventHandler(this.ultraButton3_Click);
     //
     // ultraButton2
     //
     this.ultraButton2.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
     this.ultraButton2.Location    = new System.Drawing.Point(32, 120);
     this.ultraButton2.Name        = "ultraButton2";
     this.ultraButton2.Size        = new System.Drawing.Size(80, 23);
     this.ultraButton2.TabIndex    = 13;
     this.ultraButton2.Text        = "修改操作员";
     this.ultraButton2.Click      += new System.EventHandler(this.ultraButton2_Click);
     //
     // cmbDept3
     //
     this.cmbDept3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.cmbDept3.Location     = new System.Drawing.Point(136, 78);
     this.cmbDept3.Name         = "cmbDept3";
     this.cmbDept3.Size         = new System.Drawing.Size(104, 21);
     this.cmbDept3.TabIndex     = 12;
     //
     // ultraLabel6
     //
     this.ultraLabel6.Location = new System.Drawing.Point(24, 78);
     this.ultraLabel6.Name     = "ultraLabel6";
     this.ultraLabel6.TabIndex = 11;
     this.ultraLabel6.Text     = "部门:";
     //
     // txtOperName3
     //
     this.txtOperName3.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
     this.txtOperName3.Location     = new System.Drawing.Point(144, 35);
     this.txtOperName3.Name         = "txtOperName3";
     this.txtOperName3.Size         = new System.Drawing.Size(100, 21);
     this.txtOperName3.TabIndex     = 10;
     //
     // ultraLabel7
     //
     this.ultraLabel7.Location = new System.Drawing.Point(24, 35);
     this.ultraLabel7.Name     = "ultraLabel7";
     this.ultraLabel7.TabIndex = 9;
     this.ultraLabel7.Text     = "操作员名称:";
     //
     // ultraGrid1
     //
     this.ultraGrid1.Location          = new System.Drawing.Point(320, 16);
     this.ultraGrid1.Name              = "ultraGrid1";
     this.ultraGrid1.Size              = new System.Drawing.Size(360, 520);
     this.ultraGrid1.TabIndex          = 3;
     this.ultraGrid1.Text              = "操作员列表";
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // OperManage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(904, 549);
     this.Controls.Add(this.ultraGrid1);
     this.Controls.Add(this.ultraGroupBox3);
     this.Controls.Add(this.ultraGroupBox2);
     this.Controls.Add(this.ultraGroupBox1);
     this.Name  = "OperManage";
     this.Text  = "操作员管理";
     this.Load += new System.EventHandler(this.OperManage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
     this.ultraGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPwd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
     this.ultraGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbDept3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOperName3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     this.ResumeLayout(false);
 }