private void InitContent(Text text, int index)
        {
            try
            {
                FarPoint.Win.IBorder border = new FarPoint.Win.LineBorder(Color.Black, 1, text.Attribute.BoundaryLine.LeftBoundaryLine, text.Attribute.BoundaryLine.UpperBoundaryLine, text.Attribute.BoundaryLine.RightBooundaryLine, text.Attribute.BoundaryLine.LowerBoundaryLine);

                int X = text.OriginalLocation.Y1 - 1 + index;
                int Y = text.OriginalLocation.X1 - 1;



                SizeF sizef = report.GraphicsBuffer.MeasureString(text.CellText, text.Attribute.Font);
                if (sizef.Height > sheet.Rows[X].Height && text.RowSpan == 1)
                {
                    sheet.Rows[X].Height = sizef.Height;
                }
                sheet.Cells[X, Y].Text = text.CellText;
                sheet.AddSpanCell(X, Y, text.RowSpan, text.ColumnSpan);

                sheet.Cells[X, Y].Font   = text.Attribute.Font;
                sheet.Cells[X, Y].Border = border;
                sheet.Cells[X, Y].HorizontalAlignment = DesignHelper.ConvertStringAlignmentToHAlignment(text.Attribute.Valign.LineAlignment);
                sheet.Cells[X, Y].VerticalAlignment   = DesignHelper.ConvertStringAlignmentToVAlignment(text.Attribute.Valign.Alignment);

                sheet.Cells[X, Y].Tag = text.Attribute.Diagonal;
            }
            catch
            {
                throw new CellLocationInvalidExcption(text.ToString());
            }
        }
        private void InitSheetView()
        {
            try
            {
                sheet.ColumnCount = pageInfo.ContainCols.Count;
                sheet.RowCount    = dt.Rows.Count;
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    for (int j = 0; j < dt.Columns.Count; j++)
                    {
                        CellStruct cellStruct = dt.Rows[i][j] as CellStruct;
                        if (!CellStruct.IsNullOrEmpty(cellStruct))
                        {
                            //文本内容
                            sheet.Cells[i, j].Text = cellStruct.Context;
                            //字体信息
                            sheet.Cells[i, j].Font = cellStruct.DrawInfo.Font;
                            //边框信息
                            FarPoint.Win.IBorder border = new FarPoint.Win.LineBorder(Color.Black, 1,
                                                                                      cellStruct.DrawInfo.BoundaryLine.LeftBoundaryLine,
                                                                                      cellStruct.DrawInfo.BoundaryLine.UpperBoundaryLine,
                                                                                      cellStruct.DrawInfo.BoundaryLine.RightBooundaryLine,
                                                                                      cellStruct.DrawInfo.BoundaryLine.LowerBoundaryLine);

                            sheet.Cells[i, j].Border = border;
                            //合并信息
                            sheet.Cells[i, j].RowSpan    = cellStruct.ExcelInfo.RowMerge;
                            sheet.Cells[i, j].ColumnSpan = cellStruct.ExcelInfo.ColMerge;

                            //对齐方式
                            sheet.Cells[i, j].HorizontalAlignment = DesignHelper.ConvertStringAlignmentToHAlignment(cellStruct.DrawInfo.Format.LineAlignment);
                            sheet.Cells[i, j].VerticalAlignment   = DesignHelper.ConvertStringAlignmentToVAlignment(cellStruct.DrawInfo.Format.Alignment);
                        }
                    }
                    sheet.Rows[i].Height = pageInfo.PageRowHeight[i];
                }
                for (int i = 0; i < pageInfo.ColumnInfo.Length; i++)
                {
                    sheet.Columns[i].Width = pageInfo.ColumnInfo[i].Width;
                }
            }
            catch (Exception e)
            {
                throw e;
            }
        }
Beispiel #3
0
        public static int DrawGridLine(FarPoint.Win.Spread.SheetView sv, int row, int column, int rowCount, int columnCount)
        {
            #region 画格
            FarPoint.Win.LineBorder lineBorderLTRB = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, true, true);
            int row2    = 0;
            int column2 = 0;
            if (row + rowCount - 1 >= row)
            {
                row2 = row + rowCount - 1;
            }
            else
            {
                row2 = row;
            }
            if (column + columnCount - 1 >= column)
            {
                column2 = column + columnCount - 1;
            }
            else
            {
                column2 = column;
            }
            if (rowCount > 0)
            {
                sv.Cells[row, column, row2, column2].Border = lineBorderLTRB;
            }
            return(1);

            //#region 先画左上
            //FarPoint.Win.LineBorder lineBorderLT = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, false, false);
            //SvMain.Cells[this.DataBeginRowIndex + 1, 0, this.DataBeginRowIndex + this.dataRowCount, dataDisplayColumns.Length - 1].Border = lineBorderLT;
            //#endregion
            //#region 再画最下面
            //FarPoint.Win.LineBorder lineBorderLTB = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, false, true);
            //SvMain.Cells[this.DataBeginRowIndex + this.dataRowCount, 0, this.DataBeginRowIndex + this.dataRowCount, dataDisplayColumns.Length - 1].Border = lineBorderLTB;
            //#endregion
            //#region 再画最右面
            //FarPoint.Win.LineBorder lineBorderLTR = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, true, false);
            //SvMain.Cells[this.DataBeginRowIndex + 1, dataDisplayColumns.Length - 1, this.DataBeginRowIndex + this.dataRowCount, dataDisplayColumns.Length - 1].Border = lineBorderLTR;
            //#endregion
            //#region 再画右下的一个格
            ////FarPoint.Win.LineBorder lineBorderLTRB = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, true, true);
            //SvMain.Cells[this.DataBeginRowIndex + this.dataRowCount, dataDisplayColumns.Length - 1, this.DataBeginRowIndex + this.dataRowCount, dataDisplayColumns.Length - 1].Border = lineBorderLTRB;
            //#endregion
            #endregion
        }
        /// <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();
            FarPoint.Win.Spread.TipAppearance         tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            FarPoint.Win.BevelBorder                  bevelBorder1   = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, false, false, true, true);
            FarPoint.Win.BevelBorder                  bevelBorder2   = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, false, false, true, true);
            FarPoint.Win.Spread.CellType.TextCellType textCellType1  = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.LineBorder lineBorder1 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
            FarPoint.Win.LineBorder lineBorder2 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder lineBorder3 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, false, true, true);
            FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.LineBorder lineBorder4 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, true, true);
            FarPoint.Win.LineBorder lineBorder5 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, false, false);
            this.neuGroupBox1      = new System.Windows.Forms.GroupBox();
            this.ntbIDNo           = new System.Windows.Forms.TextBox();
            this.neuLabel5         = new System.Windows.Forms.Label();
            this.ntbName           = new System.Windows.Forms.TextBox();
            this.neuLabel3         = new System.Windows.Forms.Label();
            this.cmbOperCode       = new NineVigor.FrameWork.WinForms.Controls.NineComboBox(this.components);
            this.neuLabel4         = new System.Windows.Forms.Label();
            this.cmbDept           = new NineVigor.FrameWork.WinForms.Controls.NineComboBox(this.components);
            this.lblDept           = new System.Windows.Forms.Label();
            this.neuTb_Inpatientno = new System.Windows.Forms.TextBox();
            this.neuLabel63        = new System.Windows.Forms.Label();
            this.cbOutDate         = new System.Windows.Forms.CheckBox();
            this.dtpEndDate        = new NineVigor.FrameWork.WinForms.Controls.Common.NVDateTimePicker();
            this.dtpBeginDate      = new NineVigor.FrameWork.WinForms.Controls.Common.NVDateTimePicker();
            this.neuLabel2         = new System.Windows.Forms.Label();
            this.neuLabel1         = new System.Windows.Forms.Label();
            this.neuSpread2        = new NineVigor.FrameWork.WinForms.Controls.NineSpread();
            this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.neuTBShangjiaHao  = new System.Windows.Forms.TextBox();
            this.neuLabel6         = new System.Windows.Forms.Label();
            this.neuGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
            this.SuspendLayout();
            //
            // neuGroupBox1
            //
            this.neuGroupBox1.Controls.Add(this.neuTBShangjiaHao);
            this.neuGroupBox1.Controls.Add(this.neuLabel6);
            this.neuGroupBox1.Controls.Add(this.ntbIDNo);
            this.neuGroupBox1.Controls.Add(this.neuLabel5);
            this.neuGroupBox1.Controls.Add(this.ntbName);
            this.neuGroupBox1.Controls.Add(this.neuLabel3);
            this.neuGroupBox1.Controls.Add(this.cmbOperCode);
            this.neuGroupBox1.Controls.Add(this.neuLabel4);
            this.neuGroupBox1.Controls.Add(this.cmbDept);
            this.neuGroupBox1.Controls.Add(this.lblDept);
            this.neuGroupBox1.Controls.Add(this.neuTb_Inpatientno);
            this.neuGroupBox1.Controls.Add(this.neuLabel63);
            this.neuGroupBox1.Controls.Add(this.cbOutDate);
            this.neuGroupBox1.Controls.Add(this.dtpEndDate);
            this.neuGroupBox1.Controls.Add(this.dtpBeginDate);
            this.neuGroupBox1.Controls.Add(this.neuLabel2);
            this.neuGroupBox1.Controls.Add(this.neuLabel1);
            this.neuGroupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.neuGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.neuGroupBox1.Name     = "neuGroupBox1";
            this.neuGroupBox1.Size     = new System.Drawing.Size(975, 82);
            this.neuGroupBox1.TabIndex = 5;
            this.neuGroupBox1.TabStop  = false;
            //
            // ntbIDNo
            //

            this.ntbIDNo.Location  = new System.Drawing.Point(498, 51);
            this.ntbIDNo.MaxLength = 20;
            this.ntbIDNo.Name      = "ntbIDNo";
            this.ntbIDNo.Size      = new System.Drawing.Size(167, 21);

            this.ntbIDNo.TabIndex = 185;
            //
            // neuLabel5
            //
            this.neuLabel5.AutoSize = true;
            this.neuLabel5.Location = new System.Drawing.Point(434, 55);
            this.neuLabel5.Name     = "neuLabel5";
            this.neuLabel5.Size     = new System.Drawing.Size(65, 12);

            this.neuLabel5.TabIndex = 184;
            this.neuLabel5.Text     = "身份证号:";
            //
            // ntbName
            //

            this.ntbName.Location  = new System.Drawing.Point(337, 52);
            this.ntbName.MaxLength = 15;
            this.ntbName.Name      = "ntbName";
            this.ntbName.Size      = new System.Drawing.Size(87, 21);

            this.ntbName.TabIndex = 183;
            //
            // neuLabel3
            //
            this.neuLabel3.AutoSize = true;
            this.neuLabel3.Location = new System.Drawing.Point(294, 56);
            this.neuLabel3.Name     = "neuLabel3";
            this.neuLabel3.Size     = new System.Drawing.Size(41, 12);

            this.neuLabel3.TabIndex = 182;
            this.neuLabel3.Text     = "姓名:";
            //
            // cmbOperCode
            //
            this.cmbOperCode.ArrowBackColor     = System.Drawing.SystemColors.Control;
            this.cmbOperCode.DropDownHeight     = 424;
            this.cmbOperCode.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbOperCode.Enabled            = false;
            this.cmbOperCode.FormattingEnabled  = true;
            this.cmbOperCode.IntegralHeight     = false;
            this.cmbOperCode.IsEnter2Tab        = false;
            this.cmbOperCode.IsFlat             = false;
            this.cmbOperCode.IsLike             = true;
            this.cmbOperCode.IsListOnly         = false;
            this.cmbOperCode.IsPopForm          = true;
            this.cmbOperCode.IsShowCustomerList = false;
            this.cmbOperCode.IsShowID           = false;
            this.cmbOperCode.Location           = new System.Drawing.Point(644, 22);
            this.cmbOperCode.Name             = "cmbOperCode";
            this.cmbOperCode.PopForm          = null;
            this.cmbOperCode.ShowCustomerList = false;

            this.cmbOperCode.Size = new System.Drawing.Size(132, 20);

            this.cmbOperCode.TabIndex   = 181;
            this.cmbOperCode.Tag        = "";
            this.cmbOperCode.ToolBarUse = false;
            //
            // neuLabel4
            //
            this.neuLabel4.AutoSize  = true;
            this.neuLabel4.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel4.Location  = new System.Drawing.Point(595, 27);
            this.neuLabel4.Name      = "neuLabel4";
            this.neuLabel4.Size      = new System.Drawing.Size(47, 12);

            this.neuLabel4.TabIndex = 180;
            this.neuLabel4.Text     = "回收人:";
            //
            // cmbDept
            //
            this.cmbDept.ArrowBackColor     = System.Drawing.SystemColors.Control;
            this.cmbDept.DropDownHeight     = 424;
            this.cmbDept.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbDept.Enabled            = false;
            this.cmbDept.FormattingEnabled  = true;
            this.cmbDept.IntegralHeight     = false;
            this.cmbDept.IsEnter2Tab        = false;
            this.cmbDept.IsFlat             = false;
            this.cmbDept.IsLike             = true;
            this.cmbDept.IsListOnly         = false;
            this.cmbDept.IsPopForm          = true;
            this.cmbDept.IsShowCustomerList = false;
            this.cmbDept.IsShowID           = false;
            this.cmbDept.Location           = new System.Drawing.Point(447, 23);
            this.cmbDept.Name             = "cmbDept";
            this.cmbDept.PopForm          = null;
            this.cmbDept.ShowCustomerList = false;

            this.cmbDept.Size = new System.Drawing.Size(132, 20);

            this.cmbDept.TabIndex   = 179;
            this.cmbDept.Tag        = "";
            this.cmbDept.ToolBarUse = false;
            //
            // lblDept
            //
            this.lblDept.AutoSize  = true;
            this.lblDept.ForeColor = System.Drawing.Color.Blue;
            this.lblDept.Location  = new System.Drawing.Point(385, 27);
            this.lblDept.Name      = "lblDept";
            this.lblDept.Size      = new System.Drawing.Size(59, 12);

            this.lblDept.TabIndex = 178;
            this.lblDept.Text     = "回收部门:";
            //
            // neuTb_Inpatientno
            //

            this.neuTb_Inpatientno.Location  = new System.Drawing.Point(118, 50);
            this.neuTb_Inpatientno.MaxLength = 15;
            this.neuTb_Inpatientno.Name      = "neuTb_Inpatientno";
            this.neuTb_Inpatientno.Size      = new System.Drawing.Size(152, 21);

            this.neuTb_Inpatientno.TabIndex = 22;
            //
            // neuLabel63
            //
            this.neuLabel63.AutoSize = true;
            this.neuLabel63.Location = new System.Drawing.Point(7, 54);
            this.neuLabel63.Name     = "neuLabel63";
            this.neuLabel63.Size     = new System.Drawing.Size(113, 12);

            this.neuLabel63.TabIndex = 21;
            this.neuLabel63.Text     = "病案号(住院号):";
            //
            // cbOutDate
            //
            this.cbOutDate.AutoSize = true;
            this.cbOutDate.Location = new System.Drawing.Point(296, 25);
            this.cbOutDate.Name     = "cbOutDate";
            this.cbOutDate.Size     = new System.Drawing.Size(72, 16);
            this.cbOutDate.TabIndex = 5;
            this.cbOutDate.Text     = "回收日期";
            this.cbOutDate.UseVisualStyleBackColor = true;
            this.cbOutDate.CheckedChanged         += new System.EventHandler(this.cbOutDate_CheckedChanged);
            //
            // dtpEndDate
            //
            this.dtpEndDate.Enabled     = false;
            this.dtpEndDate.Format      = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpEndDate.IsEnter2Tab = false;
            this.dtpEndDate.Location    = new System.Drawing.Point(193, 22);
            this.dtpEndDate.Name        = "dtpEndDate";
            this.dtpEndDate.Size        = new System.Drawing.Size(97, 21);

            this.dtpEndDate.TabIndex = 1;
            //
            // dtpBeginDate
            //
            this.dtpBeginDate.Enabled     = false;
            this.dtpBeginDate.Format      = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpBeginDate.IsEnter2Tab = false;
            this.dtpBeginDate.Location    = new System.Drawing.Point(67, 22);
            this.dtpBeginDate.Name        = "dtpBeginDate";
            this.dtpBeginDate.Size        = new System.Drawing.Size(97, 21);

            this.dtpBeginDate.TabIndex = 1;
            //
            // neuLabel2
            //
            this.neuLabel2.AutoSize  = true;
            this.neuLabel2.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel2.Location  = new System.Drawing.Point(170, 26);
            this.neuLabel2.Name      = "neuLabel2";
            this.neuLabel2.Size      = new System.Drawing.Size(17, 12);

            this.neuLabel2.TabIndex = 0;
            this.neuLabel2.Text     = "至";
            //
            // neuLabel1
            //
            this.neuLabel1.AutoSize  = true;
            this.neuLabel1.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel1.Location  = new System.Drawing.Point(6, 26);
            this.neuLabel1.Name      = "neuLabel1";
            this.neuLabel1.Size      = new System.Drawing.Size(59, 12);

            this.neuLabel1.TabIndex = 0;
            this.neuLabel1.Text     = "回收日期:";
            //
            // neuSpread2
            //
            this.neuSpread2.About = "3.0.2004.2005";
            this.neuSpread2.AccessibleDescription = "neuSpread2, Sheet1, Row 0, Column 0, ";
            this.neuSpread2.BackColor             = System.Drawing.Color.White;
            this.neuSpread2.BorderStyle           = System.Windows.Forms.BorderStyle.None;
            this.neuSpread2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuSpread2.FileName = "";
            this.neuSpread2.Font     = new System.Drawing.Font("宋体", 10F);
            this.neuSpread2.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.neuSpread2.IsAutoSaveGridStatus      = false;
            this.neuSpread2.IsCanCustomConfigColumn   = false;
            this.neuSpread2.IsShowExport    = true;
            this.neuSpread2.IsShowMenuStrip = true;
            this.neuSpread2.Location        = new System.Drawing.Point(0, 82);
            this.neuSpread2.Name            = "neuSpread2";
            this.neuSpread2.RightToLeft     = System.Windows.Forms.RightToLeft.No;
            this.neuSpread2.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.neuSpread1_Sheet1
            });
            this.neuSpread2.Size = new System.Drawing.Size(975, 336);

            this.neuSpread2.TabIndex                = 10;
            tipAppearance1.BackColor                = System.Drawing.SystemColors.Info;
            tipAppearance1.Font                     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance1.ForeColor                = System.Drawing.SystemColors.InfoText;
            this.neuSpread2.TextTipAppearance       = tipAppearance1;
            this.neuSpread2.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            //
            // neuSpread1_Sheet1
            //
            this.neuSpread1_Sheet1.Reset();
            this.neuSpread1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.neuSpread1_Sheet1.ReferenceStyle        = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.neuSpread1_Sheet1.ColumnCount           = 10;
            this.neuSpread1_Sheet1.ColumnHeader.RowCount = 3;
            this.neuSpread1_Sheet1.RowCount = 5;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).BackColor           = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Border              = bevelBorder1;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).ColumnSpan          = 10;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Font                = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value               = "病案回收库位查询";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).BackColor           = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).Border              = bevelBorder2;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).CellType            = textCellType1;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).ColumnSpan          = 10;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).ForeColor           = System.Drawing.Color.Black;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Border              = lineBorder1;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Value               = "科室名称";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 1).Value               = "病案号";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).Value               = "住院次数";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 3).Value               = "患者姓名";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 4).Value               = "回收时间";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 5).Value               = "回收人";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 6).Value               = "入院日期";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 7).Value               = "出院日期";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 8).Value               = "出院日期";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 9).Value               = "上架号";
            this.neuSpread1_Sheet1.ColumnHeader.Columns.Default.VisualStyles        = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor              = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Border       = lineBorder2;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height        = 50F;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(1).Height        = 30F;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(2).Height        = 30F;
            this.neuSpread1_Sheet1.Columns.Get(0).Border = lineBorder3;
            this.neuSpread1_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General;
            this.neuSpread1_Sheet1.Columns.Get(0).Label               = "科室名称";
            this.neuSpread1_Sheet1.Columns.Get(0).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.neuSpread1_Sheet1.Columns.Get(0).Width               = 176F;
            this.neuSpread1_Sheet1.Columns.Get(1).CellType            = textCellType2;
            this.neuSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.neuSpread1_Sheet1.Columns.Get(1).Label               = "病案号";
            this.neuSpread1_Sheet1.Columns.Get(1).Width               = 99F;
            this.neuSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(2).Label               = "住院次数";
            this.neuSpread1_Sheet1.Columns.Get(2).Width               = 42F;
            this.neuSpread1_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(3).Label               = "患者姓名";
            this.neuSpread1_Sheet1.Columns.Get(3).Width               = 81F;
            this.neuSpread1_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.neuSpread1_Sheet1.Columns.Get(4).Label               = "回收时间";
            this.neuSpread1_Sheet1.Columns.Get(4).Width               = 148F;
            this.neuSpread1_Sheet1.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(5).Label               = "回收人";
            this.neuSpread1_Sheet1.Columns.Get(5).Width               = 84F;
            this.neuSpread1_Sheet1.Columns.Get(6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(6).Label               = "入院日期";
            this.neuSpread1_Sheet1.Columns.Get(6).Width               = 95F;
            this.neuSpread1_Sheet1.Columns.Get(7).Label               = "出院日期";
            this.neuSpread1_Sheet1.Columns.Get(7).Width               = 104F;
            this.neuSpread1_Sheet1.Columns.Get(8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(8).Label               = "出院日期";
            this.neuSpread1_Sheet1.Columns.Get(8).Visible             = false;
            this.neuSpread1_Sheet1.Columns.Get(8).Width               = 95F;
            this.neuSpread1_Sheet1.Columns.Get(9).Label               = "上架号";
            this.neuSpread1_Sheet1.Columns.Get(9).Locked              = true;
            this.neuSpread1_Sheet1.Columns.Get(9).Width               = 188F;
            this.neuSpread1_Sheet1.DataAutoCellTypes   = false;
            this.neuSpread1_Sheet1.DataAutoSizeColumns = false;
            this.neuSpread1_Sheet1.DefaultStyle.Border = lineBorder4;
            this.neuSpread1_Sheet1.DefaultStyle.Font   = new System.Drawing.Font("宋体", 10F);
            this.neuSpread1_Sheet1.DefaultStyle.Parent = "DataAreaDefault";
            this.neuSpread1_Sheet1.GrayAreaBackColor   = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.RowHeader.AutoText  = FarPoint.Win.Spread.HeaderAutoText.Blank;
            this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable    = true;
            this.neuSpread1_Sheet1.RowHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.RowHeader.Columns.Get(0).Width         = 21F;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.BackColor       = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Parent          = "RowHeaderDefault";
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.VisualStyles    = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.RowHeader.Rows.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.RowHeader.Visible             = false;
            this.neuSpread1_Sheet1.Rows.Default.Height           = 25F;
            this.neuSpread1_Sheet1.SelectionUnit                 = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.neuSpread1_Sheet1.SheetCornerHorizontalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.neuSpread1_Sheet1.SheetCornerStyle.BackColor    = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.SheetCornerStyle.Border       = lineBorder5;
            this.neuSpread1_Sheet1.SheetCornerStyle.Parent       = "CornerDefault";
            this.neuSpread1_Sheet1.SheetCornerStyle.VisualStyles = FarPoint.Win.VisualStyles.On;
            this.neuSpread1_Sheet1.SheetCornerVerticalGridLine   = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.neuSpread1_Sheet1.ReferenceStyle                = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // neuTBShangjiaHao
            //

            this.neuTBShangjiaHao.Location  = new System.Drawing.Point(735, 50);
            this.neuTBShangjiaHao.MaxLength = 20;
            this.neuTBShangjiaHao.Name      = "neuTBShangjiaHao";
            this.neuTBShangjiaHao.Size      = new System.Drawing.Size(167, 21);

            this.neuTBShangjiaHao.TabIndex = 187;
            //
            // neuLabel6
            //
            this.neuLabel6.AutoSize = true;
            this.neuLabel6.Location = new System.Drawing.Point(678, 55);
            this.neuLabel6.Name     = "neuLabel6";
            this.neuLabel6.Size     = new System.Drawing.Size(53, 12);

            this.neuLabel6.TabIndex = 186;
            this.neuLabel6.Text     = "上架号:";
            //
            // ucMetCasReCallQueryLocation
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.neuSpread2);
            this.Controls.Add(this.neuGroupBox1);
            this.Name = "ucMetCasReCallQueryLocation";
            this.Size = new System.Drawing.Size(975, 418);
            this.neuGroupBox1.ResumeLayout(false);
            this.neuGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
     FarPoint.Win.LineBorder           lineBorder1    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder           lineBorder2    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, true, true);
     this.neuPanel1         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.lbDept            = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel3         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.cmbDept           = new Neusoft.FrameWork.WinForms.Controls.NeuComboBox(this.components);
     this.dtpEndDate        = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
     this.dtpFromDate       = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
     this.neuLabel1         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.plPrint           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.neuSpread1        = new Neusoft.FrameWork.WinForms.Controls.NeuSpread();
     this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.plTitle           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.lbQueryInfo       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lbTitle           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuSpread1_Sheet2 = new FarPoint.Win.Spread.SheetView();
     this.neuPanel1.SuspendLayout();
     this.plPrint.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
     this.plTitle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet2)).BeginInit();
     this.SuspendLayout();
     //
     // neuPanel1
     //
     this.neuPanel1.Controls.Add(this.lbDept);
     this.neuPanel1.Controls.Add(this.neuLabel3);
     this.neuPanel1.Controls.Add(this.cmbDept);
     this.neuPanel1.Controls.Add(this.dtpEndDate);
     this.neuPanel1.Controls.Add(this.dtpFromDate);
     this.neuPanel1.Controls.Add(this.neuLabel1);
     this.neuPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.neuPanel1.Location = new System.Drawing.Point(0, 0);
     this.neuPanel1.Name     = "neuPanel1";
     this.neuPanel1.Size     = new System.Drawing.Size(771, 53);
     this.neuPanel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuPanel1.TabIndex = 0;
     //
     // lbDept
     //
     this.lbDept.AutoSize = true;
     this.lbDept.Location = new System.Drawing.Point(428, 17);
     this.lbDept.Name     = "lbDept";
     this.lbDept.Size     = new System.Drawing.Size(41, 12);
     this.lbDept.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lbDept.TabIndex = 0;
     this.lbDept.Text     = "科室:";
     //
     // neuLabel3
     //
     this.neuLabel3.AutoSize = true;
     this.neuLabel3.Location = new System.Drawing.Point(229, 17);
     this.neuLabel3.Name     = "neuLabel3";
     this.neuLabel3.Size     = new System.Drawing.Size(17, 12);
     this.neuLabel3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel3.TabIndex = 0;
     this.neuLabel3.Text     = "至";
     //
     // cmbDept
     //
     this.cmbDept.ArrowBackColor     = System.Drawing.SystemColors.Control;
     this.cmbDept.FormattingEnabled  = true;
     this.cmbDept.IsEnter2Tab        = false;
     this.cmbDept.IsFlat             = false;
     this.cmbDept.IsLike             = true;
     this.cmbDept.IsListOnly         = false;
     this.cmbDept.IsShowCustomerList = false;
     this.cmbDept.IsShowID           = false;
     this.cmbDept.Location           = new System.Drawing.Point(472, 14);
     this.cmbDept.Name             = "cmbDept";
     this.cmbDept.PopForm          = null;
     this.cmbDept.ShowCustomerList = false;
     this.cmbDept.ShowID           = false;
     this.cmbDept.Size             = new System.Drawing.Size(121, 20);
     this.cmbDept.Style            = Neusoft.FrameWork.WinForms.Controls.StyleType.Flat;
     this.cmbDept.TabIndex         = 2;
     this.cmbDept.Tag        = "";
     this.cmbDept.ToolBarUse = false;
     //
     // dtpEndDate
     //
     this.dtpEndDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.dtpEndDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpEndDate.IsEnter2Tab  = false;
     this.dtpEndDate.Location     = new System.Drawing.Point(258, 13);
     this.dtpEndDate.Name         = "dtpEndDate";
     this.dtpEndDate.Size         = new System.Drawing.Size(141, 21);
     this.dtpEndDate.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.dtpEndDate.TabIndex     = 1;
     //
     // dtpFromDate
     //
     this.dtpFromDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.dtpFromDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFromDate.IsEnter2Tab  = false;
     this.dtpFromDate.Location     = new System.Drawing.Point(79, 13);
     this.dtpFromDate.Name         = "dtpFromDate";
     this.dtpFromDate.Size         = new System.Drawing.Size(141, 21);
     this.dtpFromDate.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.dtpFromDate.TabIndex     = 1;
     //
     // neuLabel1
     //
     this.neuLabel1.AutoSize = true;
     this.neuLabel1.Location = new System.Drawing.Point(12, 17);
     this.neuLabel1.Name     = "neuLabel1";
     this.neuLabel1.Size     = new System.Drawing.Size(65, 12);
     this.neuLabel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel1.TabIndex = 0;
     this.neuLabel1.Text     = "查询时间:";
     //
     // plPrint
     //
     this.plPrint.Controls.Add(this.neuSpread1);
     this.plPrint.Controls.Add(this.plTitle);
     this.plPrint.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.plPrint.Location = new System.Drawing.Point(0, 53);
     this.plPrint.Name     = "plPrint";
     this.plPrint.Size     = new System.Drawing.Size(771, 552);
     this.plPrint.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.plPrint.TabIndex = 1;
     //
     // neuSpread1
     //
     this.neuSpread1.About = "3.0.2004.2005";
     this.neuSpread1.AccessibleDescription = "neuSpread1, Sheet2, Row 0, Column 0, ";
     this.neuSpread1.BackColor             = System.Drawing.Color.White;
     this.neuSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.neuSpread1.FileName = "";
     this.neuSpread1.Font     = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.neuSpread1.IsAutoSaveGridStatus      = false;
     this.neuSpread1.IsCanCustomConfigColumn   = false;
     this.neuSpread1.Location             = new System.Drawing.Point(0, 62);
     this.neuSpread1.Name                 = "neuSpread1";
     this.neuSpread1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.neuSpread1.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Both;
     this.neuSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.neuSpread1_Sheet1,
         this.neuSpread1_Sheet2
     });
     this.neuSpread1.Size                    = new System.Drawing.Size(771, 490);
     this.neuSpread1.Style                   = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuSpread1.TabIndex                = 1;
     tipAppearance1.BackColor                = System.Drawing.SystemColors.Info;
     tipAppearance1.Font                     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     tipAppearance1.ForeColor                = System.Drawing.SystemColors.InfoText;
     this.neuSpread1.TextTipAppearance       = tipAppearance1;
     this.neuSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     //
     // neuSpread1_Sheet1
     //
     this.neuSpread1_Sheet1.Reset();
     this.neuSpread1_Sheet1.SheetName = "汇总";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpread1_Sheet1.ReferenceStyle        = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.neuSpread1_Sheet1.ColumnCount           = 10;
     this.neuSpread1_Sheet1.RowCount              = 10;
     this.neuSpread1_Sheet1.RowHeader.ColumnCount = 0;
     this.neuSpread1_Sheet1.ActiveSkin            = new FarPoint.Win.Spread.SheetSkin("CustomSkin1", System.Drawing.Color.White, System.Drawing.Color.White, System.Drawing.Color.Empty, System.Drawing.Color.White, FarPoint.Win.Spread.GridLines.Both, System.Drawing.Color.White, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, false, false, false, true, false);
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor           = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Border              = lineBorder1;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Font                = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Locked              = false;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent              = "HeaderDefault";
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.VerticalGridLine      = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.Color.Transparent);
     this.neuSpread1_Sheet1.Columns.Get(0).Font                = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuSpread1_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Columns.Get(0).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpread1_Sheet1.DefaultStyle.BackColor             = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.DefaultStyle.Border                = lineBorder2;
     this.neuSpread1_Sheet1.DefaultStyle.HorizontalAlignment   = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
     this.neuSpread1_Sheet1.DefaultStyle.Locked                = false;
     this.neuSpread1_Sheet1.DefaultStyle.Parent                = "DataAreaDefault";
     this.neuSpread1_Sheet1.DefaultStyle.VerticalAlignment     = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpread1_Sheet1.OperationMode = FarPoint.Win.Spread.OperationMode.ReadOnly;
     this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable = true;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Locked       = false;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
     this.neuSpread1_Sheet1.RowHeader.Visible          = false;
     this.neuSpread1_Sheet1.SheetCornerStyle.BackColor = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.SheetCornerStyle.Locked    = false;
     this.neuSpread1_Sheet1.SheetCornerStyle.Parent    = "HeaderDefault";
     this.neuSpread1_Sheet1.VisualStyles   = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // plTitle
     //
     this.plTitle.BackColor = System.Drawing.Color.White;
     this.plTitle.Controls.Add(this.lbQueryInfo);
     this.plTitle.Controls.Add(this.lbTitle);
     this.plTitle.Dock     = System.Windows.Forms.DockStyle.Top;
     this.plTitle.Location = new System.Drawing.Point(0, 0);
     this.plTitle.Name     = "plTitle";
     this.plTitle.Size     = new System.Drawing.Size(771, 62);
     this.plTitle.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.plTitle.TabIndex = 0;
     //
     // lbQueryInfo
     //
     this.lbQueryInfo.AutoSize = true;
     this.lbQueryInfo.Location = new System.Drawing.Point(10, 41);
     this.lbQueryInfo.Name     = "lbQueryInfo";
     this.lbQueryInfo.Size     = new System.Drawing.Size(77, 12);
     this.lbQueryInfo.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lbQueryInfo.TabIndex = 0;
     this.lbQueryInfo.Text     = "查询条件信息";
     //
     // lbTitle
     //
     this.lbTitle.AutoSize = true;
     this.lbTitle.Font     = new System.Drawing.Font("黑体", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbTitle.Location = new System.Drawing.Point(250, 4);
     this.lbTitle.Name     = "lbTitle";
     this.lbTitle.Size     = new System.Drawing.Size(58, 24);
     this.lbTitle.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lbTitle.TabIndex = 0;
     this.lbTitle.Text     = "标题";
     //
     // neuSpread1_Sheet2
     //
     this.neuSpread1_Sheet2.Reset();
     this.neuSpread1_Sheet2.SheetName = "明细";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpread1_Sheet2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.neuSpread1_Sheet2.RowHeader.Columns.Default.Resizable = false;
     this.neuSpread1_Sheet2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // ucCrosstabReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.plPrint);
     this.Controls.Add(this.neuPanel1);
     this.Name  = "ucCrosstabReport";
     this.Size  = new System.Drawing.Size(771, 605);
     this.Load += new System.EventHandler(this.ucCrosstabReport_Load);
     this.neuPanel1.ResumeLayout(false);
     this.neuPanel1.PerformLayout();
     this.plPrint.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
     this.plTitle.ResumeLayout(false);
     this.plTitle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #6
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.LineBorder lineBorder121 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType15 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder122 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder123 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder124 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder125 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder126 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder127 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder128 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType7 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder129 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType16 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder130 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder131 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder132 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder133 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder134 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder135 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder136 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType8 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder137 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType17 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder138 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder139 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder140 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder141 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder142 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder143 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder144 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.ButtonCellType    buttonCellType5 = new FarPoint.Win.Spread.CellType.ButtonCellType();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(ucDiagnose));
     FarPoint.Win.LineBorder lineBorder145 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType18 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder146 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder147 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder148 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder149 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder150 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder151 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder152 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder153 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType19 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder154 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder155 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder156 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder157 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder158 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder159 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder160 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder161 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType20 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder162 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder163 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder164 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder165 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder166 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder167 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder168 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder169 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType21 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder170 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder171 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder172 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder173 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder174 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder175 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder176 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder177 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType22 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder178 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder179 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder180 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder181 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder182 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder183 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder184 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder185 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType23 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder186 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder187 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder188 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder189 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder190 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder191 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder192 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder193 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType24 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder194 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder195 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder196 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder197 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder198 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder199 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder200 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder201 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType25 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder202 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder203 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder204 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder205 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder206 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder207 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder208 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder209 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType26 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder210 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder211 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder212 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder213 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder214 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder215 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder216 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.ButtonCellType buttonCellType6 = new FarPoint.Win.Spread.CellType.ButtonCellType();
     FarPoint.Win.LineBorder lineBorder217 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType27 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder218 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder219 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder220 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder221 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder222 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder223 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder224 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.ButtonCellType buttonCellType7 = new FarPoint.Win.Spread.CellType.ButtonCellType();
     FarPoint.Win.LineBorder lineBorder225 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType28 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder226 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder227 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder228 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder229 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder230 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType9 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder231 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType10 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder232 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.ButtonCellType buttonCellType8 = new FarPoint.Win.Spread.CellType.ButtonCellType();
     FarPoint.Win.LineBorder lineBorder233 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType11 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder234 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder235 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder236 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder237 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder238 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder239 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder240 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType12 = new FarPoint.Win.Spread.CellType.TextCellType();
     this.neuSpreadDiagnose        = new NineVigor.FrameWork.WinForms.Controls.NineSpread();
     this.neuSpreadDiagnose_Sheet1 = new FarPoint.Win.Spread.SheetView();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose_Sheet1)).BeginInit();
     this.SuspendLayout();
     //
     // neuSpreadDiagnose
     //
     this.neuSpreadDiagnose.AccessibleDescription = "neuSpreadDiagnose, Sheet1, Row 0, Column 0, ";
     this.neuSpreadDiagnose.BackColor             = System.Drawing.Color.White;
     this.neuSpreadDiagnose.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.neuSpreadDiagnose.FileName = "";
     this.neuSpreadDiagnose.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.neuSpreadDiagnose.IsAutoSaveGridStatus      = false;
     this.neuSpreadDiagnose.IsCanCustomConfigColumn   = false;
     this.neuSpreadDiagnose.IsShowExport    = true;
     this.neuSpreadDiagnose.IsShowMenuStrip = true;
     this.neuSpreadDiagnose.Location        = new System.Drawing.Point(0, 0);
     this.neuSpreadDiagnose.Name            = "neuSpreadDiagnose";
     this.neuSpreadDiagnose.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.neuSpreadDiagnose.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.neuSpreadDiagnose_Sheet1
     });
     this.neuSpreadDiagnose.Size     = new System.Drawing.Size(983, 456);
     this.neuSpreadDiagnose.Style    = NineVigor.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuSpreadDiagnose.TabIndex = 0;
     this.neuSpreadDiagnose.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.neuSpreadDiagnose.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.neuSpreadDiagnose_KeyDown);
     this.neuSpreadDiagnose.TextChanged += new System.EventHandler(this.neuSpreadDiagnose_TextChanged);
     this.neuSpreadDiagnose.LeaveCell   += new FarPoint.Win.Spread.LeaveCellEventHandler(this.neuSpreadDiagnose_LeaveCell);
     this.neuSpreadDiagnose.EditModeOff += new System.EventHandler(this.neuSpreadDiagnose_EditModeOff);
     this.neuSpreadDiagnose.EditModeOn  += new System.EventHandler(this.neuSpreadDiagnose_EditModeOn);
     this.neuSpreadDiagnose.EnterCell   += new FarPoint.Win.Spread.EnterCellEventHandler(this.neuSpreadDiagnose_EnterCell);
     //
     // neuSpreadDiagnose_Sheet1
     //
     this.neuSpreadDiagnose_Sheet1.Reset();
     neuSpreadDiagnose_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpreadDiagnose_Sheet1.ReferenceStyle           = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     neuSpreadDiagnose_Sheet1.ColumnCount                   = 10;
     neuSpreadDiagnose_Sheet1.RowCount                      = 14;
     neuSpreadDiagnose_Sheet1.RowHeader.ColumnCount         = 0;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 1).Border   = lineBorder121;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 1).Value    = "门(急)诊诊断";
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 2).CellType = numberCellType15;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 3).Border   = lineBorder122;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 4).Border   = lineBorder123;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 5).Border   = lineBorder124;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 6).Border   = lineBorder125;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 7).Border   = lineBorder126;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 8).Border   = lineBorder127;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 9).Border   = lineBorder128;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 9).CellType = textCellType7;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 1).Border   = lineBorder129;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 2).CellType = numberCellType16;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 3).Border   = lineBorder130;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 4).Border   = lineBorder131;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 5).Border   = lineBorder132;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 6).Border   = lineBorder133;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 7).Border   = lineBorder134;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 8).Border   = lineBorder135;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 9).Border   = lineBorder136;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(1, 9).CellType = textCellType8;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 1).Border   = lineBorder137;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 2).CellType = numberCellType17;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 3).Border   = lineBorder138;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 4).Border   = lineBorder139;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 5).Border   = lineBorder140;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 6).Border   = lineBorder141;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 7).Border   = lineBorder142;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 8).Border   = lineBorder143;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 9).Border   = lineBorder144;
     buttonCellType5.ButtonColor2 = System.Drawing.SystemColors.ButtonFace;
     buttonCellType5.Picture      = ((System.Drawing.Image)(resources.GetObject("buttonCellType5.Picture")));
     this.neuSpreadDiagnose_Sheet1.Cells.Get(2, 9).CellType  = buttonCellType5;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 1).Border    = lineBorder145;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 1).Value     = "主要诊断";
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 2).CellType  = numberCellType18;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 3).Border    = lineBorder146;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 4).Border    = lineBorder147;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 5).Border    = lineBorder148;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 6).Border    = lineBorder149;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 7).Border    = lineBorder150;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 8).Border    = lineBorder151;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(3, 9).Border    = lineBorder152;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 1).Border    = lineBorder153;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 1).Value     = "其他诊断";
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 2).CellType  = numberCellType19;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 3).Border    = lineBorder154;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 4).Border    = lineBorder155;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 5).Border    = lineBorder156;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 6).Border    = lineBorder157;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 7).Border    = lineBorder158;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 8).Border    = lineBorder159;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(4, 9).Border    = lineBorder160;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 1).Border    = lineBorder161;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 2).CellType  = numberCellType20;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 3).Border    = lineBorder162;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 4).Border    = lineBorder163;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 5).Border    = lineBorder164;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 6).Border    = lineBorder165;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 7).Border    = lineBorder166;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 8).Border    = lineBorder167;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(5, 9).Border    = lineBorder168;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 1).Border    = lineBorder169;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 2).CellType  = numberCellType21;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 3).Border    = lineBorder170;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 4).Border    = lineBorder171;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 5).Border    = lineBorder172;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 6).Border    = lineBorder173;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 7).Border    = lineBorder174;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 8).Border    = lineBorder175;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(6, 9).Border    = lineBorder176;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 1).Border    = lineBorder177;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 2).CellType  = numberCellType22;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 3).Border    = lineBorder178;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 4).Border    = lineBorder179;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 5).Border    = lineBorder180;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 6).Border    = lineBorder181;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 7).Border    = lineBorder182;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 8).Border    = lineBorder183;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(7, 9).Border    = lineBorder184;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 1).Border    = lineBorder185;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 2).CellType  = numberCellType23;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 3).Border    = lineBorder186;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 4).Border    = lineBorder187;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 5).Border    = lineBorder188;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 6).Border    = lineBorder189;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 7).Border    = lineBorder190;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 8).Border    = lineBorder191;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(8, 9).Border    = lineBorder192;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 1).Border    = lineBorder193;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 2).CellType  = numberCellType24;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 3).Border    = lineBorder194;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 4).Border    = lineBorder195;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 5).Border    = lineBorder196;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 6).Border    = lineBorder197;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 7).Border    = lineBorder198;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 8).Border    = lineBorder199;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(9, 9).Border    = lineBorder200;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 1).Border   = lineBorder201;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 2).CellType = numberCellType25;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 3).Border   = lineBorder202;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 4).Border   = lineBorder203;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 5).Border   = lineBorder204;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 6).Border   = lineBorder205;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 7).Border   = lineBorder206;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 8).Border   = lineBorder207;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(10, 9).Border   = lineBorder208;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 1).Border   = lineBorder209;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 2).CellType = numberCellType26;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 3).Border   = lineBorder210;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 4).Border   = lineBorder211;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 5).Border   = lineBorder212;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 6).Border   = lineBorder213;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 7).Border   = lineBorder214;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 8).Border   = lineBorder215;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 9).Border   = lineBorder216;
     buttonCellType6.ButtonColor2 = System.Drawing.SystemColors.ButtonFace;
     buttonCellType6.Picture      = ((System.Drawing.Image)(resources.GetObject("buttonCellType6.Picture")));
     this.neuSpreadDiagnose_Sheet1.Cells.Get(11, 9).CellType = buttonCellType6;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 1).Border   = lineBorder217;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 1).Value    = "损伤中毒原因";
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 2).CellType = numberCellType27;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 3).Border   = lineBorder218;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 4).Border   = lineBorder219;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 5).Border   = lineBorder220;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 6).Border   = lineBorder221;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 7).Border   = lineBorder222;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 8).Border   = lineBorder223;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 9).Border   = lineBorder224;
     buttonCellType7.ButtonColor2 = System.Drawing.SystemColors.ButtonFace;
     buttonCellType7.Picture      = ((System.Drawing.Image)(resources.GetObject("buttonCellType7.Picture")));
     this.neuSpreadDiagnose_Sheet1.Cells.Get(12, 9).CellType = buttonCellType7;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 1).Border   = lineBorder225;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 1).Value    = "病理诊断";
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 2).CellType = numberCellType28;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 3).Border   = lineBorder226;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 4).Border   = lineBorder227;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 5).Border   = lineBorder228;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 6).Border   = lineBorder229;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 7).Border   = lineBorder230;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 7).CellType = textCellType9;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 8).Border   = lineBorder231;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 8).CellType = textCellType10;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 9).Border   = lineBorder232;
     buttonCellType8.ButtonColor2 = System.Drawing.SystemColors.ButtonFace;
     buttonCellType8.Picture      = ((System.Drawing.Image)(resources.GetObject("buttonCellType8.Picture")));
     this.neuSpreadDiagnose_Sheet1.Cells.Get(13, 9).CellType         = buttonCellType8;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).Value             = "诊断类型";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).Value             = "序号";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).Value             = "出院诊断";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).Value             = "入院病情";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).Value             = "治疗效果";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).Value             = "诊断编码";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).Value             = "临床诊断";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).Value             = "临床诊断编码";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 9).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 9).Value             = "操作";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Rows.Get(0).Height     = 30F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(0).Visible              = false;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Border               = lineBorder233;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).CellType             = textCellType11;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Label                = "诊断类型";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Width                = 91F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(2).Label                = "序号";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(2).Width                = 51F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(3).Border               = lineBorder234;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(3).Label                = "出院诊断";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(3).Width                = 220F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(4).Border               = lineBorder235;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(4).Label                = "入院病情";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(4).Width                = 72F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(5).Border               = lineBorder236;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(5).Label                = "治疗效果";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(5).Width                = 68F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Border               = lineBorder237;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Label                = "诊断编码";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Width                = 70F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Border               = lineBorder238;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Label                = "临床诊断";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Width                = 243F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Border               = lineBorder239;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Label                = "临床诊断编码";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Width                = 101F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(9).Border               = lineBorder240;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(9).CellType             = textCellType12;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(9).Label                = "操作";
     this.neuSpreadDiagnose_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.neuSpreadDiagnose_Sheet1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.neuSpreadDiagnose_Sheet1.SelectionPolicy    = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
     this.neuSpreadDiagnose_Sheet1.ReferenceStyle     = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // ucDiagnose
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.neuSpreadDiagnose);
     this.Name  = "ucDiagnose";
     this.Size  = new System.Drawing.Size(983, 456);
     this.Load += new System.EventHandler(this.ucDiagnose2013_Load);
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose_Sheet1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #7
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            FarPoint.Win.BevelBorder bevelBorder1 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, false, false, true, true);
            FarPoint.Win.BevelBorder bevelBorder2 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, false, false, true, true);
            FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.LineBorder lineBorder1 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
            FarPoint.Win.LineBorder lineBorder2 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder lineBorder3 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, false, true, true);
            FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.LineBorder           lineBorder4           = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, true, true);
            FarPoint.Win.LineBorder           lineBorder5           = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, false, false);
            FarPoint.Win.Spread.TipAppearance tipAppearance1        = new FarPoint.Win.Spread.TipAppearance();
            this.neuGroupBox1      = new System.Windows.Forms.GroupBox();
            this.neuLabel5         = new System.Windows.Forms.Label();
            this.neuTextBox1       = new System.Windows.Forms.TextBox();
            this.cmbOperCode       = new NineVigor.FrameWork.WinForms.Controls.NineComboBox(this.components);
            this.neuLabel4         = new System.Windows.Forms.Label();
            this.neuLabel3         = new System.Windows.Forms.Label();
            this.cmbDept           = new NineVigor.FrameWork.WinForms.Controls.NineComboBox(this.components);
            this.dtpEndDate        = new NineVigor.FrameWork.WinForms.Controls.Common.NVDateTimePicker();
            this.ntbNM             = new System.Windows.Forms.TextBox();
            this.dtpBeginDate      = new NineVigor.FrameWork.WinForms.Controls.Common.NVDateTimePicker();
            this.neuLabel2         = new System.Windows.Forms.Label();
            this.lblDept           = new System.Windows.Forms.Label();
            this.neuLabel1         = new System.Windows.Forms.Label();
            this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.neuSpread2        = new NineVigor.FrameWork.WinForms.Controls.NineSpread();
            this.neuGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread2)).BeginInit();
            this.SuspendLayout();
            //
            // neuGroupBox1
            //
            this.neuGroupBox1.Controls.Add(this.neuLabel5);
            this.neuGroupBox1.Controls.Add(this.neuTextBox1);
            this.neuGroupBox1.Controls.Add(this.cmbOperCode);
            this.neuGroupBox1.Controls.Add(this.neuLabel4);
            this.neuGroupBox1.Controls.Add(this.neuLabel3);
            this.neuGroupBox1.Controls.Add(this.cmbDept);
            this.neuGroupBox1.Controls.Add(this.dtpEndDate);
            this.neuGroupBox1.Controls.Add(this.ntbNM);
            this.neuGroupBox1.Controls.Add(this.dtpBeginDate);
            this.neuGroupBox1.Controls.Add(this.neuLabel2);
            this.neuGroupBox1.Controls.Add(this.lblDept);
            this.neuGroupBox1.Controls.Add(this.neuLabel1);
            this.neuGroupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.neuGroupBox1.Location = new System.Drawing.Point(0, 0);
            this.neuGroupBox1.Name     = "neuGroupBox1";
            this.neuGroupBox1.Size     = new System.Drawing.Size(885, 70);

            this.neuGroupBox1.TabIndex = 6;
            this.neuGroupBox1.TabStop  = false;
            //
            // neuLabel5
            //
            this.neuLabel5.AutoSize  = true;
            this.neuLabel5.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel5.Location  = new System.Drawing.Point(446, 47);
            this.neuLabel5.Name      = "neuLabel5";
            this.neuLabel5.Size      = new System.Drawing.Size(77, 12);

            this.neuLabel5.TabIndex = 14;
            this.neuLabel5.Text     = "指定打印号:";
            this.neuLabel5.Visible  = false;
            //
            // neuTextBox1
            //

            this.neuTextBox1.Location = new System.Drawing.Point(527, 43);
            this.neuTextBox1.Name     = "neuTextBox1";
            this.neuTextBox1.Size     = new System.Drawing.Size(149, 21);

            this.neuTextBox1.TabIndex = 15;
            this.neuTextBox1.Visible  = false;
            //
            // cmbOperCode
            //
            this.cmbOperCode.ArrowBackColor     = System.Drawing.SystemColors.Control;
            this.cmbOperCode.DropDownHeight     = 424;
            this.cmbOperCode.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbOperCode.FormattingEnabled  = true;
            this.cmbOperCode.IntegralHeight     = false;
            this.cmbOperCode.IsEnter2Tab        = false;
            this.cmbOperCode.IsFlat             = false;
            this.cmbOperCode.IsLike             = true;
            this.cmbOperCode.IsListOnly         = false;
            this.cmbOperCode.IsPopForm          = true;
            this.cmbOperCode.IsShowCustomerList = false;
            this.cmbOperCode.IsShowID           = false;
            this.cmbOperCode.Location           = new System.Drawing.Point(67, 45);
            this.cmbOperCode.Name             = "cmbOperCode";
            this.cmbOperCode.PopForm          = null;
            this.cmbOperCode.ShowCustomerList = false;

            this.cmbOperCode.Size = new System.Drawing.Size(132, 20);

            this.cmbOperCode.TabIndex   = 13;
            this.cmbOperCode.Tag        = "";
            this.cmbOperCode.ToolBarUse = false;
            //
            // neuLabel4
            //
            this.neuLabel4.AutoSize  = true;
            this.neuLabel4.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel4.Location  = new System.Drawing.Point(18, 50);
            this.neuLabel4.Name      = "neuLabel4";
            this.neuLabel4.Size      = new System.Drawing.Size(47, 12);

            this.neuLabel4.TabIndex = 12;
            this.neuLabel4.Text     = "回收人:";
            //
            // neuLabel3
            //
            this.neuLabel3.AutoSize  = true;
            this.neuLabel3.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel3.Location  = new System.Drawing.Point(246, 49);
            this.neuLabel3.Name      = "neuLabel3";
            this.neuLabel3.Size      = new System.Drawing.Size(47, 12);

            this.neuLabel3.TabIndex = 10;
            this.neuLabel3.Text     = "病案号:";
            //
            // cmbDept
            //
            this.cmbDept.ArrowBackColor     = System.Drawing.SystemColors.Control;
            this.cmbDept.DropDownHeight     = 424;
            this.cmbDept.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbDept.FormattingEnabled  = true;
            this.cmbDept.IntegralHeight     = false;
            this.cmbDept.IsEnter2Tab        = false;
            this.cmbDept.IsFlat             = false;
            this.cmbDept.IsLike             = true;
            this.cmbDept.IsListOnly         = false;
            this.cmbDept.IsPopForm          = true;
            this.cmbDept.IsShowCustomerList = false;
            this.cmbDept.IsShowID           = false;
            this.cmbDept.Location           = new System.Drawing.Point(474, 17);
            this.cmbDept.Name             = "cmbDept";
            this.cmbDept.PopForm          = null;
            this.cmbDept.ShowCustomerList = false;

            this.cmbDept.Size = new System.Drawing.Size(132, 20);

            this.cmbDept.TabIndex   = 3;
            this.cmbDept.Tag        = "";
            this.cmbDept.ToolBarUse = false;
            //
            // dtpEndDate
            //
            this.dtpEndDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
            this.dtpEndDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpEndDate.IsEnter2Tab  = false;
            this.dtpEndDate.Location     = new System.Drawing.Point(265, 17);
            this.dtpEndDate.Name         = "dtpEndDate";
            this.dtpEndDate.Size         = new System.Drawing.Size(160, 21);

            this.dtpEndDate.TabIndex = 1;
            //
            // ntbNM
            //

            this.ntbNM.Location = new System.Drawing.Point(299, 44);
            this.ntbNM.Name     = "ntbNM";
            this.ntbNM.Size     = new System.Drawing.Size(126, 21);

            this.ntbNM.TabIndex = 11;
            //
            // dtpBeginDate
            //
            this.dtpBeginDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
            this.dtpBeginDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtpBeginDate.IsEnter2Tab  = false;
            this.dtpBeginDate.Location     = new System.Drawing.Point(67, 17);
            this.dtpBeginDate.Name         = "dtpBeginDate";
            this.dtpBeginDate.Size         = new System.Drawing.Size(165, 21);
            this.dtpBeginDate.TabIndex     = 1;
            //
            // neuLabel2
            //
            this.neuLabel2.AutoSize  = true;
            this.neuLabel2.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel2.Location  = new System.Drawing.Point(240, 21);
            this.neuLabel2.Name      = "neuLabel2";
            this.neuLabel2.Size      = new System.Drawing.Size(17, 12);

            this.neuLabel2.TabIndex = 0;
            this.neuLabel2.Text     = "至";
            //
            // lblDept
            //
            this.lblDept.AutoSize  = true;
            this.lblDept.ForeColor = System.Drawing.Color.Blue;
            this.lblDept.Location  = new System.Drawing.Point(437, 21);
            this.lblDept.Name      = "lblDept";
            this.lblDept.Size      = new System.Drawing.Size(35, 12);

            this.lblDept.TabIndex = 0;
            this.lblDept.Text     = "部门:";
            //
            // neuLabel1
            //
            this.neuLabel1.AutoSize  = true;
            this.neuLabel1.ForeColor = System.Drawing.Color.Blue;
            this.neuLabel1.Location  = new System.Drawing.Point(6, 22);
            this.neuLabel1.Name      = "neuLabel1";
            this.neuLabel1.Size      = new System.Drawing.Size(59, 12);

            this.neuLabel1.TabIndex = 0;
            this.neuLabel1.Text     = "回收日期:";
            //
            // neuSpread1_Sheet1
            //
            this.neuSpread1_Sheet1.Reset();
            this.neuSpread1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.neuSpread1_Sheet1.ReferenceStyle        = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.neuSpread1_Sheet1.ColumnCount           = 10;
            this.neuSpread1_Sheet1.ColumnHeader.RowCount = 3;
            this.neuSpread1_Sheet1.RowCount = 5;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).BackColor           = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Border              = bevelBorder1;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).ColumnSpan          = 10;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Font                = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value               = "病案回收查询打印";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).BackColor           = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).Border              = bevelBorder2;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).CellType            = textCellType1;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).ColumnSpan          = 10;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).ForeColor           = System.Drawing.Color.Black;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Border              = lineBorder1;
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Value               = "科室名称";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 1).Value               = "病案号";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).Value               = "住院次数";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 3).Value               = "患者姓名";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 4).Value               = "回收时间";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 5).Value               = "回收人";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 6).Value               = "入院日期";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 7).Value               = "出院日期";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 8).Value               = "出院日期";
            this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(2, 9).Value               = "上架号";
            this.neuSpread1_Sheet1.ColumnHeader.Columns.Default.VisualStyles        = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor              = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Border       = lineBorder2;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height        = 50F;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(1).Height        = 30F;
            this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(2).Height        = 30F;
            this.neuSpread1_Sheet1.Columns.Get(0).Border = lineBorder3;
            this.neuSpread1_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General;
            this.neuSpread1_Sheet1.Columns.Get(0).Label               = "科室名称";
            this.neuSpread1_Sheet1.Columns.Get(0).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.neuSpread1_Sheet1.Columns.Get(0).Width               = 176F;
            this.neuSpread1_Sheet1.Columns.Get(1).CellType            = textCellType2;
            this.neuSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.neuSpread1_Sheet1.Columns.Get(1).Label               = "病案号";
            this.neuSpread1_Sheet1.Columns.Get(1).Width               = 99F;
            this.neuSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(2).Label               = "住院次数";
            this.neuSpread1_Sheet1.Columns.Get(2).Width               = 42F;
            this.neuSpread1_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(3).Label               = "患者姓名";
            this.neuSpread1_Sheet1.Columns.Get(3).Width               = 81F;
            this.neuSpread1_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.neuSpread1_Sheet1.Columns.Get(4).Label               = "回收时间";
            this.neuSpread1_Sheet1.Columns.Get(4).Width               = 148F;
            this.neuSpread1_Sheet1.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(5).Label               = "回收人";
            this.neuSpread1_Sheet1.Columns.Get(5).Width               = 84F;
            this.neuSpread1_Sheet1.Columns.Get(6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(6).Label               = "入院日期";
            this.neuSpread1_Sheet1.Columns.Get(6).Width               = 95F;
            this.neuSpread1_Sheet1.Columns.Get(7).Label               = "出院日期";
            this.neuSpread1_Sheet1.Columns.Get(7).Width               = 104F;
            this.neuSpread1_Sheet1.Columns.Get(8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.neuSpread1_Sheet1.Columns.Get(8).Label               = "出院日期";
            this.neuSpread1_Sheet1.Columns.Get(8).Visible             = false;
            this.neuSpread1_Sheet1.Columns.Get(8).Width               = 95F;
            this.neuSpread1_Sheet1.Columns.Get(9).Label               = "上架号";
            this.neuSpread1_Sheet1.Columns.Get(9).Locked              = true;
            this.neuSpread1_Sheet1.Columns.Get(9).Width               = 188F;
            this.neuSpread1_Sheet1.DataAutoCellTypes   = false;
            this.neuSpread1_Sheet1.DataAutoSizeColumns = false;
            this.neuSpread1_Sheet1.DefaultStyle.Border = lineBorder4;
            this.neuSpread1_Sheet1.DefaultStyle.Font   = new System.Drawing.Font("宋体", 10F);
            this.neuSpread1_Sheet1.DefaultStyle.Parent = "DataAreaDefault";
            this.neuSpread1_Sheet1.GrayAreaBackColor   = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.RowHeader.AutoText  = FarPoint.Win.Spread.HeaderAutoText.Blank;
            this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable    = true;
            this.neuSpread1_Sheet1.RowHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.RowHeader.Columns.Get(0).Width         = 21F;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.BackColor       = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Parent          = "RowHeaderDefault";
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.VisualStyles    = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.RowHeader.Rows.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.RowHeader.Visible             = false;
            this.neuSpread1_Sheet1.Rows.Default.Height           = 25F;
            this.neuSpread1_Sheet1.SelectionUnit                 = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.neuSpread1_Sheet1.SheetCornerHorizontalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.neuSpread1_Sheet1.SheetCornerStyle.BackColor    = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.SheetCornerStyle.Border       = lineBorder5;
            this.neuSpread1_Sheet1.SheetCornerStyle.Parent       = "CornerDefault";
            this.neuSpread1_Sheet1.SheetCornerStyle.VisualStyles = FarPoint.Win.VisualStyles.On;
            this.neuSpread1_Sheet1.SheetCornerVerticalGridLine   = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.neuSpread1_Sheet1.ReferenceStyle                = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // neuSpread2
            //
            this.neuSpread2.About = "3.0.2004.2005";
            this.neuSpread2.AccessibleDescription = "neuSpread2, Sheet1, Row 0, Column 0, ";
            this.neuSpread2.BackColor             = System.Drawing.Color.White;
            this.neuSpread2.BorderStyle           = System.Windows.Forms.BorderStyle.None;
            this.neuSpread2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuSpread2.FileName = "";
            this.neuSpread2.Font     = new System.Drawing.Font("宋体", 10F);
            this.neuSpread2.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.neuSpread2.IsAutoSaveGridStatus      = false;
            this.neuSpread2.IsCanCustomConfigColumn   = false;
            this.neuSpread2.IsShowExport    = true;
            this.neuSpread2.IsShowMenuStrip = true;
            this.neuSpread2.Location        = new System.Drawing.Point(0, 70);
            this.neuSpread2.Name            = "neuSpread2";
            this.neuSpread2.RightToLeft     = System.Windows.Forms.RightToLeft.No;
            this.neuSpread2.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.neuSpread1_Sheet1
            });
            this.neuSpread2.Size = new System.Drawing.Size(885, 503);

            this.neuSpread2.TabIndex                = 9;
            tipAppearance1.BackColor                = System.Drawing.SystemColors.Info;
            tipAppearance1.Font                     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance1.ForeColor                = System.Drawing.SystemColors.InfoText;
            this.neuSpread2.TextTipAppearance       = tipAppearance1;
            this.neuSpread2.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            //
            // ucMetCasReCallPrintWithNo
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.neuSpread2);
            this.Controls.Add(this.neuGroupBox1);
            this.Name = "ucMetCasReCallPrintWithNo";
            this.Size = new System.Drawing.Size(885, 573);
            this.neuGroupBox1.ResumeLayout(false);
            this.neuGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread2)).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();
     FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
     FarPoint.Win.LineBorder           lineBorder1    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder           lineBorder2    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, true, true);
     FarPoint.Win.LineBorder           lineBorder3    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, false, true, true);
     this.neuGroupBox1      = new Neusoft.FrameWork.WinForms.Controls.NeuGroupBox();
     this.neuLabel4         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.ntbPatientID      = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
     this.cmbDept           = new Neusoft.FrameWork.WinForms.Controls.NeuComboBox(this.components);
     this.dtpEndDate        = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
     this.dtpBeginDate      = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
     this.neuLabel2         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblDept           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel1         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuPanel1         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.neuSpread1        = new Neusoft.FrameWork.WinForms.Controls.NeuSpread();
     this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.neuPanel2         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.lbTitle           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lbTitle1          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuGroupBox1.SuspendLayout();
     this.neuPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
     this.neuPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // neuGroupBox1
     //
     this.neuGroupBox1.Controls.Add(this.neuLabel4);
     this.neuGroupBox1.Controls.Add(this.ntbPatientID);
     this.neuGroupBox1.Controls.Add(this.cmbDept);
     this.neuGroupBox1.Controls.Add(this.dtpEndDate);
     this.neuGroupBox1.Controls.Add(this.dtpBeginDate);
     this.neuGroupBox1.Controls.Add(this.neuLabel2);
     this.neuGroupBox1.Controls.Add(this.lblDept);
     this.neuGroupBox1.Controls.Add(this.neuLabel1);
     this.neuGroupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.neuGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.neuGroupBox1.Name     = "neuGroupBox1";
     this.neuGroupBox1.Size     = new System.Drawing.Size(546, 51);
     this.neuGroupBox1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuGroupBox1.TabIndex = 5;
     this.neuGroupBox1.TabStop  = false;
     //
     // neuLabel4
     //
     this.neuLabel4.AutoSize  = true;
     this.neuLabel4.ForeColor = System.Drawing.Color.Blue;
     this.neuLabel4.Location  = new System.Drawing.Point(482, 19);
     this.neuLabel4.Name      = "neuLabel4";
     this.neuLabel4.Size      = new System.Drawing.Size(47, 12);
     this.neuLabel4.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel4.TabIndex  = 8;
     this.neuLabel4.Text      = "住院号:";
     //
     // ntbPatientID
     //
     this.ntbPatientID.IsEnter2Tab  = false;
     this.ntbPatientID.Location     = new System.Drawing.Point(531, 15);
     this.ntbPatientID.Name         = "ntbPatientID";
     this.ntbPatientID.Size         = new System.Drawing.Size(100, 21);
     this.ntbPatientID.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.ntbPatientID.TabIndex     = 9;
     this.ntbPatientID.TextChanged += new System.EventHandler(this.ntbPatientID_TextChanged);
     //
     // cmbDept
     //
     this.cmbDept.ArrowBackColor     = System.Drawing.SystemColors.Control;
     this.cmbDept.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbDept.FormattingEnabled  = true;
     this.cmbDept.IsEnter2Tab        = false;
     this.cmbDept.IsFlat             = false;
     this.cmbDept.IsLike             = true;
     this.cmbDept.IsListOnly         = false;
     this.cmbDept.IsPopForm          = true;
     this.cmbDept.IsShowCustomerList = false;
     this.cmbDept.IsShowID           = false;
     this.cmbDept.Location           = new System.Drawing.Point(340, 15);
     this.cmbDept.Name             = "cmbDept";
     this.cmbDept.PopForm          = null;
     this.cmbDept.ShowCustomerList = false;
     this.cmbDept.ShowID           = false;
     this.cmbDept.Size             = new System.Drawing.Size(132, 20);
     this.cmbDept.Style            = Neusoft.FrameWork.WinForms.Controls.StyleType.Flat;
     this.cmbDept.TabIndex         = 3;
     this.cmbDept.Tag        = "";
     this.cmbDept.ToolBarUse = false;
     //
     // dtpEndDate
     //
     this.dtpEndDate.Format      = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpEndDate.IsEnter2Tab = false;
     this.dtpEndDate.Location    = new System.Drawing.Point(193, 14);
     this.dtpEndDate.Name        = "dtpEndDate";
     this.dtpEndDate.Size        = new System.Drawing.Size(97, 21);
     this.dtpEndDate.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.dtpEndDate.TabIndex    = 1;
     //
     // dtpBeginDate
     //
     this.dtpBeginDate.Format      = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpBeginDate.IsEnter2Tab = false;
     this.dtpBeginDate.Location    = new System.Drawing.Point(67, 14);
     this.dtpBeginDate.Name        = "dtpBeginDate";
     this.dtpBeginDate.Size        = new System.Drawing.Size(97, 21);
     this.dtpBeginDate.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.dtpBeginDate.TabIndex    = 1;
     //
     // neuLabel2
     //
     this.neuLabel2.AutoSize  = true;
     this.neuLabel2.ForeColor = System.Drawing.Color.Blue;
     this.neuLabel2.Location  = new System.Drawing.Point(170, 18);
     this.neuLabel2.Name      = "neuLabel2";
     this.neuLabel2.Size      = new System.Drawing.Size(17, 12);
     this.neuLabel2.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel2.TabIndex  = 0;
     this.neuLabel2.Text      = "至";
     //
     // lblDept
     //
     this.lblDept.AutoSize  = true;
     this.lblDept.ForeColor = System.Drawing.Color.Blue;
     this.lblDept.Location  = new System.Drawing.Point(304, 19);
     this.lblDept.Name      = "lblDept";
     this.lblDept.Size      = new System.Drawing.Size(35, 12);
     this.lblDept.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblDept.TabIndex  = 0;
     this.lblDept.Text      = "科室:";
     //
     // neuLabel1
     //
     this.neuLabel1.AutoSize  = true;
     this.neuLabel1.ForeColor = System.Drawing.Color.Blue;
     this.neuLabel1.Location  = new System.Drawing.Point(6, 18);
     this.neuLabel1.Name      = "neuLabel1";
     this.neuLabel1.Size      = new System.Drawing.Size(59, 12);
     this.neuLabel1.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel1.TabIndex  = 0;
     this.neuLabel1.Text      = "统计日期:";
     //
     // neuPanel1
     //
     this.neuPanel1.BackColor = System.Drawing.Color.White;
     this.neuPanel1.Controls.Add(this.neuSpread1);
     this.neuPanel1.Controls.Add(this.neuPanel2);
     this.neuPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.neuPanel1.Location = new System.Drawing.Point(0, 51);
     this.neuPanel1.Name     = "neuPanel1";
     this.neuPanel1.Size     = new System.Drawing.Size(546, 367);
     this.neuPanel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuPanel1.TabIndex = 6;
     //
     // neuSpread1
     //
     this.neuSpread1.About = "3.0.2004.2005";
     this.neuSpread1.AccessibleDescription = "neuSpread1, Sheet1, Row 0, Column 0, ";
     this.neuSpread1.BackColor             = System.Drawing.Color.White;
     this.neuSpread1.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.neuSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.neuSpread1.FileName = "";
     this.neuSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.neuSpread1.IsAutoSaveGridStatus      = false;
     this.neuSpread1.IsCanCustomConfigColumn   = false;
     this.neuSpread1.Location    = new System.Drawing.Point(0, 67);
     this.neuSpread1.Name        = "neuSpread1";
     this.neuSpread1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.neuSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.neuSpread1_Sheet1
     });
     this.neuSpread1.Size                    = new System.Drawing.Size(546, 300);
     this.neuSpread1.Style                   = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuSpread1.TabIndex                = 2;
     tipAppearance1.BackColor                = System.Drawing.SystemColors.Info;
     tipAppearance1.Font                     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     tipAppearance1.ForeColor                = System.Drawing.SystemColors.InfoText;
     this.neuSpread1.TextTipAppearance       = tipAppearance1;
     this.neuSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.neuSpread1.CellClick              += new FarPoint.Win.Spread.CellClickEventHandler(this.neuSpread1_CellClick);
     //
     // neuSpread1_Sheet1
     //
     this.neuSpread1_Sheet1.Reset();
     this.neuSpread1_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.neuSpread1_Sheet1.ColumnCount    = 10;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value        = "科室";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value        = "住院号";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value        = "姓名";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value        = "性别";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value        = "年龄";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value        = "入院时间";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value        = "出院时间";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value        = "住院天数";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Value        = "出院诊断编码";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Value        = "出院诊断";
     this.neuSpread1_Sheet1.ColumnHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor       = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Border          = lineBorder1;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent          = "HeaderDefault";
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.VisualStyles    = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.ColumnHeader.Rows.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height           = 34F;
     this.neuSpread1_Sheet1.Columns.Get(0).Label = "科室";
     this.neuSpread1_Sheet1.Columns.Get(0).Width = 119F;
     this.neuSpread1_Sheet1.Columns.Get(1).Label = "住院号";
     this.neuSpread1_Sheet1.Columns.Get(1).Width = 75F;
     this.neuSpread1_Sheet1.Columns.Get(2).Label = "姓名";
     this.neuSpread1_Sheet1.Columns.Get(2).Width = 62F;
     this.neuSpread1_Sheet1.Columns.Get(3).Label = "性别";
     this.neuSpread1_Sheet1.Columns.Get(3).Width = 42F;
     this.neuSpread1_Sheet1.Columns.Get(4).Label = "年龄";
     this.neuSpread1_Sheet1.Columns.Get(4).Width = 69F;
     this.neuSpread1_Sheet1.Columns.Get(5).Label = "入院时间";
     this.neuSpread1_Sheet1.Columns.Get(5).Width = 83F;
     this.neuSpread1_Sheet1.Columns.Get(6).Label = "出院时间";
     this.neuSpread1_Sheet1.Columns.Get(6).Width = 77F;
     this.neuSpread1_Sheet1.Columns.Get(7).Label = "住院天数";
     this.neuSpread1_Sheet1.Columns.Get(7).Width = 40F;
     this.neuSpread1_Sheet1.Columns.Get(8).Label = "出院诊断编码";
     this.neuSpread1_Sheet1.Columns.Get(8).Width = 62F;
     this.neuSpread1_Sheet1.Columns.Get(9).Label = "出院诊断";
     this.neuSpread1_Sheet1.Columns.Get(9).Width = 143F;
     this.neuSpread1_Sheet1.DataAutoCellTypes    = false;
     this.neuSpread1_Sheet1.DataAutoSizeColumns  = false;
     this.neuSpread1_Sheet1.DefaultStyle.Border  = lineBorder2;
     this.neuSpread1_Sheet1.DefaultStyle.Parent  = "DataAreaDefault";
     this.neuSpread1_Sheet1.GrayAreaBackColor    = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.OperationMode        = FarPoint.Win.Spread.OperationMode.ReadOnly;
     this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable    = false;
     this.neuSpread1_Sheet1.RowHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.BackColor       = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Border          = lineBorder3;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Parent          = "RowHeaderDefault";
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.VisualStyles    = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.RowHeader.Rows.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.RowHeader.Visible             = false;
     this.neuSpread1_Sheet1.SheetCornerStyle.BackColor    = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.SheetCornerStyle.Parent       = "CornerDefault";
     this.neuSpread1_Sheet1.SheetCornerStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // neuPanel2
     //
     this.neuPanel2.Controls.Add(this.lbTitle1);
     this.neuPanel2.Controls.Add(this.lbTitle);
     this.neuPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.neuPanel2.Location = new System.Drawing.Point(0, 0);
     this.neuPanel2.Name     = "neuPanel2";
     this.neuPanel2.Size     = new System.Drawing.Size(546, 67);
     this.neuPanel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuPanel2.TabIndex = 1;
     //
     // lbTitle
     //
     this.lbTitle.Font     = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbTitle.Location = new System.Drawing.Point(249, 15);
     this.lbTitle.Name     = "lbTitle";
     this.lbTitle.Size     = new System.Drawing.Size(148, 16);
     this.lbTitle.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lbTitle.TabIndex = 0;
     this.lbTitle.Text     = "出院患者信息查询";
     //
     // lbTitle1
     //
     this.lbTitle1.AutoSize = true;
     this.lbTitle1.Location = new System.Drawing.Point(7, 48);
     this.lbTitle1.Name     = "lbTitle1";
     this.lbTitle1.Size     = new System.Drawing.Size(65, 12);
     this.lbTitle1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lbTitle1.TabIndex = 1;
     this.lbTitle1.Text     = "查询时间:";
     //
     // ucFinIprOutpatientInfo2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.neuPanel1);
     this.Controls.Add(this.neuGroupBox1);
     this.Name = "ucFinIprOutpatientInfo2";
     this.Size = new System.Drawing.Size(546, 418);
     this.neuGroupBox1.ResumeLayout(false);
     this.neuGroupBox1.PerformLayout();
     this.neuPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
     this.neuPanel2.ResumeLayout(false);
     this.neuPanel2.PerformLayout();
     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()
 {
     FarPoint.Win.Spread.TipAppearance         tipAppearance9 = new FarPoint.Win.Spread.TipAppearance();
     FarPoint.Win.LineBorder                   lineBorder33   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, false, true);
     FarPoint.Win.LineBorder                   lineBorder34   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, false, true);
     FarPoint.Win.LineBorder                   lineBorder35   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, true, false, true);
     FarPoint.Win.LineBorder                   lineBorder36   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.Spread.CellType.TextCellType textCellType9  = new FarPoint.Win.Spread.CellType.TextCellType();
     this.neuPanel1         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.neuLabel21        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel20        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel19        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel18        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel1         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblDoctor         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel2         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblPrintNo        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblAge            = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblSex            = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblOrderNo        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblPage           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblName           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblDept           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblTitle          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuPanel2         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
     this.neuLabel23        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblOperDate       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblOper           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel22        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel4         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel6         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel10        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel9         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel8         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel7         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel5         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel17        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel16        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel15        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel12        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel13        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel14        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel11        = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuLabel3         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuSpread1        = new Neusoft.FrameWork.WinForms.Controls.NeuSpread();
     this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.neuPanel1.SuspendLayout();
     this.neuPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
     this.SuspendLayout();
     //
     // neuPanel1
     //
     this.neuPanel1.Controls.Add(this.neuLabel21);
     this.neuPanel1.Controls.Add(this.neuLabel20);
     this.neuPanel1.Controls.Add(this.neuLabel19);
     this.neuPanel1.Controls.Add(this.neuLabel18);
     this.neuPanel1.Controls.Add(this.neuLabel1);
     this.neuPanel1.Controls.Add(this.lblDoctor);
     this.neuPanel1.Controls.Add(this.neuLabel2);
     this.neuPanel1.Controls.Add(this.lblPrintNo);
     this.neuPanel1.Controls.Add(this.lblAge);
     this.neuPanel1.Controls.Add(this.lblSex);
     this.neuPanel1.Controls.Add(this.lblOrderNo);
     this.neuPanel1.Controls.Add(this.lblPage);
     this.neuPanel1.Controls.Add(this.lblName);
     this.neuPanel1.Controls.Add(this.lblDept);
     this.neuPanel1.Controls.Add(this.lblTitle);
     this.neuPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.neuPanel1.Location = new System.Drawing.Point(0, 0);
     this.neuPanel1.Name     = "neuPanel1";
     this.neuPanel1.Size     = new System.Drawing.Size(248, 96);
     this.neuPanel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuPanel1.TabIndex = 0;
     //
     // neuLabel21
     //
     this.neuLabel21.AutoSize = true;
     this.neuLabel21.Location = new System.Drawing.Point(132, 76);
     this.neuLabel21.Name     = "neuLabel21";
     this.neuLabel21.Size     = new System.Drawing.Size(41, 12);
     this.neuLabel21.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel21.TabIndex = 6;
     this.neuLabel21.Text     = "医生:";
     //
     // neuLabel20
     //
     this.neuLabel20.AutoSize = true;
     this.neuLabel20.Location = new System.Drawing.Point(140, 56);
     this.neuLabel20.Name     = "neuLabel20";
     this.neuLabel20.Size     = new System.Drawing.Size(41, 12);
     this.neuLabel20.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel20.TabIndex = 5;
     this.neuLabel20.Text     = "年龄:";
     //
     // neuLabel19
     //
     this.neuLabel19.AutoSize = true;
     this.neuLabel19.Location = new System.Drawing.Point(78, 56);
     this.neuLabel19.Name     = "neuLabel19";
     this.neuLabel19.Size     = new System.Drawing.Size(41, 12);
     this.neuLabel19.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel19.TabIndex = 4;
     this.neuLabel19.Text     = "性别:";
     //
     // neuLabel18
     //
     this.neuLabel18.AutoSize = true;
     this.neuLabel18.Location = new System.Drawing.Point(7, 56);
     this.neuLabel18.Name     = "neuLabel18";
     this.neuLabel18.Size     = new System.Drawing.Size(53, 12);
     this.neuLabel18.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel18.TabIndex = 3;
     this.neuLabel18.Text     = "顺序号:";
     //
     // neuLabel1
     //
     this.neuLabel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.neuLabel1.Location    = new System.Drawing.Point(3, 49);
     this.neuLabel1.Name        = "neuLabel1";
     this.neuLabel1.Size        = new System.Drawing.Size(298, 1);
     this.neuLabel1.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel1.TabIndex    = 2;
     this.neuLabel1.Text        = "neuLabel1";
     //
     // lblDoctor
     //
     this.lblDoctor.AutoSize = true;
     this.lblDoctor.Location = new System.Drawing.Point(168, 76);
     this.lblDoctor.Name     = "lblDoctor";
     this.lblDoctor.Size     = new System.Drawing.Size(53, 12);
     this.lblDoctor.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblDoctor.TabIndex = 1;
     this.lblDoctor.Text     = "开方医生";
     //
     // neuLabel2
     //
     this.neuLabel2.AutoSize = true;
     this.neuLabel2.Location = new System.Drawing.Point(55, 76);
     this.neuLabel2.Name     = "neuLabel2";
     this.neuLabel2.Size     = new System.Drawing.Size(17, 12);
     this.neuLabel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel2.TabIndex = 1;
     this.neuLabel2.Text     = "№";
     //
     // lblPrintNo
     //
     this.lblPrintNo.AutoSize = true;
     this.lblPrintNo.Location = new System.Drawing.Point(69, 76);
     this.lblPrintNo.Name     = "lblPrintNo";
     this.lblPrintNo.Size     = new System.Drawing.Size(41, 12);
     this.lblPrintNo.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblPrintNo.TabIndex = 1;
     this.lblPrintNo.Text     = "流水号";
     //
     // lblAge
     //
     this.lblAge.AutoSize = true;
     this.lblAge.Location = new System.Drawing.Point(177, 56);
     this.lblAge.Name     = "lblAge";
     this.lblAge.Size     = new System.Drawing.Size(29, 12);
     this.lblAge.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblAge.TabIndex = 1;
     this.lblAge.Text     = "年龄";
     //
     // lblSex
     //
     this.lblSex.AutoSize = true;
     this.lblSex.Location = new System.Drawing.Point(115, 56);
     this.lblSex.Name     = "lblSex";
     this.lblSex.Size     = new System.Drawing.Size(17, 12);
     this.lblSex.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblSex.TabIndex = 1;
     this.lblSex.Text     = "男";
     //
     // lblOrderNo
     //
     this.lblOrderNo.AutoSize = true;
     this.lblOrderNo.Location = new System.Drawing.Point(53, 56);
     this.lblOrderNo.Name     = "lblOrderNo";
     this.lblOrderNo.Size     = new System.Drawing.Size(41, 12);
     this.lblOrderNo.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblOrderNo.TabIndex = 1;
     this.lblOrderNo.Text     = "顺序号";
     //
     // lblPage
     //
     this.lblPage.AutoSize = true;
     this.lblPage.Location = new System.Drawing.Point(169, 34);
     this.lblPage.Name     = "lblPage";
     this.lblPage.Size     = new System.Drawing.Size(47, 12);
     this.lblPage.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblPage.TabIndex = 1;
     this.lblPage.Text     = "1/共1贴";
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     this.lblName.Font     = new System.Drawing.Font("新宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblName.Location = new System.Drawing.Point(3, 73);
     this.lblName.Name     = "lblName";
     this.lblName.Size     = new System.Drawing.Size(42, 16);
     this.lblName.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblName.TabIndex = 0;
     this.lblName.Text     = "姓名";
     //
     // lblDept
     //
     this.lblDept.AutoSize = true;
     this.lblDept.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDept.Location = new System.Drawing.Point(28, 27);
     this.lblDept.Name     = "lblDept";
     this.lblDept.Size     = new System.Drawing.Size(38, 17);
     this.lblDept.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblDept.TabIndex = 0;
     this.lblDept.Text     = "科室";
     //
     // lblTitle
     //
     this.lblTitle.Font      = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblTitle.Location  = new System.Drawing.Point(6, 0);
     this.lblTitle.Name      = "lblTitle";
     this.lblTitle.Size      = new System.Drawing.Size(193, 27);
     this.lblTitle.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblTitle.TabIndex  = 0;
     this.lblTitle.Text      = "郑州大学第一附属医院输液卡";
     this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTitle.Click    += new System.EventHandler(this.lblTitle_Click);
     //
     // neuPanel2
     //
     this.neuPanel2.Controls.Add(this.neuLabel23);
     this.neuPanel2.Controls.Add(this.lblOperDate);
     this.neuPanel2.Controls.Add(this.lblOper);
     this.neuPanel2.Controls.Add(this.neuLabel22);
     this.neuPanel2.Controls.Add(this.neuLabel4);
     this.neuPanel2.Controls.Add(this.neuLabel6);
     this.neuPanel2.Controls.Add(this.neuLabel10);
     this.neuPanel2.Controls.Add(this.neuLabel9);
     this.neuPanel2.Controls.Add(this.neuLabel8);
     this.neuPanel2.Controls.Add(this.neuLabel7);
     this.neuPanel2.Controls.Add(this.neuLabel5);
     this.neuPanel2.Controls.Add(this.neuLabel17);
     this.neuPanel2.Controls.Add(this.neuLabel16);
     this.neuPanel2.Controls.Add(this.neuLabel15);
     this.neuPanel2.Controls.Add(this.neuLabel12);
     this.neuPanel2.Controls.Add(this.neuLabel13);
     this.neuPanel2.Controls.Add(this.neuLabel14);
     this.neuPanel2.Controls.Add(this.neuLabel11);
     this.neuPanel2.Controls.Add(this.neuLabel3);
     this.neuPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.neuPanel2.Location = new System.Drawing.Point(0, 267);
     this.neuPanel2.Name     = "neuPanel2";
     this.neuPanel2.Size     = new System.Drawing.Size(248, 43);
     this.neuPanel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuPanel2.TabIndex = 1;
     //
     // neuLabel23
     //
     this.neuLabel23.AutoSize = true;
     this.neuLabel23.Location = new System.Drawing.Point(93, 8);
     this.neuLabel23.Name     = "neuLabel23";
     this.neuLabel23.Size     = new System.Drawing.Size(65, 12);
     this.neuLabel23.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel23.TabIndex = 5;
     this.neuLabel23.Text     = "配液时间:";
     //
     // lblOperDate
     //
     this.lblOperDate.AutoSize = true;
     this.lblOperDate.Location = new System.Drawing.Point(154, 8);
     this.lblOperDate.Name     = "lblOperDate";
     this.lblOperDate.Size     = new System.Drawing.Size(53, 12);
     this.lblOperDate.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblOperDate.TabIndex = 4;
     this.lblOperDate.Text     = "配液时间";
     //
     // lblOper
     //
     this.lblOper.AutoSize = true;
     this.lblOper.Location = new System.Drawing.Point(54, 8);
     this.lblOper.Name     = "lblOper";
     this.lblOper.Size     = new System.Drawing.Size(41, 12);
     this.lblOper.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.lblOper.TabIndex = 3;
     this.lblOper.Text     = "配液人";
     //
     // neuLabel22
     //
     this.neuLabel22.AutoSize = true;
     this.neuLabel22.Location = new System.Drawing.Point(7, 8);
     this.neuLabel22.Name     = "neuLabel22";
     this.neuLabel22.Size     = new System.Drawing.Size(53, 12);
     this.neuLabel22.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel22.TabIndex = 2;
     this.neuLabel22.Text     = "配液人:";
     //
     // neuLabel4
     //
     this.neuLabel4.AutoSize = true;
     this.neuLabel4.Location = new System.Drawing.Point(97, 13);
     this.neuLabel4.Name     = "neuLabel4";
     this.neuLabel4.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel4.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel4.TabIndex = 1;
     this.neuLabel4.Text     = "辅助";
     this.neuLabel4.Visible  = false;
     //
     // neuLabel6
     //
     this.neuLabel6.AutoSize = true;
     this.neuLabel6.Location = new System.Drawing.Point(97, 31);
     this.neuLabel6.Name     = "neuLabel6";
     this.neuLabel6.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel6.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel6.TabIndex = 1;
     this.neuLabel6.Text     = "时间";
     this.neuLabel6.Visible  = false;
     //
     // neuLabel10
     //
     this.neuLabel10.AutoSize = true;
     this.neuLabel10.Location = new System.Drawing.Point(260, 58);
     this.neuLabel10.Name     = "neuLabel10";
     this.neuLabel10.Size     = new System.Drawing.Size(23, 12);
     this.neuLabel10.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel10.TabIndex = 1;
     this.neuLabel10.Text     = "/分";
     this.neuLabel10.Visible  = false;
     //
     // neuLabel9
     //
     this.neuLabel9.AutoSize = true;
     this.neuLabel9.Location = new System.Drawing.Point(177, 58);
     this.neuLabel9.Name     = "neuLabel9";
     this.neuLabel9.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel9.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel9.TabIndex = 1;
     this.neuLabel9.Text     = "滴速";
     this.neuLabel9.Visible  = false;
     //
     // neuLabel8
     //
     this.neuLabel8.AutoSize = true;
     this.neuLabel8.Location = new System.Drawing.Point(97, 58);
     this.neuLabel8.Name     = "neuLabel8";
     this.neuLabel8.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel8.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel8.TabIndex = 1;
     this.neuLabel8.Text     = "时间";
     this.neuLabel8.Visible  = false;
     //
     // neuLabel7
     //
     this.neuLabel7.AutoSize = true;
     this.neuLabel7.Location = new System.Drawing.Point(14, 58);
     this.neuLabel7.Name     = "neuLabel7";
     this.neuLabel7.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel7.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel7.TabIndex = 1;
     this.neuLabel7.Text     = "执行";
     this.neuLabel7.Visible  = false;
     //
     // neuLabel5
     //
     this.neuLabel5.AutoSize = true;
     this.neuLabel5.Location = new System.Drawing.Point(14, 31);
     this.neuLabel5.Name     = "neuLabel5";
     this.neuLabel5.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel5.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel5.TabIndex = 1;
     this.neuLabel5.Text     = "配置";
     this.neuLabel5.Visible  = false;
     //
     // neuLabel17
     //
     this.neuLabel17.AutoSize = true;
     this.neuLabel17.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel17.Location = new System.Drawing.Point(207, 58);
     this.neuLabel17.Name     = "neuLabel17";
     this.neuLabel17.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel17.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel17.TabIndex = 1;
     this.neuLabel17.Text     = "_______";
     this.neuLabel17.Visible  = false;
     //
     // neuLabel16
     //
     this.neuLabel16.AutoSize = true;
     this.neuLabel16.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel16.Location = new System.Drawing.Point(132, 58);
     this.neuLabel16.Name     = "neuLabel16";
     this.neuLabel16.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel16.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel16.TabIndex = 1;
     this.neuLabel16.Text     = "_______";
     this.neuLabel16.Visible  = false;
     //
     // neuLabel15
     //
     this.neuLabel15.AutoSize = true;
     this.neuLabel15.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel15.Location = new System.Drawing.Point(132, 31);
     this.neuLabel15.Name     = "neuLabel15";
     this.neuLabel15.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel15.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel15.TabIndex = 1;
     this.neuLabel15.Text     = "_______";
     this.neuLabel15.Visible  = false;
     //
     // neuLabel12
     //
     this.neuLabel12.AutoSize = true;
     this.neuLabel12.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel12.Location = new System.Drawing.Point(132, 13);
     this.neuLabel12.Name     = "neuLabel12";
     this.neuLabel12.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel12.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel12.TabIndex = 1;
     this.neuLabel12.Text     = "_______";
     this.neuLabel12.Visible  = false;
     //
     // neuLabel13
     //
     this.neuLabel13.AutoSize = true;
     this.neuLabel13.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel13.Location = new System.Drawing.Point(45, 31);
     this.neuLabel13.Name     = "neuLabel13";
     this.neuLabel13.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel13.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel13.TabIndex = 1;
     this.neuLabel13.Text     = "_______";
     this.neuLabel13.Visible  = false;
     //
     // neuLabel14
     //
     this.neuLabel14.AutoSize = true;
     this.neuLabel14.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel14.Location = new System.Drawing.Point(44, 58);
     this.neuLabel14.Name     = "neuLabel14";
     this.neuLabel14.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel14.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel14.TabIndex = 1;
     this.neuLabel14.Text     = "_______";
     this.neuLabel14.Visible  = false;
     //
     // neuLabel11
     //
     this.neuLabel11.AutoSize = true;
     this.neuLabel11.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel11.Location = new System.Drawing.Point(45, 13);
     this.neuLabel11.Name     = "neuLabel11";
     this.neuLabel11.Size     = new System.Drawing.Size(47, 12);
     this.neuLabel11.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel11.TabIndex = 1;
     this.neuLabel11.Text     = "_______";
     this.neuLabel11.Visible  = false;
     //
     // neuLabel3
     //
     this.neuLabel3.AutoSize = true;
     this.neuLabel3.Location = new System.Drawing.Point(14, 13);
     this.neuLabel3.Name     = "neuLabel3";
     this.neuLabel3.Size     = new System.Drawing.Size(29, 12);
     this.neuLabel3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel3.TabIndex = 1;
     this.neuLabel3.Text     = "审方";
     this.neuLabel3.Visible  = false;
     //
     // neuSpread1
     //
     this.neuSpread1.About = "3.0.2004.2005";
     this.neuSpread1.AccessibleDescription = "neuSpread1, Sheet1, Row 0, Column 0, ";
     this.neuSpread1.BackColor             = System.Drawing.Color.White;
     this.neuSpread1.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.neuSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.neuSpread1.FileName = "";
     this.neuSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.Never;
     this.neuSpread1.IsAutoSaveGridStatus      = false;
     this.neuSpread1.IsCanCustomConfigColumn   = false;
     this.neuSpread1.Location    = new System.Drawing.Point(0, 96);
     this.neuSpread1.Name        = "neuSpread1";
     this.neuSpread1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.neuSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.neuSpread1_Sheet1
     });
     this.neuSpread1.Size                    = new System.Drawing.Size(248, 171);
     this.neuSpread1.Style                   = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuSpread1.TabIndex                = 2;
     tipAppearance9.BackColor                = System.Drawing.SystemColors.Info;
     tipAppearance9.Font                     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     tipAppearance9.ForeColor                = System.Drawing.SystemColors.InfoText;
     this.neuSpread1.TextTipAppearance       = tipAppearance9;
     this.neuSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.Never;
     this.neuSpread1.VisualStyles            = FarPoint.Win.VisualStyles.Off;
     //
     // neuSpread1_Sheet1
     //
     this.neuSpread1_Sheet1.Reset();
     this.neuSpread1_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpread1_Sheet1.ReferenceStyle        = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.neuSpread1_Sheet1.ColumnCount           = 3;
     this.neuSpread1_Sheet1.RowCount              = 5;
     this.neuSpread1_Sheet1.RowHeader.ColumnCount = 0;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Border = lineBorder33;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value               = "药品名称【产地】";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Border              = lineBorder34;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value               = "规格";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Border              = lineBorder35;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value               = "用量";
     this.neuSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor              = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Border = lineBorder36;
     this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent = "HeaderDefault";
     this.neuSpread1_Sheet1.Columns.Default.VisualStyles     = FarPoint.Win.VisualStyles.Auto;
     textCellType9.Multiline = true;
     textCellType9.WordWrap  = true;
     this.neuSpread1_Sheet1.Columns.Get(0).CellType             = textCellType9;
     this.neuSpread1_Sheet1.Columns.Get(0).Label                = "药品名称【产地】";
     this.neuSpread1_Sheet1.Columns.Get(0).Width                = 136F;
     this.neuSpread1_Sheet1.Columns.Get(1).Label                = "规格";
     this.neuSpread1_Sheet1.Columns.Get(1).Width                = 44F;
     this.neuSpread1_Sheet1.Columns.Get(2).Label                = "用量";
     this.neuSpread1_Sheet1.Columns.Get(2).Width                = 47F;
     this.neuSpread1_Sheet1.DefaultStyle.BackColor              = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.DefaultStyle.Parent                 = "DataAreaDefault";
     this.neuSpread1_Sheet1.GrayAreaBackColor                   = System.Drawing.Color.White;
     this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable = true;
     this.neuSpread1_Sheet1.Rows.Default.VisualStyles           = FarPoint.Win.VisualStyles.Auto;
     this.neuSpread1_Sheet1.Rows.Get(0).Height                  = 33F;
     this.neuSpread1_Sheet1.Rows.Get(1).Height                  = 29F;
     this.neuSpread1_Sheet1.Rows.Get(2).Height                  = 29F;
     this.neuSpread1_Sheet1.Rows.Get(3).Height                  = 28F;
     this.neuSpread1_Sheet1.Rows.Get(4).Height                  = 33F;
     this.neuSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // ucPrintCureNewControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.Controls.Add(this.neuSpread1);
     this.Controls.Add(this.neuPanel2);
     this.Controls.Add(this.neuPanel1);
     this.Name = "ucPrintCureNewControl";
     this.Size = new System.Drawing.Size(248, 310);
     this.neuPanel1.ResumeLayout(false);
     this.neuPanel1.PerformLayout();
     this.neuPanel2.ResumeLayout(false);
     this.neuPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #10
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.LineBorder lineBorder1 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.NumberCellType numberCellType1 = new FarPoint.Win.Spread.CellType.NumberCellType();
     FarPoint.Win.LineBorder lineBorder2 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder3 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder4 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder5 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder6 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder7 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.LineBorder lineBorder8 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder9 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, false, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder10 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder11 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder12 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder13 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder14 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder15 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.LineBorder lineBorder16 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, true, true, false);
     FarPoint.Win.Spread.CellType.TextCellType textCellType3 = new FarPoint.Win.Spread.CellType.TextCellType();
     this.neuSpreadDiagnose_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.neuSpreadDiagnose        = new NineVigor.FrameWork.WinForms.Controls.NineSpread();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose_Sheet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose)).BeginInit();
     this.SuspendLayout();
     //
     // neuSpreadDiagnose_Sheet1
     //
     this.neuSpreadDiagnose_Sheet1.Reset();
     neuSpreadDiagnose_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpreadDiagnose_Sheet1.ReferenceStyle                    = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     neuSpreadDiagnose_Sheet1.ColumnCount                            = 14;
     neuSpreadDiagnose_Sheet1.RowCount                               = 1;
     neuSpreadDiagnose_Sheet1.RowHeader.ColumnCount                  = 0;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 1).Border            = lineBorder1;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 2).CellType          = numberCellType1;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 3).Border            = lineBorder2;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 4).Border            = lineBorder3;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 5).Border            = lineBorder4;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 6).Border            = lineBorder5;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 7).Border            = lineBorder6;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 8).Border            = lineBorder7;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 13).Border           = lineBorder8;
     this.neuSpreadDiagnose_Sheet1.Cells.Get(0, 13).CellType         = textCellType1;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).Value             = "手术、操作日期";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).Value             = "手术操作名称";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).Value             = "手术级别";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).Value             = "术者";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).Value             = "I助";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).Value             = "II助";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).Value             = "麻醉方式";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).Value             = "切口愈合等级";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 9).Font   = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 9).Value  = "麻醉医师";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 10).Font  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 10).Value = "手术及操作编码";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 11).Font  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 11).Value = "术前天数";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 12).Font  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 12).Value = "主要手术";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 13).Font  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 13).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 13).Value             = "序号";
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Cells.Get(0, 13).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.neuSpreadDiagnose_Sheet1.ColumnHeader.Rows.Get(0).Height     = 30F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(0).Visible              = false;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Border               = lineBorder9;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).CellType             = textCellType2;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Label                = "手术、操作日期";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(1).Width                = 91F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(2).Label                = "手术操作名称";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(2).Width                = 205F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(3).Border               = lineBorder10;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(3).Label                = "手术级别";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(3).Width                = 75F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(4).Border               = lineBorder11;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(4).Label                = "术者";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(5).Border               = lineBorder12;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(5).Label                = "I助";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(5).Width                = 57F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Border               = lineBorder13;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Label                = "II助";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(6).Width                = 61F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Border               = lineBorder14;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Label                = "麻醉方式";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(7).Width                = 95F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Border               = lineBorder15;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Label                = "切口愈合等级";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Locked               = true;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(8).Width                = 98F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(9).Label                = "麻醉医师";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(9).Width                = 69F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(10).Label               = "手术及操作编码";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(10).Width               = 88F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(11).Label               = "术前天数";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(11).Width               = 77F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(12).Label               = "主要手术";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(12).Width               = 77F;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(13).Border              = lineBorder16;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(13).CellType            = textCellType3;
     this.neuSpreadDiagnose_Sheet1.Columns.Get(13).Label               = "序号";
     this.neuSpreadDiagnose_Sheet1.Columns.Get(13).Width               = 66F;
     this.neuSpreadDiagnose_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.neuSpreadDiagnose_Sheet1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.neuSpreadDiagnose_Sheet1.SelectionPolicy    = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
     this.neuSpreadDiagnose_Sheet1.ReferenceStyle     = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // neuSpreadDiagnose
     //
     this.neuSpreadDiagnose.AccessibleDescription = "neuSpreadDiagnose, Sheet1, Row 0, Column 0, ";
     this.neuSpreadDiagnose.BackColor             = System.Drawing.Color.White;
     this.neuSpreadDiagnose.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.neuSpreadDiagnose.FileName = "";
     this.neuSpreadDiagnose.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.neuSpreadDiagnose.IsAutoSaveGridStatus      = false;
     this.neuSpreadDiagnose.IsCanCustomConfigColumn   = false;
     this.neuSpreadDiagnose.IsShowExport    = true;
     this.neuSpreadDiagnose.IsShowMenuStrip = true;
     this.neuSpreadDiagnose.Location        = new System.Drawing.Point(0, 0);
     this.neuSpreadDiagnose.Name            = "neuSpreadDiagnose";
     this.neuSpreadDiagnose.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.neuSpreadDiagnose.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.neuSpreadDiagnose_Sheet1
     });
     this.neuSpreadDiagnose.Size     = new System.Drawing.Size(984, 453);
     this.neuSpreadDiagnose.Style    = NineVigor.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuSpreadDiagnose.TabIndex = 1;
     this.neuSpreadDiagnose.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     //
     // ucOperation
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.neuSpreadDiagnose);
     this.Name = "ucOperation";
     this.Size = new System.Drawing.Size(984, 453);
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose_Sheet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpreadDiagnose)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #11
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucOpsDocWorkDetail));
     FarPoint.Win.BevelBorder bevelBorder1 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
     FarPoint.Win.BevelBorder bevelBorder2 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, true, false, true, true);
     FarPoint.Win.LineBorder  lineBorder1  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder  lineBorder2  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder  lineBorder3  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder  lineBorder4  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder  lineBorder5  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder  lineBorder6  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder  lineBorder7  = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder  lineBorder8  = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, true, true);
     FarPoint.Win.LineBorder  lineBorder9  = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, true, false, true, true);
     FarPoint.Win.LineBorder  lineBorder10 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, true, true);
     FarPoint.Win.LineBorder  lineBorder11 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, true, true);
     FarPoint.Win.LineBorder  lineBorder12 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, false, false, true, true);
     FarPoint.Win.LineBorder  lineBorder13 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, true, true);
     FarPoint.Win.LineBorder  lineBorder14 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, false, false);
     FarPoint.Win.BevelBorder bevelBorder3 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, false, false, true, true);
     FarPoint.Win.BevelBorder bevelBorder4 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlDark, 1, false, false, true, true);
     FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder15 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder lineBorder16 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, true, true, false, true);
     FarPoint.Win.LineBorder lineBorder17 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black);
     FarPoint.Win.LineBorder lineBorder18 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
     FarPoint.Win.LineBorder lineBorder19 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, true, false, true, true);
     FarPoint.Win.LineBorder lineBorder20 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, true, false, false, true);
     FarPoint.Win.LineBorder lineBorder21 = new FarPoint.Win.LineBorder(System.Drawing.Color.Black, 1, true, false, true, true);
     FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.LineBorder lineBorder22 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, true, true);
     FarPoint.Win.LineBorder lineBorder23 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, false, false, false);
     this.gTopControl        = new DevExpress.XtraEditors.GroupControl();
     this.tabControl1        = new DevExpress.XtraTab.XtraTabControl();
     this.tabAllInfo         = new DevExpress.XtraTab.XtraTabPage();
     this.nineSpread1        = new NineVigor.FrameWork.WinForms.Controls.NineSpread();
     this.nineSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.tabUnReCallInfo    = new DevExpress.XtraTab.XtraTabPage();
     this.nineSpread2        = new NineVigor.FrameWork.WinForms.Controls.NineSpread();
     this.nineSpread2_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.neuLabel1          = new NineVigor.FrameWork.WinForms.Controls.Common.NVLabel();
     this.dateTimeEnd        = new NineVigor.FrameWork.WinForms.Controls.Common.NVDateTimePicker();
     this.nvLabel2           = new NineVigor.FrameWork.WinForms.Controls.Common.NVLabel();
     this.dateTimeBegin      = new NineVigor.FrameWork.WinForms.Controls.Common.NVDateTimePicker();
     ((System.ComponentModel.ISupportInitialize)(this.gTopControl)).BeginInit();
     this.gTopControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabAllInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread1_Sheet1)).BeginInit();
     this.tabUnReCallInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread2_Sheet1)).BeginInit();
     this.SuspendLayout();
     //
     // gTopControl
     //
     this.gTopControl.AppearanceCaption.Font            = new System.Drawing.Font("Tahoma", 11.5F);
     this.gTopControl.AppearanceCaption.Options.UseFont = true;
     this.gTopControl.CaptionImage = ((System.Drawing.Image)(resources.GetObject("gTopControl.CaptionImage")));
     this.gTopControl.Controls.Add(this.dateTimeEnd);
     this.gTopControl.Controls.Add(this.nvLabel2);
     this.gTopControl.Controls.Add(this.dateTimeBegin);
     this.gTopControl.Controls.Add(this.neuLabel1);
     this.gTopControl.Dock     = System.Windows.Forms.DockStyle.Top;
     this.gTopControl.Location = new System.Drawing.Point(0, 0);
     this.gTopControl.Name     = "gTopControl";
     this.gTopControl.Size     = new System.Drawing.Size(1037, 108);
     this.gTopControl.TabIndex = 10;
     this.gTopControl.Text     = "手术检索信息条件";
     //
     // tabControl1
     //
     this.tabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location        = new System.Drawing.Point(0, 108);
     this.tabControl1.Name            = "tabControl1";
     this.tabControl1.SelectedTabPage = this.tabAllInfo;
     this.tabControl1.Size            = new System.Drawing.Size(1037, 366);
     this.tabControl1.TabIndex        = 11;
     this.tabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.tabAllInfo,
         this.tabUnReCallInfo
     });
     //
     // tabAllInfo
     //
     this.tabAllInfo.Controls.Add(this.nineSpread1);
     this.tabAllInfo.Font  = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tabAllInfo.Image = ((System.Drawing.Image)(resources.GetObject("tabAllInfo.Image")));
     this.tabAllInfo.Name  = "tabAllInfo";
     this.tabAllInfo.Size  = new System.Drawing.Size(1031, 329);
     this.tabAllInfo.Text  = "手术信息汇总";
     //
     // nineSpread1
     //
     this.nineSpread1.AccessibleDescription = "neuSpread1, Sheet1, Row 0, Column 0, ";
     this.nineSpread1.BackColor             = System.Drawing.Color.White;
     this.nineSpread1.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.nineSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.nineSpread1.FileName = "";
     this.nineSpread1.Font     = new System.Drawing.Font("宋体", 10F);
     this.nineSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.nineSpread1.IsAutoSaveGridStatus      = false;
     this.nineSpread1.IsCanCustomConfigColumn   = false;
     this.nineSpread1.IsShowExport    = true;
     this.nineSpread1.IsShowMenuStrip = true;
     this.nineSpread1.Location        = new System.Drawing.Point(0, 0);
     this.nineSpread1.Name            = "nineSpread1";
     this.nineSpread1.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.nineSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.nineSpread1_Sheet1
     });
     this.nineSpread1.Size     = new System.Drawing.Size(1031, 329);
     this.nineSpread1.Style    = NineVigor.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.nineSpread1.TabIndex = 2;
     this.nineSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.nineSpread1.SetActiveViewport(0, 1, 0);
     //
     // nineSpread1_Sheet1
     //
     this.nineSpread1_Sheet1.Reset();
     nineSpread1_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.nineSpread1_Sheet1.ReferenceStyle   = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     nineSpread1_Sheet1.ColumnCount           = 11;
     nineSpread1_Sheet1.ColumnHeader.RowCount = 4;
     nineSpread1_Sheet1.RowCount = 0;
     nineSpread1_Sheet1.RowHeader.ColumnCount = 0;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Border              = bevelBorder1;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).ColumnSpan          = 11;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Font                = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).RowSpan             = 2;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value               = "手术信息汇总";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Border              = bevelBorder2;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).ColumnSpan          = 11;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Value               = "查询时间:";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).Border              = lineBorder1;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 0).Border              = lineBorder2;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 0).Value               = "科室编码";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 1).Border              = lineBorder3;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 1).Value               = "科室名称";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 2).Border              = lineBorder4;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 2).Value               = "手工电子登记门诊患者";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 3).Border              = lineBorder5;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 3).Value               = "手工电子登记住院患者";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 4).Value               = "电子申请术后登记门诊患者";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 5).Value               = "电子申请术后登记住院患者";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 6).Value               = "手工填报数据无明细";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 7).Value               = "手工填报数据有明细";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 8).Value               = "合计";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 9).Value               = "包含科室";
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 10).Border             = lineBorder6;
     this.nineSpread1_Sheet1.ColumnHeader.Cells.Get(3, 10).Value              = "查看明细";
     this.nineSpread1_Sheet1.ColumnHeader.Columns.Default.VisualStyles        = FarPoint.Win.VisualStyles.Off;
     this.nineSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor              = System.Drawing.Color.White;
     this.nineSpread1_Sheet1.ColumnHeader.DefaultStyle.Border             = lineBorder7;
     this.nineSpread1_Sheet1.ColumnHeader.DefaultStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.nineSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent             = "HeaderDefault";
     this.nineSpread1_Sheet1.ColumnHeader.DefaultStyle.VisualStyles       = FarPoint.Win.VisualStyles.Off;
     this.nineSpread1_Sheet1.ColumnHeader.HorizontalGridLine        = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread1_Sheet1.ColumnHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
     this.nineSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height        = 32F;
     this.nineSpread1_Sheet1.ColumnHeader.Rows.Get(1).Height        = 0F;
     this.nineSpread1_Sheet1.ColumnHeader.Rows.Get(3).Height        = 32F;
     this.nineSpread1_Sheet1.ColumnHeader.VerticalGridLine          = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread1_Sheet1.Columns.Get(0).BackColor            = System.Drawing.Color.White;
     this.nineSpread1_Sheet1.Columns.Get(0).Border               = lineBorder8;
     this.nineSpread1_Sheet1.Columns.Get(0).Label                = "科室编码";
     this.nineSpread1_Sheet1.Columns.Get(0).Visible              = false;
     this.nineSpread1_Sheet1.Columns.Get(0).Width                = 79F;
     this.nineSpread1_Sheet1.Columns.Get(1).Border               = lineBorder9;
     this.nineSpread1_Sheet1.Columns.Get(1).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread1_Sheet1.Columns.Get(1).Label                = "科室名称";
     this.nineSpread1_Sheet1.Columns.Get(1).Width                = 190F;
     this.nineSpread1_Sheet1.Columns.Get(2).Border               = lineBorder10;
     this.nineSpread1_Sheet1.Columns.Get(2).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
     this.nineSpread1_Sheet1.Columns.Get(2).Label                = "手工电子登记门诊患者";
     this.nineSpread1_Sheet1.Columns.Get(2).Width                = 103F;
     this.nineSpread1_Sheet1.Columns.Get(3).Border               = lineBorder11;
     this.nineSpread1_Sheet1.Columns.Get(3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
     this.nineSpread1_Sheet1.Columns.Get(3).Label                = "手工电子登记住院患者";
     this.nineSpread1_Sheet1.Columns.Get(3).Width                = 100F;
     this.nineSpread1_Sheet1.Columns.Get(4).Label                = "电子申请术后登记门诊患者";
     this.nineSpread1_Sheet1.Columns.Get(4).Width                = 100F;
     this.nineSpread1_Sheet1.Columns.Get(5).Label                = "电子申请术后登记住院患者";
     this.nineSpread1_Sheet1.Columns.Get(5).Width                = 99F;
     this.nineSpread1_Sheet1.Columns.Get(6).Label                = "手工填报数据无明细";
     this.nineSpread1_Sheet1.Columns.Get(6).Width                = 90F;
     this.nineSpread1_Sheet1.Columns.Get(7).Label                = "手工填报数据有明细";
     this.nineSpread1_Sheet1.Columns.Get(7).Width                = 89F;
     this.nineSpread1_Sheet1.Columns.Get(8).Label                = "合计";
     this.nineSpread1_Sheet1.Columns.Get(8).Width                = 89F;
     this.nineSpread1_Sheet1.Columns.Get(9).Label                = "包含科室";
     this.nineSpread1_Sheet1.Columns.Get(9).Width                = 222F;
     this.nineSpread1_Sheet1.Columns.Get(10).Border              = lineBorder12;
     this.nineSpread1_Sheet1.Columns.Get(10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
     this.nineSpread1_Sheet1.Columns.Get(10).Label               = "查看明细";
     this.nineSpread1_Sheet1.Columns.Get(10).Width               = 76F;
     this.nineSpread1_Sheet1.DataAutoCellTypes                         = false;
     this.nineSpread1_Sheet1.DataAutoSizeColumns                       = false;
     this.nineSpread1_Sheet1.DefaultStyle.Border                       = lineBorder13;
     this.nineSpread1_Sheet1.DefaultStyle.Font                         = new System.Drawing.Font("宋体", 10F);
     this.nineSpread1_Sheet1.DefaultStyle.NoteIndicatorColor           = System.Drawing.Color.Red;
     this.nineSpread1_Sheet1.DefaultStyle.Parent                       = "DataAreaDefault";
     this.nineSpread1_Sheet1.GrayAreaBackColor                         = System.Drawing.Color.White;
     this.nineSpread1_Sheet1.RowHeader.AutoText                        = FarPoint.Win.Spread.HeaderAutoText.Blank;
     this.nineSpread1_Sheet1.RowHeader.Columns.Default.Resizable       = false;
     this.nineSpread1_Sheet1.RowHeader.Columns.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
     this.nineSpread1_Sheet1.RowHeader.DefaultStyle.BackColor          = System.Drawing.Color.White;
     this.nineSpread1_Sheet1.RowHeader.DefaultStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.nineSpread1_Sheet1.RowHeader.DefaultStyle.Parent             = "RowHeaderDefault";
     this.nineSpread1_Sheet1.RowHeader.DefaultStyle.VisualStyles       = FarPoint.Win.VisualStyles.Off;
     this.nineSpread1_Sheet1.RowHeader.HorizontalGridLine              = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread1_Sheet1.RowHeader.Rows.Default.VisualStyles       = FarPoint.Win.VisualStyles.Off;
     this.nineSpread1_Sheet1.RowHeader.VerticalGridLine                = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread1_Sheet1.RowHeader.Visible                         = false;
     this.nineSpread1_Sheet1.Rows.Default.Height                       = 25F;
     this.nineSpread1_Sheet1.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Row;
     this.nineSpread1_Sheet1.SheetCornerHorizontalGridLine       = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
     this.nineSpread1_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.White;
     this.nineSpread1_Sheet1.SheetCornerStyle.Border             = lineBorder14;
     this.nineSpread1_Sheet1.SheetCornerStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.nineSpread1_Sheet1.SheetCornerStyle.Parent             = "CornerDefault";
     this.nineSpread1_Sheet1.SheetCornerStyle.VisualStyles       = FarPoint.Win.VisualStyles.On;
     this.nineSpread1_Sheet1.SheetCornerVerticalGridLine         = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
     this.nineSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // tabUnReCallInfo
     //
     this.tabUnReCallInfo.Controls.Add(this.nineSpread2);
     this.tabUnReCallInfo.Image = ((System.Drawing.Image)(resources.GetObject("tabUnReCallInfo.Image")));
     this.tabUnReCallInfo.Name  = "tabUnReCallInfo";
     this.tabUnReCallInfo.Size  = new System.Drawing.Size(1031, 331);
     this.tabUnReCallInfo.Text  = "手术明细列表";
     //
     // nineSpread2
     //
     this.nineSpread2.AccessibleDescription = "nineSpread2, Sheet1, Row 0, Column 0, ";
     this.nineSpread2.BackColor             = System.Drawing.Color.White;
     this.nineSpread2.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.nineSpread2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.nineSpread2.FileName = "";
     this.nineSpread2.Font     = new System.Drawing.Font("宋体", 10F);
     this.nineSpread2.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.nineSpread2.IsAutoSaveGridStatus      = false;
     this.nineSpread2.IsCanCustomConfigColumn   = false;
     this.nineSpread2.IsShowExport    = true;
     this.nineSpread2.IsShowMenuStrip = true;
     this.nineSpread2.Location        = new System.Drawing.Point(0, 0);
     this.nineSpread2.Name            = "nineSpread2";
     this.nineSpread2.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.nineSpread2.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.nineSpread2_Sheet1
     });
     this.nineSpread2.Size     = new System.Drawing.Size(1031, 331);
     this.nineSpread2.Style    = NineVigor.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.nineSpread2.TabIndex = 3;
     this.nineSpread2.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     //
     // nineSpread2_Sheet1
     //
     this.nineSpread2_Sheet1.Reset();
     nineSpread2_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.nineSpread2_Sheet1.ReferenceStyle   = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     nineSpread2_Sheet1.ColumnCount           = 18;
     nineSpread2_Sheet1.ColumnHeader.RowCount = 3;
     nineSpread2_Sheet1.RowCount = 5;
     nineSpread2_Sheet1.RowHeader.ColumnCount = 0;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(0, 0).BackColor           = System.Drawing.Color.White;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(0, 0).Border              = bevelBorder3;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(0, 0).ColumnSpan          = 18;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(0, 0).Font                = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(0, 0).Value               = "手术明细信息列表";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(1, 0).BackColor           = System.Drawing.Color.White;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(1, 0).Border              = bevelBorder4;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(1, 0).CellType            = textCellType1;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(1, 0).ColumnSpan          = 18;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(1, 0).ForeColor           = System.Drawing.Color.Black;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 0).Border              = lineBorder15;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 0).Value               = "住院流水号";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 1).Border              = lineBorder16;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 1).Value               = "序号";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 2).Border              = lineBorder17;
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 2).Value               = "类型";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 3).Value               = "患者分类";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 4).Value               = "卡号/住院号";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 5).Value               = "姓名";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 6).Value               = "性别";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 7).Value               = "手术日期";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 8).Value               = "手术名称";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 9).Value               = "手术种类";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 10).Value              = "术者";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 11).Value              = "一助";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 12).Value              = "手术执行部门";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 13).Value              = "手术登记人";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 14).Value              = "手术登记日期";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 15).Value              = "登记时患者所在科室";
     this.nineSpread2_Sheet1.ColumnHeader.Cells.Get(2, 16).Value              = "当时医生所在科室";
     this.nineSpread2_Sheet1.ColumnHeader.Columns.Default.VisualStyles        = FarPoint.Win.VisualStyles.Off;
     this.nineSpread2_Sheet1.ColumnHeader.DefaultStyle.BackColor              = System.Drawing.Color.White;
     this.nineSpread2_Sheet1.ColumnHeader.DefaultStyle.Border             = lineBorder18;
     this.nineSpread2_Sheet1.ColumnHeader.DefaultStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.nineSpread2_Sheet1.ColumnHeader.DefaultStyle.Parent             = "HeaderDefault";
     this.nineSpread2_Sheet1.ColumnHeader.DefaultStyle.VisualStyles       = FarPoint.Win.VisualStyles.Off;
     this.nineSpread2_Sheet1.ColumnHeader.HorizontalGridLine        = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread2_Sheet1.ColumnHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
     this.nineSpread2_Sheet1.ColumnHeader.Rows.Get(0).Height        = 37F;
     this.nineSpread2_Sheet1.ColumnHeader.Rows.Get(1).Height        = 30F;
     this.nineSpread2_Sheet1.ColumnHeader.Rows.Get(2).Height        = 30F;
     this.nineSpread2_Sheet1.ColumnHeader.VerticalGridLine          = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread2_Sheet1.Columns.Get(0).Border = lineBorder19;
     this.nineSpread2_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.nineSpread2_Sheet1.Columns.Get(0).Label                = "住院流水号";
     this.nineSpread2_Sheet1.Columns.Get(0).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.nineSpread2_Sheet1.Columns.Get(0).Visible              = false;
     this.nineSpread2_Sheet1.Columns.Get(0).Width                = 118F;
     this.nineSpread2_Sheet1.Columns.Get(1).Border               = lineBorder20;
     this.nineSpread2_Sheet1.Columns.Get(1).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(1).Label                = "序号";
     this.nineSpread2_Sheet1.Columns.Get(1).Width                = 61F;
     this.nineSpread2_Sheet1.Columns.Get(2).Border               = lineBorder21;
     this.nineSpread2_Sheet1.Columns.Get(2).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(2).Label                = "类型";
     this.nineSpread2_Sheet1.Columns.Get(2).Width                = 86F;
     this.nineSpread2_Sheet1.Columns.Get(3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.nineSpread2_Sheet1.Columns.Get(3).Label                = "患者分类";
     this.nineSpread2_Sheet1.Columns.Get(3).Width                = 66F;
     this.nineSpread2_Sheet1.Columns.Get(4).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(4).Label                = "卡号/住院号";
     this.nineSpread2_Sheet1.Columns.Get(4).Width                = 93F;
     this.nineSpread2_Sheet1.Columns.Get(5).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(5).Label                = "姓名";
     this.nineSpread2_Sheet1.Columns.Get(6).CellType             = textCellType2;
     this.nineSpread2_Sheet1.Columns.Get(6).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(6).Label                = "性别";
     this.nineSpread2_Sheet1.Columns.Get(6).Width                = 57F;
     this.nineSpread2_Sheet1.Columns.Get(7).Label                = "手术日期";
     this.nineSpread2_Sheet1.Columns.Get(7).Width                = 110F;
     this.nineSpread2_Sheet1.Columns.Get(8).Label                = "手术名称";
     this.nineSpread2_Sheet1.Columns.Get(8).Width                = 107F;
     this.nineSpread2_Sheet1.Columns.Get(9).Label                = "手术种类";
     this.nineSpread2_Sheet1.Columns.Get(9).Width                = 83F;
     this.nineSpread2_Sheet1.Columns.Get(10).Label               = "术者";
     this.nineSpread2_Sheet1.Columns.Get(10).Width               = 79F;
     this.nineSpread2_Sheet1.Columns.Get(11).Label               = "一助";
     this.nineSpread2_Sheet1.Columns.Get(11).Width               = 68F;
     this.nineSpread2_Sheet1.Columns.Get(12).Label               = "手术执行部门";
     this.nineSpread2_Sheet1.Columns.Get(12).Width               = 115F;
     this.nineSpread2_Sheet1.Columns.Get(13).Label               = "手术登记人";
     this.nineSpread2_Sheet1.Columns.Get(13).Width               = 83F;
     this.nineSpread2_Sheet1.Columns.Get(14).Label               = "手术登记日期";
     this.nineSpread2_Sheet1.Columns.Get(14).Width               = 103F;
     this.nineSpread2_Sheet1.Columns.Get(15).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(15).Label               = "登记时患者所在科室";
     this.nineSpread2_Sheet1.Columns.Get(15).Width               = 132F;
     this.nineSpread2_Sheet1.Columns.Get(16).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.nineSpread2_Sheet1.Columns.Get(16).Label               = "当时医生所在科室";
     this.nineSpread2_Sheet1.Columns.Get(16).Width               = 120F;
     this.nineSpread2_Sheet1.Columns.Get(17).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
     this.nineSpread2_Sheet1.Columns.Get(17).Width               = 79F;
     this.nineSpread2_Sheet1.DataAutoCellTypes                         = false;
     this.nineSpread2_Sheet1.DataAutoSizeColumns                       = false;
     this.nineSpread2_Sheet1.DefaultStyle.Border                       = lineBorder22;
     this.nineSpread2_Sheet1.DefaultStyle.Font                         = new System.Drawing.Font("宋体", 10F);
     this.nineSpread2_Sheet1.DefaultStyle.NoteIndicatorColor           = System.Drawing.Color.Red;
     this.nineSpread2_Sheet1.DefaultStyle.Parent                       = "DataAreaDefault";
     this.nineSpread2_Sheet1.GrayAreaBackColor                         = System.Drawing.Color.White;
     this.nineSpread2_Sheet1.RowHeader.AutoText                        = FarPoint.Win.Spread.HeaderAutoText.Blank;
     this.nineSpread2_Sheet1.RowHeader.Columns.Default.Resizable       = false;
     this.nineSpread2_Sheet1.RowHeader.Columns.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
     this.nineSpread2_Sheet1.RowHeader.DefaultStyle.BackColor          = System.Drawing.Color.White;
     this.nineSpread2_Sheet1.RowHeader.DefaultStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.nineSpread2_Sheet1.RowHeader.DefaultStyle.Parent             = "RowHeaderDefault";
     this.nineSpread2_Sheet1.RowHeader.DefaultStyle.VisualStyles       = FarPoint.Win.VisualStyles.Off;
     this.nineSpread2_Sheet1.RowHeader.HorizontalGridLine              = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread2_Sheet1.RowHeader.Rows.Default.VisualStyles       = FarPoint.Win.VisualStyles.Off;
     this.nineSpread2_Sheet1.RowHeader.VerticalGridLine                = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Raised, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight, System.Drawing.SystemColors.ControlLightLight);
     this.nineSpread2_Sheet1.RowHeader.Visible                         = false;
     this.nineSpread2_Sheet1.Rows.Default.Height                       = 25F;
     this.nineSpread2_Sheet1.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Row;
     this.nineSpread2_Sheet1.SheetCornerHorizontalGridLine       = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
     this.nineSpread2_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.White;
     this.nineSpread2_Sheet1.SheetCornerStyle.Border             = lineBorder23;
     this.nineSpread2_Sheet1.SheetCornerStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.nineSpread2_Sheet1.SheetCornerStyle.Parent             = "CornerDefault";
     this.nineSpread2_Sheet1.SheetCornerStyle.VisualStyles       = FarPoint.Win.VisualStyles.On;
     this.nineSpread2_Sheet1.SheetCornerVerticalGridLine         = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
     this.nineSpread2_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // neuLabel1
     //
     this.neuLabel1.Appearance.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuLabel1.Location        = new System.Drawing.Point(10, 41);
     this.neuLabel1.Name            = "neuLabel1";
     this.neuLabel1.Size            = new System.Drawing.Size(64, 16);
     this.neuLabel1.TabIndex        = 16;
     this.neuLabel1.Text            = "统计日期";
     //
     // dateTimeEnd
     //
     this.dateTimeEnd.CustomFormat = "yyyy-MM-dd HH:mm";
     this.dateTimeEnd.Font         = new System.Drawing.Font("宋体", 14.25F);
     this.dateTimeEnd.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeEnd.IsEnter2Tab  = false;
     this.dateTimeEnd.Location     = new System.Drawing.Point(309, 36);
     this.dateTimeEnd.Name         = "dateTimeEnd";
     this.dateTimeEnd.Size         = new System.Drawing.Size(200, 29);
     this.dateTimeEnd.Style        = NineVigor.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.dateTimeEnd.TabIndex     = 23;
     //
     // nvLabel2
     //
     this.nvLabel2.Appearance.Font = new System.Drawing.Font("宋体", 12F);
     this.nvLabel2.Location        = new System.Drawing.Point(287, 42);
     this.nvLabel2.Name            = "nvLabel2";
     this.nvLabel2.Size            = new System.Drawing.Size(16, 16);
     this.nvLabel2.TabIndex        = 22;
     this.nvLabel2.Text            = "至";
     //
     // dateTimeBegin
     //
     this.dateTimeBegin.CustomFormat = "yyyy-MM-dd HH:mm";
     this.dateTimeBegin.Font         = new System.Drawing.Font("宋体", 14.25F);
     this.dateTimeBegin.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimeBegin.IsEnter2Tab  = false;
     this.dateTimeBegin.Location     = new System.Drawing.Point(79, 35);
     this.dateTimeBegin.Name         = "dateTimeBegin";
     this.dateTimeBegin.Size         = new System.Drawing.Size(200, 29);
     this.dateTimeBegin.Style        = NineVigor.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.dateTimeBegin.TabIndex     = 21;
     //
     // ucOpsDocWorkDetail
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.gTopControl);
     this.Name = "ucOpsDocWorkDetail";
     this.Size = new System.Drawing.Size(1037, 474);
     ((System.ComponentModel.ISupportInitialize)(this.gTopControl)).EndInit();
     this.gTopControl.ResumeLayout(false);
     this.gTopControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabAllInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread1_Sheet1)).EndInit();
     this.tabUnReCallInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nineSpread2_Sheet1)).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();
     FarPoint.Win.LineBorder lineBorder1 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder lineBorder2 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder lineBorder3 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder lineBorder4 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder lineBorder5 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     FarPoint.Win.LineBorder lineBorder6 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
     this.cmbReportCode     = new Neusoft.FrameWork.WinForms.Controls.NeuComboBox(this.components);
     this.neuLabel3         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.cmbPact           = new Neusoft.FrameWork.WinForms.Controls.NeuComboBox(this.components);
     this.neuLabel4         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.comDept           = new Neusoft.FrameWork.WinForms.Controls.NeuComboBox(this.components);
     this.neuLabel5         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.plLeft.SuspendLayout();
     this.plRight.SuspendLayout();
     this.plQueryCondition.SuspendLayout();
     this.plMain.SuspendLayout();
     this.plTop.SuspendLayout();
     this.plBottom.SuspendLayout();
     this.plRightTop.SuspendLayout();
     this.plRightBottom.SuspendLayout();
     this.gbMid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
     this.SuspendLayout();
     //
     // plLeft
     //
     this.plLeft.Visible = false;
     //
     // plTop
     //
     this.plTop.Controls.Add(this.comDept);
     this.plTop.Controls.Add(this.neuLabel5);
     this.plTop.Controls.Add(this.cmbPact);
     this.plTop.Controls.Add(this.neuLabel4);
     this.plTop.Controls.Add(this.cmbReportCode);
     this.plTop.Controls.Add(this.neuLabel3);
     this.plTop.Controls.SetChildIndex(this.dtpBeginTime, 0);
     this.plTop.Controls.SetChildIndex(this.neuLabel3, 0);
     this.plTop.Controls.SetChildIndex(this.cmbReportCode, 0);
     this.plTop.Controls.SetChildIndex(this.neuLabel1, 0);
     this.plTop.Controls.SetChildIndex(this.neuLabel2, 0);
     this.plTop.Controls.SetChildIndex(this.dtpEndTime, 0);
     this.plTop.Controls.SetChildIndex(this.neuLabel4, 0);
     this.plTop.Controls.SetChildIndex(this.cmbPact, 0);
     this.plTop.Controls.SetChildIndex(this.neuLabel5, 0);
     this.plTop.Controls.SetChildIndex(this.comDept, 0);
     //
     // plRightBottom
     //
     this.plRightBottom.Visible = false;
     //
     // neuLabel2
     //
     this.neuLabel2.Location = new System.Drawing.Point(220, 14);
     //
     // dtpEndTime
     //
     this.dtpEndTime.Location = new System.Drawing.Point(280, 10);
     //
     // neuSpread1
     //
     this.neuSpread1.AccessibleDescription = "neuSpread1, Sheet1, Row 0, Column 0, 人数统计表";
     this.neuSpread1.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.neuSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.neuSpread1_Sheet1
     });
     this.neuSpread2.ActiveSheetIndex = -1;
     //
     // cmbReportCode
     //
     this.cmbReportCode.ArrowBackColor     = System.Drawing.Color.Silver;
     this.cmbReportCode.FormattingEnabled  = true;
     this.cmbReportCode.IsEnter2Tab        = false;
     this.cmbReportCode.IsFlat             = false;
     this.cmbReportCode.IsLike             = true;
     this.cmbReportCode.IsListOnly         = false;
     this.cmbReportCode.IsShowCustomerList = false;
     this.cmbReportCode.IsShowID           = false;
     this.cmbReportCode.Location           = new System.Drawing.Point(487, 11);
     this.cmbReportCode.Name             = "cmbReportCode";
     this.cmbReportCode.PopForm          = null;
     this.cmbReportCode.ShowCustomerList = false;
     this.cmbReportCode.ShowID           = false;
     this.cmbReportCode.Size             = new System.Drawing.Size(100, 20);
     this.cmbReportCode.Style            = Neusoft.FrameWork.WinForms.Controls.StyleType.Flat;
     this.cmbReportCode.TabIndex         = 16;
     this.cmbReportCode.Tag                   = "";
     this.cmbReportCode.ToolBarUse            = false;
     this.cmbReportCode.SelectedIndexChanged += new System.EventHandler(this.cmbReportCode_SelectecIndex);
     //
     // neuLabel3
     //
     this.neuLabel3.AutoSize = true;
     this.neuLabel3.Location = new System.Drawing.Point(428, 15);
     this.neuLabel3.Name     = "neuLabel3";
     this.neuLabel3.Size     = new System.Drawing.Size(59, 12);
     this.neuLabel3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel3.TabIndex = 15;
     this.neuLabel3.Text     = "统计分类:";
     //
     // cmbPact
     //
     this.cmbPact.ArrowBackColor     = System.Drawing.Color.Silver;
     this.cmbPact.FormattingEnabled  = true;
     this.cmbPact.IsEnter2Tab        = false;
     this.cmbPact.IsFlat             = false;
     this.cmbPact.IsLike             = true;
     this.cmbPact.IsListOnly         = false;
     this.cmbPact.IsShowCustomerList = false;
     this.cmbPact.IsShowID           = false;
     this.cmbPact.Location           = new System.Drawing.Point(648, 11);
     this.cmbPact.Name             = "cmbPact";
     this.cmbPact.PopForm          = null;
     this.cmbPact.ShowCustomerList = false;
     this.cmbPact.ShowID           = false;
     this.cmbPact.Size             = new System.Drawing.Size(100, 20);
     this.cmbPact.Style            = Neusoft.FrameWork.WinForms.Controls.StyleType.Flat;
     this.cmbPact.TabIndex         = 18;
     this.cmbPact.Tag                   = "";
     this.cmbPact.ToolBarUse            = false;
     this.cmbPact.SelectedIndexChanged += new System.EventHandler(this.cmbPact_SelectecIndex);
     //
     // neuLabel4
     //
     this.neuLabel4.AutoSize = true;
     this.neuLabel4.Location = new System.Drawing.Point(589, 15);
     this.neuLabel4.Name     = "neuLabel4";
     this.neuLabel4.Size     = new System.Drawing.Size(59, 12);
     this.neuLabel4.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel4.TabIndex = 17;
     this.neuLabel4.Text     = "合同单位:";
     //
     // comDept
     //
     this.comDept.ArrowBackColor     = System.Drawing.Color.Silver;
     this.comDept.FormattingEnabled  = true;
     this.comDept.IsEnter2Tab        = false;
     this.comDept.IsFlat             = false;
     this.comDept.IsLike             = true;
     this.comDept.IsListOnly         = false;
     this.comDept.IsShowCustomerList = false;
     this.comDept.IsShowID           = false;
     this.comDept.Location           = new System.Drawing.Point(813, 11);
     this.comDept.Name             = "comDept";
     this.comDept.PopForm          = null;
     this.comDept.ShowCustomerList = false;
     this.comDept.ShowID           = false;
     this.comDept.Size             = new System.Drawing.Size(146, 20);
     this.comDept.Style            = Neusoft.FrameWork.WinForms.Controls.StyleType.Flat;
     this.comDept.TabIndex         = 18;
     this.comDept.Tag        = "";
     this.comDept.ToolBarUse = false;
     //
     // neuLabel5
     //
     this.neuLabel5.AutoSize = true;
     this.neuLabel5.Location = new System.Drawing.Point(754, 15);
     this.neuLabel5.Name     = "neuLabel5";
     this.neuLabel5.Size     = new System.Drawing.Size(59, 12);
     this.neuLabel5.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
     this.neuLabel5.TabIndex = 17;
     this.neuLabel5.Text     = "查询条件:";
     //
     // neuSpread1_Sheet1
     //
     this.neuSpread1_Sheet1.Reset();
     this.neuSpread1_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.neuSpread1_Sheet1.ReferenceStyle                      = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.neuSpread1_Sheet1.ColumnCount                         = 490;
     this.neuSpread1_Sheet1.RowHeader.ColumnCount               = 0;
     this.neuSpread1_Sheet1.ActiveSkin                          = new FarPoint.Win.Spread.SheetSkin("CustomSkin1", System.Drawing.SystemColors.Control, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Transparent, FarPoint.Win.Spread.GridLines.Both, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, false, false, false, true, true);
     this.neuSpread1_Sheet1.Cells.Get(0, 0).ColumnSpan          = 7;
     this.neuSpread1_Sheet1.Cells.Get(0, 0).Font                = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.neuSpread1_Sheet1.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(0, 0).RowSpan             = 2;
     this.neuSpread1_Sheet1.Cells.Get(0, 0).Tag                 = "";
     this.neuSpread1_Sheet1.Cells.Get(0, 0).Value               = "人数统计表";
     this.neuSpread1_Sheet1.Cells.Get(2, 0).ColumnSpan          = 4;
     this.neuSpread1_Sheet1.Cells.Get(2, 0).Note                = "统计时间:{0}-{1}";
     this.neuSpread1_Sheet1.Cells.Get(2, 0).Value               = "统计时间:";
     this.neuSpread1_Sheet1.Cells.Get(3, 0).Border              = lineBorder1;
     this.neuSpread1_Sheet1.Cells.Get(3, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(3, 0).Value               = "科室";
     this.neuSpread1_Sheet1.Cells.Get(3, 1).Border              = lineBorder2;
     this.neuSpread1_Sheet1.Cells.Get(3, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(3, 1).Value               = "人数";
     this.neuSpread1_Sheet1.Cells.Get(3, 2).Border              = lineBorder3;
     this.neuSpread1_Sheet1.Cells.Get(3, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(3, 2).Value               = "总金额";
     this.neuSpread1_Sheet1.Cells.Get(3, 3).Border              = lineBorder4;
     this.neuSpread1_Sheet1.Cells.Get(3, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(3, 3).Value               = "自费金额";
     this.neuSpread1_Sheet1.Cells.Get(3, 4).Border              = lineBorder5;
     this.neuSpread1_Sheet1.Cells.Get(3, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(3, 4).Value               = "自付金额";
     this.neuSpread1_Sheet1.Cells.Get(3, 5).Border              = lineBorder6;
     this.neuSpread1_Sheet1.Cells.Get(3, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.neuSpread1_Sheet1.Cells.Get(3, 5).Value               = "优惠金额";
     this.neuSpread1_Sheet1.Columns.Get(0).Width                = 162F;
     this.neuSpread1_Sheet1.Columns.Get(1).Width                = 99F;
     this.neuSpread1_Sheet1.Columns.Get(2).Width                = 98F;
     this.neuSpread1_Sheet1.Columns.Get(3).Width                = 82F;
     this.neuSpread1_Sheet1.Columns.Get(4).Width                = 75F;
     this.neuSpread1_Sheet1.Columns.Get(5).Width                = 75F;
     this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
     this.neuSpread1_Sheet1.VisualStyles                        = FarPoint.Win.VisualStyles.Off;
     this.neuSpread1_Sheet1.ReferenceStyle                      = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // ucDeptFeeNum
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.DataBeginRowIndex   = 4;
     this.DataDisplayColumns  = "0|1|2|3|4|5";
     this.Name               = "ucDeptFeeNum";
     this.SvMain             = this.neuSpread1_Sheet1;
     this.UseParamCellsCount = 1;
     this.plLeft.ResumeLayout(false);
     this.plRight.ResumeLayout(false);
     this.plQueryCondition.ResumeLayout(false);
     this.plMain.ResumeLayout(false);
     this.plTop.ResumeLayout(false);
     this.plTop.PerformLayout();
     this.plBottom.ResumeLayout(false);
     this.plRightTop.ResumeLayout(false);
     this.plRightBottom.ResumeLayout(false);
     this.gbMid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            FarPoint.Win.LineBorder           lineBorder1    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame);
            FarPoint.Win.LineBorder           lineBorder2    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder3    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder4    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder5    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder6    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder7    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder8    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder9    = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder10   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder11   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder12   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder13   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder14   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder15   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            FarPoint.Win.LineBorder           lineBorder16   = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowFrame, 1, false, true, true, true);
            this.fpSpread1        = new Neusoft.FrameWork.WinForms.Controls.NeuSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.SuspendLayout();
            //
            // fpSpread1
            //
            this.fpSpread1.About = "3.0.2004.2005";
            this.fpSpread1.AccessibleDescription = "fpSpread1, Sheet1, Row 0, Column 0, ";
            this.fpSpread1.BackColor             = System.Drawing.Color.White;
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.FileName = "";
            this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.IsAutoSaveGridStatus      = false;
            this.fpSpread1.IsCanCustomConfigColumn   = false;
            this.fpSpread1.Location    = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name        = "fpSpread1";
            this.fpSpread1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size                    = new System.Drawing.Size(791, 629);
            this.fpSpread1.Style                   = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.fpSpread1.TabIndex                = 0;
            tipAppearance1.BackColor               = System.Drawing.SystemColors.Info;
            tipAppearance1.Font                    = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance1.ForeColor               = System.Drawing.SystemColors.InfoText;
            this.fpSpread1.TextTipAppearance       = tipAppearance1;
            this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.EditModeOff            += new System.EventHandler(this.fpSpread1_EditModeOff);
            this.fpSpread1.EnterCell              += new FarPoint.Win.Spread.EnterCellEventHandler(this.fpSpread1_EnterCell);
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet1.ReferenceStyle        = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet1.ColumnCount           = 16;
            this.fpSpread1_Sheet1.ColumnHeader.RowCount = 3;
            this.fpSpread1_Sheet1.RowCount = 0;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).ColumnSpan           = 16;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Font                 = new System.Drawing.Font("宋体", 12F);
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value                = "麻醉安排表";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).ForeColor            = System.Drawing.Color.Black;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).ColumnSpan           = 8;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).Value                = "安排时间:";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 0).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 8).ColumnSpan           = 8;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 8).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 8).Value                = "科室:";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 8).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Border               = lineBorder1;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).Value                = "科室";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 0).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 1).Border               = lineBorder2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 1).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 1).Value                = "床号";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 1).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).Border               = lineBorder3;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).Value                = "姓名";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 2).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 3).Border               = lineBorder4;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 3).Value                = "性别";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 3).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 4).Border               = lineBorder5;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 4).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 4).Value                = "年龄";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 4).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 5).Border               = lineBorder6;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 5).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 5).Value                = "术前诊断";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 5).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 6).Border               = lineBorder7;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 6).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 6).Value                = "手术名称";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 6).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 7).Border               = lineBorder8;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 7).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 7).Value                = "施术者";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 7).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 8).Border               = lineBorder9;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 8).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 8).Value                = "合并疾病";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 8).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 9).Border               = lineBorder10;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 9).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 9).Value                = "麻醉类型";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 9).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 10).Border              = lineBorder11;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 10).Value               = "麻醉方式";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 10).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 11).Border              = lineBorder12;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 11).Value               = "主麻";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 11).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 12).Border              = lineBorder13;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 12).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 12).Value               = "助手";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 12).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 13).Border              = lineBorder14;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 13).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 13).Value               = "手术台";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 13).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 14).Border              = lineBorder15;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 14).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 14).Value               = "临时麻醉助手1";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 14).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 15).Border              = lineBorder16;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 15).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 15).Value               = "临时麻醉助手2";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(2, 15).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.ColumnHeader.Columns.Default.VisualStyles         = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor               = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.ColumnHeader.HorizontalGridLine        = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.fpSpread1_Sheet1.ColumnHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height        = 50F;
            this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(1).Height        = 30F;
            this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(2).Height        = 25F;
            this.fpSpread1_Sheet1.ColumnHeader.VerticalGridLine          = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.fpSpread1_Sheet1.Columns.Get(0).HorizontalAlignment     = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(0).Label                = "科室";
            this.fpSpread1_Sheet1.Columns.Get(0).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(0).Width                = 100F;
            this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(1).Label                = "床号";
            this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(1).Width                = 46F;
            this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(2).Label                = "姓名";
            this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(3).Label                = "性别";
            this.fpSpread1_Sheet1.Columns.Get(3).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(3).Width                = 35F;
            this.fpSpread1_Sheet1.Columns.Get(4).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet1.Columns.Get(4).Label                = "年龄";
            this.fpSpread1_Sheet1.Columns.Get(4).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(4).Width                = 50F;
            this.fpSpread1_Sheet1.Columns.Get(5).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(5).Label                = "术前诊断";
            this.fpSpread1_Sheet1.Columns.Get(5).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(5).Width                = 150F;
            this.fpSpread1_Sheet1.Columns.Get(6).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(6).Label                = "手术名称";
            this.fpSpread1_Sheet1.Columns.Get(6).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(6).Width                = 150F;
            this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(7).Label                = "施术者";
            this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(8).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(8).Label                = "合并疾病";
            this.fpSpread1_Sheet1.Columns.Get(8).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(8).Width                = 150F;
            this.fpSpread1_Sheet1.Columns.Get(9).ForeColor            = System.Drawing.Color.Blue;
            this.fpSpread1_Sheet1.Columns.Get(9).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(9).Label                = "麻醉类型";
            this.fpSpread1_Sheet1.Columns.Get(9).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(10).Label               = "麻醉方式";
            this.fpSpread1_Sheet1.Columns.Get(10).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(10).Width               = 100F;
            this.fpSpread1_Sheet1.Columns.Get(11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(11).Label               = "主麻";
            this.fpSpread1_Sheet1.Columns.Get(11).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(11).Width               = 67F;
            this.fpSpread1_Sheet1.Columns.Get(12).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(12).Label               = "助手";
            this.fpSpread1_Sheet1.Columns.Get(12).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(12).Width               = 66F;
            this.fpSpread1_Sheet1.Columns.Get(13).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(13).Label               = "手术台";
            this.fpSpread1_Sheet1.Columns.Get(13).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(13).Width               = 70F;
            this.fpSpread1_Sheet1.Columns.Get(14).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(14).Label               = "临时麻醉助手1";
            this.fpSpread1_Sheet1.Columns.Get(14).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(14).Width               = 93F;
            this.fpSpread1_Sheet1.Columns.Get(15).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet1.Columns.Get(15).Label               = "临时麻醉助手2";
            this.fpSpread1_Sheet1.Columns.Get(15).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(15).Width               = 93F;
            this.fpSpread1_Sheet1.GrayAreaBackColor  = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.HorizontalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat, System.Drawing.Color.Black);
            this.fpSpread1_Sheet1.OperationMode      = FarPoint.Win.Spread.OperationMode.RowMode;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable    = true;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.RowHeader.Columns.Get(0).Width         = 23F;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor       = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent          = "RowHeaderDefault";
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.VisualStyles    = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.RowHeader.HorizontalGridLine           = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.fpSpread1_Sheet1.RowHeader.Rows.Default.VisualStyles    = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.RowHeader.VerticalGridLine             = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat, System.Drawing.Color.Black);
            this.fpSpread1_Sheet1.Rows.Default.Height           = 25F;
            this.fpSpread1_Sheet1.SheetCornerHorizontalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.fpSpread1_Sheet1.SheetCornerStyle.BackColor    = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.SheetCornerStyle.Parent       = "CornerDefault";
            this.fpSpread1_Sheet1.SheetCornerVerticalGridLine   = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.None);
            this.fpSpread1_Sheet1.VerticalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat, System.Drawing.Color.Black);
            this.fpSpread1_Sheet1.VisualStyles     = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.ReferenceStyle   = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            this.fpSpread1.SetActiveViewport(0, 1, 0);
            //
            // ucAnaesthesiaSpread
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.fpSpread1);
            this.Name = "ucAnaesthesiaSpread";
            this.Size = new System.Drawing.Size(791, 629);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }