Example #1
0
        private void m_mthPatientLoadArea(Control p_ctlSender)
        {
            ctlComboBox cboTemp = p_ctlSender as ctlComboBox;             //

            //			if(m_cboPatientBedDept.SelectedItem==null) return;
            clsInPatientArea[] objAreaArr = null;
            this.Cursor = Cursors.WaitCursor;
            if (m_objManagerDomain.m_lngGetAllAreaInDept(((clsDeptInfo_ManageExplorer)m_cboPatientBedDept2.SelectedItem).m_strDeptID,
                                                         out objAreaArr) <= 0)
            {
                this.Cursor = Cursors.Default;
                return;
            }
            if (objAreaArr == null)
            {
                this.Cursor = Cursors.Default;
                return;
            }
            cboTemp.ClearItem();
            for (int i = 0; i < objAreaArr.Length; i++)
            {
                clsAreaInfo_ManageExplorer objArea = new clsAreaInfo_ManageExplorer();
                objArea.m_strAreaID   = objAreaArr[i].m_StrAreaID;
                objArea.m_strAreaName = objAreaArr[i].m_StrAreaName;
                cboTemp.AddItem(objArea);
            }
            this.Cursor = Cursors.Default;
        }
Example #2
0
 public clsOutPatientRevisitDomain(ctlComboBox p_cboDept, ctlComboBox p_cboArea, ListView p_lsvPatient)
 {
     m_cboDept          = p_cboDept;
     m_cboArea          = p_cboArea;
     m_lsvInPatientList = p_lsvPatient;
     new clsSortTool().m_mthSetListViewSortable(m_lsvInPatientList);
     //m_objServ = new clsOutPatientRevisitServ();
 }
Example #3
0
        /// <summary>
        /// 从界面取值
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void m_mthGetControlValues()
        {
            ArrayList arlItems = new ArrayList();

            foreach (Control obj in this.m_pnlControl.Controls)
            {
                clsTemplateControlValue objValue = new clsTemplateControlValue();
                objValue.m_strGUI_ID = m_objTextTemplate.m_strGUI_ID;
                switch (obj.GetType().Name)
                {
                case "ctlCheckBox":
                    ctlCheckBox chk = obj as ctlCheckBox;
                    objValue.m_strCONTROL_ID    = chk.Name;
                    objValue.m_strCONTROL_DESC  = chk.称;
                    objValue.m_strCONTROL_VALUE = (chk.Checked == true?"true":"false");
                    break;

                case "ctlDateTimePicker":
                    ctlDateTimePicker dtp = obj as ctlDateTimePicker;
                    objValue.m_strCONTROL_ID    = dtp.Name;
                    objValue.m_strCONTROL_DESC  = dtp.称;
                    objValue.m_strCONTROL_VALUE = dtp.Value.ToString("yyyy-MM-dd HH:mm:ss");
                    break;

                case "ctlComboBox":
                    ctlComboBox cbo = obj as ctlComboBox;
                    objValue.m_strCONTROL_ID    = cbo.Name;
                    objValue.m_strCONTROL_DESC  = cbo.称;
                    objValue.m_strCONTROL_VALUE = cbo.Text.Trim();;
                    break;

                case "ctlRichTextBox":
                    ctlRichTextBox txt = obj as ctlRichTextBox;
                    objValue.m_strCONTROL_ID    = txt.Name;
                    objValue.m_strCONTROL_DESC  = txt.称;
                    objValue.m_strCONTROL_VALUE = txt.Text.Trim();;
                    break;

                default:
                    objValue = null;
                    break;
                }
                if (objValue != null)
                {
                    arlItems.Add(objValue);
                }
            }
            if (arlItems.Count > 0)
            {
                m_objTextTemplate.m_objTmpCtlValueArr = (clsTemplateControlValue[])arlItems.ToArray(typeof(clsTemplateControlValue));
            }
        }
Example #4
0
        /// <summary>
        /// 设置下拉项目
        /// </summary>
        /// <param name="p_cboSender"></param>
        private void m_mthSetComboBoxListItem(ctlComboBox p_cboSender)
        {
            if (p_cboSender == null)
            {
                return;
            }
            clsComboBoxValue[] objValueArr = null;
            new clsComboBoxDomainOld().m_lngGetAllItem(MDIParent.s_ObjDepartment.m_StrDeptID, m_strTemplateID, p_cboSender.Name, out objValueArr);
            if (objValueArr == null)
            {
                return;
            }

            p_cboSender.Items.Clear();
            for (int i = 0; i < objValueArr.Length; i++)
            {
                if (objValueArr[i].m_strItemContent != null && objValueArr[i].m_strItemContent != string.Empty)
                {
                    p_cboSender.Items.Add(objValueArr[i].m_strItemContent);
                }
            }
        }
Example #5
0
//		private void m_mthPatientLoadArea(Control p_ctlSender)
//		{
//			ctlComboBox cboTemp = p_ctlSender as ctlComboBox; //
//			//			if(m_cboPatientBedDept.SelectedItem==null) return;
//			bool blnIsNull = cboTemp.Name == "m_cboPatientBedDept" ? m_cboPatientBedDept.SelectedItem==null : m_cboPatientBedDept2.SelectedItem == null;
//			if(blnIsNull) return;
//			clsInPatientArea[] objAreaArr=null;
//			this.Cursor=Cursors.WaitCursor;
//			if(m_objManagerDomain.m_lngGetAllAreaInDept(((clsDeptInfo_ManageExplorer)m_cboPatientBedDept2.SelectedItem).m_strDeptID,
//				out objAreaArr)<=0)
//			{
//				this.Cursor=Cursors.Default;
//				return;
//			}
//			if(objAreaArr==null)
//			{
//				this.Cursor=Cursors.Default;
//				return;
//			}
//			cboTemp.ClearItem();
//			for(int i=0;i<objAreaArr.Length;i++)
//			{
//				clsAreaInfo_ManageExplorer objArea=new clsAreaInfo_ManageExplorer();
//				objArea.m_strAreaID=objAreaArr[i].m_StrAreaID;
//				objArea.m_strAreaName=objAreaArr[i].m_StrAreaName;
//				cboTemp.AddItem(objArea);
//			}
//			this.Cursor=Cursors.Default;
//		}
        private void m_mthPatientLoadDept(Control p_ctlSender)
        {
            this.Cursor = Cursors.WaitCursor;
            clsDepartment[] objDeptArr = m_objManagerDomain.m_objGetAllInDeptArr();
            if (objDeptArr == null)
            {
                this.Cursor = Cursors.Default;
                return;
            }
            ctlComboBox cboTemp = p_ctlSender as ctlComboBox;             //

            //			m_cboPatientBedDept.ClearItem();
            cboTemp.ClearItem();
            for (int i = 0; i < objDeptArr.Length; i++)
            {
                clsDeptInfo_ManageExplorer objDept = new clsDeptInfo_ManageExplorer();
                objDept.m_strDeptID   = objDeptArr[i].m_StrDeptID;
                objDept.m_strDeptName = objDeptArr[i].m_StrDeptName;

                cboTemp.AddItem(objDept);
            }
            this.Cursor = Cursors.Default;
        }
Example #6
0
        private void m_mthPatientLoadBed(Control p_ctlSender)
        {
            ctlComboBox cboBed  = p_ctlSender as ctlComboBox;
            ctlComboBox cboArea = m_cboPatientBedArea2;

            if (cboArea.SelectedItem == null)
            {
                return;
            }

            clsInPatientBed[] objBedArr     = null;
            clsPatient[]      objPatientArr = null;
            this.Cursor = Cursors.WaitCursor;
            if (m_objManagerDomain.m_lngGetAllBedAndPatientInArea(((clsAreaInfo_ManageExplorer)cboArea.SelectedItem).m_strAreaID,
                                                                  out objBedArr, out objPatientArr) <= 0)
            {
                this.Cursor = Cursors.Default;
                return;
            }
            if (objBedArr == null || objPatientArr == null || objBedArr.Length < objPatientArr.Length)
            {
                this.Cursor = Cursors.Default;
                return;
            }
            cboBed.ClearItem();
            for (int i = 0; i < objBedArr.Length; i++)
            {
                if (objPatientArr[i] == null)
                {
                    clsBedInfo objBed = new clsBedInfo();
                    objBed.m_strBedID   = objBedArr[i].m_StrBedID;
                    objBed.m_strBedName = objBedArr[i].m_StrBedName;
                    cboBed.AddItem(objBed);
                }
            }
            this.Cursor = Cursors.Default;
        }
Example #7
0
        /// <summary>
        /// 获取控件的值
        /// </summary>
        /// <param name="p_ctlTestControl">控件</param>
        private void m_mthGetControlCurrentValue(Control p_ctlTestControl)
        {
            foreach (Control ctlItem in p_ctlTestControl.Controls)
            {
                switch (ctlItem.GetType().Name)
                {
                case "Label":
                    m_sbdLabelValueTemp.Append(ctlItem.Name + ".Text : " + ctlItem.Text + "\r\n");
                    break;

                case "ctlBorderTextBox":
                case "dwtBorderTextBox":
                case "TextBox":
                    m_sbdTextValueTemp.Append(ctlItem.Name + ".Text : " + ctlItem.Text + "\r\n");
                    break;

                case "CheckBox":
                    m_sbdCheckBoxValueTemp.Append(ctlItem.Name + ".Checked : " + ((CheckBox)ctlItem).Checked + "\r\n");
                    break;

                case "RadioButton":
                    m_sbdRadioButtonValueTemp.Append(ctlItem.Name + ".Checked : " + ((RadioButton)ctlItem).Checked + "\r\n");
                    break;

                case "DataGrid":
                    m_sbdDataGridValueTemp.Append(ctlItem.Name + " : \r\n");
                    DataTable dtbTable = (DataTable)((DataGrid)ctlItem).DataSource;

                    for (int i1 = 0; i1 < dtbTable.Rows.Count; i1++)
                    {
                        m_sbdDataGridValueTemp.Append("\t");
                        object [] objValArr = dtbTable.Rows[i1].ItemArray;
                        for (int j2 = 0; j2 < objValArr.Length; j2++)
                        {
                            m_sbdDataGridValueTemp.Append(objValArr[j2].ToString() + "	");
                        }
                        m_sbdDataGridValueTemp.Append("\r\n");
                    }
                    break;

                case "ListBox":
                    m_sbdListBoxValueTemp.Append(ctlItem.Name + " : \r\n");
                    ListBox lstTestControl = (ListBox)ctlItem;

                    for (int i = 0; i < lstTestControl.Items.Count; i++)
                    {
                        m_sbdListBoxValueTemp.Append("\t" + lstTestControl.Items[i].ToString() + "(" + lstTestControl.GetSelected(i) + ")\r\n");
                    }
                    break;

                case "CheckedListBox":
                    m_sbdCheckedListBoxValueTemp.Append(ctlItem.Name + " : \r\n");
                    CheckedListBox clstTestControl = (CheckedListBox)ctlItem;

                    for (int i = 0; i < clstTestControl.Items.Count; i++)
                    {
                        m_sbdCheckedListBoxValueTemp.Append("\t" + clstTestControl.Items[i].ToString() + "(" + clstTestControl.GetItemChecked(i) + ")\r\n");
                    }
                    break;

                case "ComboBox":
                    m_sbdComboBoxValueTemp.Append(ctlItem.Name + "(" + ctlItem.Text + ") : \r\n");
                    ComboBox cboTestControl = (ComboBox)ctlItem;

                    for (int i = 0; i < cboTestControl.Items.Count; i++)
                    {
                        m_sbdComboBoxValueTemp.Append("\t" + cboTestControl.Items[i].ToString() + "\r\n");
                    }
                    break;

                case "ctlComboBox":
                    ctlComboBox cboControl = (ctlComboBox)ctlItem;

                    m_sbdComboBoxValueTemp.Append(ctlItem.Name + "(" + cboControl.Text + ") : \r\n");

                    for (int i = 0; i < cboControl.GetItemsCount(); i++)
                    {
                        m_sbdComboBoxValueTemp.Append("\t" + cboControl.GetItem(i).ToString() + "\r\n");
                    }
                    break;

//					case "dwtFlatComboBox":
//						dwtFlatComboBox cboFlatControl = (dwtFlatComboBox)ctlItem;
//
//						m_sbdComboBoxValueTemp.Append(ctlItem.Name+"("+cboFlatControl.Text+") : \r\n");
//
//						for(int i=0;i<cboFlatControl.GetItemsCount();i++)
//						{
//							m_sbdComboBoxValueTemp.Append("\t"+cboFlatControl.GetItem(i).ToString()+"\r\n");
//						}
//						break;
                case "ListView":
                    m_sbdListViewValueTemp.Append(ctlItem.Name + " : \r\n");
                    ListView lsvTestControl = (ListView)ctlItem;

                    for (int i1 = 0; i1 < lsvTestControl.Items.Count; i1++)
                    {
                        ListViewItem lviRow = lsvTestControl.Items[i1];

                        m_sbdListViewValueTemp.Append("\t");
                        for (int j2 = 0; j2 < lviRow.SubItems.Count; j2++)
                        {
                            m_sbdListViewValueTemp.Append(lviRow.SubItems[j2].Text + "	");
                        }
                        m_sbdListViewValueTemp.Append("\r\n");
                    }
                    break;

                case "DomainUpDown":
                    m_sbdDomainUpDownValueTemp.Append(ctlItem.Name + ".Text : " + ctlItem.Text + "\r\n");
                    break;

                case "NumericUpDown":
                    m_sbdNumericUpDownValueTemp.Append(ctlItem.Name + ".Text : " + ctlItem.Text + "\r\n");
                    break;

                case "RichTextBox":
                    m_sbdRichTextBoxValueTemp.Append(ctlItem.Name + ".Text : " + ctlItem.Text + "\r\n");
                    break;

//					case "dwtFlatTimePick":
//						m_sbdDateTimePickerValueTemp.Append(ctlItem.Name+".Text : "+((dwtFlatTimePick)ctlItem).Text+"\r\n");
//						break;
                case "DateTimePicker":
                    m_sbdDateTimePickerValueTemp.Append(ctlItem.Name + ".Text : " + (ctlItem).Text + "\r\n");
                    break;

                case "ctlTimePicker":
                    m_sbdDateTimePickerValueTemp.Append(ctlItem.Name + ".Text : " + ((ctlTimePicker)ctlItem).Text + "\r\n");
                    break;

                case "TreeView":
                    m_sbdTreeViewValueTemp.Append(ctlItem.Name + " : \r\n");

                    TreeView trvItem = (TreeView)ctlItem;

                    for (int i = 0; i < trvItem.Nodes.Count; i++)
                    {
                        m_mthAddChildTreeNode(trvItem.Nodes[i], 0);
                    }
                    break;

                case "TabControl":
                    m_mthGetControlCurrentValue(ctlItem);
                    break;

                case "TabPage":
                    m_mthGetControlCurrentValue(ctlItem);
                    break;
                }
            }
        }
Example #8
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1             = new System.Windows.Forms.Panel();
     this.lblInpatientDate   = new System.Windows.Forms.Label();
     this.m_txtChargeDoc     = new System.Windows.Forms.TextBox();
     this.m_cboStatus        = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.m_txtManageDoc     = new System.Windows.Forms.TextBox();
     this.m_cmdManageDoc     = new PinkieControls.ButtonXP();
     this.m_dtpInpatientDate = new com.digitalwave.Utility.Controls.ctlTimePicker();
     this.m_cmdSave          = new PinkieControls.ButtonXP();
     this.m_cmdCancel        = new PinkieControls.ButtonXP();
     this.lblStatus          = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.label4             = new System.Windows.Forms.Label();
     this.m_cmdChargeDoc     = new PinkieControls.ButtonXP();
     this.m_cmdManage        = new PinkieControls.ButtonXP();
     this.m_pnlNewBase.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // lblSex
     //
     this.lblSex.Location = new System.Drawing.Point(257, 175);
     this.lblSex.Visible  = false;
     //
     // lblAge
     //
     this.lblAge.Location = new System.Drawing.Point(361, 175);
     this.lblAge.Visible  = false;
     //
     // lblBedNoTitle
     //
     this.lblBedNoTitle.Location = new System.Drawing.Point(253, 107);
     this.lblBedNoTitle.Visible  = false;
     //
     // lblInHospitalNoTitle
     //
     this.lblInHospitalNoTitle.Location = new System.Drawing.Point(241, 139);
     this.lblInHospitalNoTitle.Visible  = false;
     //
     // lblNameTitle
     //
     this.lblNameTitle.Location = new System.Drawing.Point(37, 175);
     this.lblNameTitle.Visible  = false;
     //
     // lblSexTitle
     //
     this.lblSexTitle.Location = new System.Drawing.Point(209, 175);
     this.lblSexTitle.Visible  = false;
     //
     // lblAgeTitle
     //
     this.lblAgeTitle.Location = new System.Drawing.Point(313, 175);
     this.lblAgeTitle.Visible  = false;
     //
     // lblAreaTitle
     //
     this.lblAreaTitle.Location = new System.Drawing.Point(33, 139);
     this.lblAreaTitle.Visible  = false;
     //
     // m_lsvInPatientID
     //
     this.m_lsvInPatientID.Location = new System.Drawing.Point(91, 81);
     //
     // txtInPatientID
     //
     this.txtInPatientID.Location = new System.Drawing.Point(297, 135);
     this.txtInPatientID.Visible  = false;
     //
     // m_txtPatientName
     //
     this.m_txtPatientName.Location = new System.Drawing.Point(81, 174);
     this.m_txtPatientName.Visible  = false;
     //
     // m_txtBedNO
     //
     this.m_txtBedNO.Location = new System.Drawing.Point(297, 103);
     this.m_txtBedNO.Size     = new System.Drawing.Size(92, 23);
     this.m_txtBedNO.Visible  = false;
     //
     // m_cboArea
     //
     this.m_cboArea.Location = new System.Drawing.Point(81, 135);
     this.m_cboArea.Visible  = false;
     //
     // m_lsvPatientName
     //
     this.m_lsvPatientName.Location = new System.Drawing.Point(268, 105);
     //
     // m_lsvBedNO
     //
     this.m_lsvBedNO.Location = new System.Drawing.Point(213, 105);
     this.m_lsvBedNO.Size     = new System.Drawing.Size(92, 104);
     //
     // m_cboDept
     //
     this.m_cboDept.Location = new System.Drawing.Point(81, 103);
     this.m_cboDept.Visible  = false;
     //
     // lblDept
     //
     this.lblDept.Location = new System.Drawing.Point(33, 107);
     this.lblDept.Visible  = false;
     //
     // m_cmdNewTemplate
     //
     this.m_cmdNewTemplate.Location = new System.Drawing.Point(141, 213);
     //
     // m_cmdNext
     //
     this.m_cmdNext.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_cmdNext.Location  = new System.Drawing.Point(389, 103);
     //
     // m_cmdPre
     //
     this.m_cmdPre.Location = new System.Drawing.Point(141, 83);
     //
     // m_lblForTitle
     //
     this.m_lblForTitle.Location = new System.Drawing.Point(233, 95);
     //
     // chkModifyWithoutMatk
     //
     this.chkModifyWithoutMatk.Location = new System.Drawing.Point(339, 40);
     //
     // m_cmdModifyPatientInfo
     //
     this.m_cmdModifyPatientInfo.Location = new System.Drawing.Point(661, 37);
     this.m_cmdModifyPatientInfo.Size     = new System.Drawing.Size(69, 28);
     //
     // m_pnlNewBase
     //
     this.m_pnlNewBase.Size    = new System.Drawing.Size(740, 60);
     this.m_pnlNewBase.Visible = true;
     //
     // m_ctlPatientInfo
     //
     this.m_ctlPatientInfo.m_BlnIsShowPatientAge  = true;
     this.m_ctlPatientInfo.m_BlnIsShowPatientName = true;
     this.m_ctlPatientInfo.m_BlnIsShowSex         = true;
     this.m_ctlPatientInfo.Size = new System.Drawing.Size(738, 29);
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.lblInpatientDate);
     this.panel1.Controls.Add(this.m_txtChargeDoc);
     this.panel1.Controls.Add(this.m_cboStatus);
     this.panel1.Controls.Add(this.m_txtManageDoc);
     this.panel1.Controls.Add(this.m_cmdManageDoc);
     this.panel1.Controls.Add(this.m_dtpInpatientDate);
     this.panel1.Controls.Add(this.m_cmdSave);
     this.panel1.Controls.Add(this.m_cmdCancel);
     this.panel1.Controls.Add(this.lblStatus);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.m_cmdChargeDoc);
     this.panel1.Controls.Add(this.m_cmdManage);
     this.panel1.Location = new System.Drawing.Point(12, 73);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(738, 172);
     this.panel1.TabIndex = 10000006;
     //
     // lblInpatientDate
     //
     this.lblInpatientDate.AutoSize = true;
     this.lblInpatientDate.Location = new System.Drawing.Point(183, 20);
     this.lblInpatientDate.Name     = "lblInpatientDate";
     this.lblInpatientDate.Size     = new System.Drawing.Size(63, 14);
     this.lblInpatientDate.TabIndex = 10000128;
     this.lblInpatientDate.Text     = "入院时间";
     //
     // m_txtChargeDoc
     //
     this.m_txtChargeDoc.Location = new System.Drawing.Point(253, 50);
     this.m_txtChargeDoc.Name     = "m_txtChargeDoc";
     this.m_txtChargeDoc.ReadOnly = true;
     this.m_txtChargeDoc.Size     = new System.Drawing.Size(100, 23);
     this.m_txtChargeDoc.TabIndex = 10000131;
     //
     // m_cboStatus
     //
     this.m_cboStatus.BackColor           = System.Drawing.Color.White;
     this.m_cboStatus.BorderColor         = System.Drawing.Color.Black;
     this.m_cboStatus.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_cboStatus.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboStatus.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboStatus.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboStatus.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cboStatus.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cboStatus.ForeColor                = System.Drawing.Color.Black;
     this.m_cboStatus.ListBackColor            = System.Drawing.Color.White;
     this.m_cboStatus.ListForeColor            = System.Drawing.Color.Black;
     this.m_cboStatus.ListSelectedBackColor    = System.Drawing.Color.Blue;
     this.m_cboStatus.ListSelectedForeColor    = System.Drawing.Color.White;
     this.m_cboStatus.Location                 = new System.Drawing.Point(255, 82);
     this.m_cboStatus.m_BlnEnableItemEventMenu = false;
     this.m_cboStatus.Name                     = "m_cboStatus";
     this.m_cboStatus.SelectedIndex            = -1;
     this.m_cboStatus.SelectedItem             = null;
     this.m_cboStatus.SelectionStart           = 0;
     this.m_cboStatus.Size                     = new System.Drawing.Size(100, 23);
     this.m_cboStatus.TabIndex                 = 10000122;
     this.m_cboStatus.TextBackColor            = System.Drawing.Color.White;
     this.m_cboStatus.TextForeColor            = System.Drawing.Color.Black;
     //
     // m_txtManageDoc
     //
     this.m_txtManageDoc.Location = new System.Drawing.Point(446, 50);
     this.m_txtManageDoc.Name     = "m_txtManageDoc";
     this.m_txtManageDoc.ReadOnly = true;
     this.m_txtManageDoc.Size     = new System.Drawing.Size(100, 23);
     this.m_txtManageDoc.TabIndex = 10000130;
     //
     // m_cmdManageDoc
     //
     this.m_cmdManageDoc.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
     this.m_cmdManageDoc.DefaultScheme = true;
     this.m_cmdManageDoc.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdManageDoc.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cmdManageDoc.Hint          = "";
     this.m_cmdManageDoc.Location      = new System.Drawing.Point(371, 48);
     this.m_cmdManageDoc.Name          = "m_cmdManageDoc";
     this.m_cmdManageDoc.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdManageDoc.Size          = new System.Drawing.Size(68, 28);
     this.m_cmdManageDoc.TabIndex      = 10000121;
     this.m_cmdManageDoc.Tag           = "1";
     this.m_cmdManageDoc.Text          = "管床医生";
     //
     // m_dtpInpatientDate
     //
     this.m_dtpInpatientDate.BorderColor         = System.Drawing.Color.Black;
     this.m_dtpInpatientDate.CustomFormat        = "yyyy年MM月dd日 HH:mm:ss";
     this.m_dtpInpatientDate.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_dtpInpatientDate.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_dtpInpatientDate.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_dtpInpatientDate.flatFont            = new System.Drawing.Font("宋体", 12F);
     this.m_dtpInpatientDate.Font             = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_dtpInpatientDate.Format           = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.m_dtpInpatientDate.Location         = new System.Drawing.Point(255, 18);
     this.m_dtpInpatientDate.m_BlnOnlyTime    = false;
     this.m_dtpInpatientDate.m_EnmVisibleFlag = com.digitalwave.Utility.Controls.ctlTimePicker.enmDateTimeFlag.Second;
     this.m_dtpInpatientDate.MaxDate          = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.m_dtpInpatientDate.MinDate          = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
     this.m_dtpInpatientDate.Name             = "m_dtpInpatientDate";
     this.m_dtpInpatientDate.ReadOnly         = true;
     this.m_dtpInpatientDate.Size             = new System.Drawing.Size(212, 22);
     this.m_dtpInpatientDate.TabIndex         = 10000119;
     this.m_dtpInpatientDate.TextBackColor    = System.Drawing.Color.White;
     this.m_dtpInpatientDate.TextForeColor    = System.Drawing.Color.Black;
     //
     // m_cmdSave
     //
     this.m_cmdSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
     this.m_cmdSave.DefaultScheme = true;
     this.m_cmdSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdSave.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cmdSave.Hint          = "";
     this.m_cmdSave.Location      = new System.Drawing.Point(371, 134);
     this.m_cmdSave.Name          = "m_cmdSave";
     this.m_cmdSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdSave.Size          = new System.Drawing.Size(68, 28);
     this.m_cmdSave.TabIndex      = 10000124;
     this.m_cmdSave.Tag           = "1";
     this.m_cmdSave.Text          = "保  存";
     this.m_cmdSave.Click        += new System.EventHandler(this.m_cmdSave_Click);
     //
     // m_cmdCancel
     //
     this.m_cmdCancel.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
     this.m_cmdCancel.DefaultScheme = true;
     this.m_cmdCancel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdCancel.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cmdCancel.Hint          = "";
     this.m_cmdCancel.Location      = new System.Drawing.Point(479, 134);
     this.m_cmdCancel.Name          = "m_cmdCancel";
     this.m_cmdCancel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdCancel.Size          = new System.Drawing.Size(68, 28);
     this.m_cmdCancel.TabIndex      = 10000125;
     this.m_cmdCancel.Tag           = "1";
     this.m_cmdCancel.Text          = "关  闭";
     this.m_cmdCancel.Click        += new System.EventHandler(this.m_cmdCancel_Click);
     //
     // lblStatus
     //
     this.lblStatus.AutoSize = true;
     this.lblStatus.Location = new System.Drawing.Point(183, 84);
     this.lblStatus.Name     = "lblStatus";
     this.lblStatus.Size     = new System.Drawing.Size(63, 14);
     this.lblStatus.TabIndex = 10000129;
     this.lblStatus.Text     = "状    态";
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label1.Location    = new System.Drawing.Point(175, 7);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(388, 2);
     this.label1.TabIndex    = 10000126;
     //
     // label4
     //
     this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label4.Location    = new System.Drawing.Point(175, 122);
     this.label4.Name        = "label4";
     this.label4.Size        = new System.Drawing.Size(388, 2);
     this.label4.TabIndex    = 10000127;
     //
     // m_cmdChargeDoc
     //
     this.m_cmdChargeDoc.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
     this.m_cmdChargeDoc.DefaultScheme = true;
     this.m_cmdChargeDoc.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdChargeDoc.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cmdChargeDoc.Hint          = "";
     this.m_cmdChargeDoc.Location      = new System.Drawing.Point(179, 48);
     this.m_cmdChargeDoc.Name          = "m_cmdChargeDoc";
     this.m_cmdChargeDoc.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdChargeDoc.Size          = new System.Drawing.Size(68, 28);
     this.m_cmdChargeDoc.TabIndex      = 10000120;
     this.m_cmdChargeDoc.Tag           = "";
     this.m_cmdChargeDoc.Text          = "主治医生";
     //
     // m_cmdManage
     //
     this.m_cmdManage.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216)))));
     this.m_cmdManage.DefaultScheme = true;
     this.m_cmdManage.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdManage.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_cmdManage.Hint          = "";
     this.m_cmdManage.Location      = new System.Drawing.Point(179, 134);
     this.m_cmdManage.Name          = "m_cmdManage";
     this.m_cmdManage.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdManage.Size          = new System.Drawing.Size(68, 28);
     this.m_cmdManage.TabIndex      = 10000123;
     this.m_cmdManage.Tag           = "1";
     this.m_cmdManage.Text          = "管床设置";
     this.m_cmdManage.Click        += new System.EventHandler(this.m_cmdManage_Click);
     //
     // frmBedCardManage
     //
     this.ClientSize = new System.Drawing.Size(760, 259);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmBedCardManage";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "床头卡";
     this.Controls.SetChildIndex(this.m_lsvBedNO, 0);
     this.Controls.SetChildIndex(this.m_lsvInPatientID, 0);
     this.Controls.SetChildIndex(this.m_lblForTitle, 0);
     this.Controls.SetChildIndex(this.lblDept, 0);
     this.Controls.SetChildIndex(this.m_cmdNewTemplate, 0);
     this.Controls.SetChildIndex(this.lblAreaTitle, 0);
     this.Controls.SetChildIndex(this.lblBedNoTitle, 0);
     this.Controls.SetChildIndex(this.m_txtBedNO, 0);
     this.Controls.SetChildIndex(this.lblInHospitalNoTitle, 0);
     this.Controls.SetChildIndex(this.txtInPatientID, 0);
     this.Controls.SetChildIndex(this.lblNameTitle, 0);
     this.Controls.SetChildIndex(this.m_txtPatientName, 0);
     this.Controls.SetChildIndex(this.lblAgeTitle, 0);
     this.Controls.SetChildIndex(this.lblSexTitle, 0);
     this.Controls.SetChildIndex(this.m_cboDept, 0);
     this.Controls.SetChildIndex(this.m_cboArea, 0);
     this.Controls.SetChildIndex(this.lblSex, 0);
     this.Controls.SetChildIndex(this.lblAge, 0);
     this.Controls.SetChildIndex(this.m_cmdNext, 0);
     this.Controls.SetChildIndex(this.m_lsvPatientName, 0);
     this.Controls.SetChildIndex(this.m_pnlNewBase, 0);
     this.Controls.SetChildIndex(this.chkModifyWithoutMatk, 0);
     this.Controls.SetChildIndex(this.m_cmdPre, 0);
     this.Controls.SetChildIndex(this.m_cmdModifyPatientInfo, 0);
     this.Controls.SetChildIndex(this.panel1, 0);
     this.m_pnlNewBase.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }