Пример #1
0
        /// <summary>
        /// xóa trắng các control trên Form.
        /// </summary>
        private void ClearControl()
        {
            foreach (Control control in this.grpControl.Controls)
            {
                if (control is Janus.Windows.GridEX.EditControls.EditBox)
                {
                    control.Text = string.Empty;
                }
                if (control is Janus.Windows.EditControls.UIComboBox)
                {
                    var txtControl = new Janus.Windows.EditControls.UIComboBox();
                    txtControl = ((Janus.Windows.EditControls.UIComboBox)control);
                    txtControl.SelectedIndex = 0;
                }
                if (control is Janus.Windows.EditControls.UICheckBox)
                {
                    var txtControl = new Janus.Windows.EditControls.UICheckBox();
                    txtControl         = ((Janus.Windows.EditControls.UICheckBox)control);
                    txtControl.Checked = false;
                }
                if (control is Janus.Windows.EditControls.UIRadioButton)
                {
                    var txtControl = new Janus.Windows.EditControls.UIRadioButton();
                    txtControl         = ((Janus.Windows.EditControls.UIRadioButton)control);
                    txtControl.Checked = false;
                }
            }
            foreach (GridEXRow grRow in grdDoiTuong.GetRows())
            {
                grRow.IsChecked = false;
            }
            txtMa.Enabled = true;

            txtMa.Focus();
        }
Пример #2
0
		private void cboHierarchicalGroupMode_SelectedItemChanged(object sender, System.EventArgs e)
		{
			if (this.Table != null)
			{
				Janus.Windows.EditControls.UIComboBox combo = (Janus.Windows.EditControls.UIComboBox)sender;
				this.Table.SelfReferencingSettings.HierarchicalGroupMode = (HierarchicalGroupMode)combo.SelectedItem.Value;
			}
		}
Пример #3
0
		private void FillHierarchicalGroupModeCombo()
		{
			Janus.Windows.EditControls.UIComboBox combo = this.UiCommandManager1.Commands["cmdHierarchicalGroupMode"].GetUIComboBox();

			combo.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
			combo.Items.Add("All Rows", HierarchicalGroupMode.AllRows);
			combo.Items.Add("Parent Rows", HierarchicalGroupMode.ParentRows);

			combo.SelectedValue = this.Table.SelfReferencingSettings.HierarchicalGroupMode;

			combo.SelectedItemChanged += new System.EventHandler(this.cboHierarchicalGroupMode_SelectedItemChanged);

		}
Пример #4
0
		private void AddChildTables(Janus.Windows.EditControls.UIComboBox cboTables, GridEXTable table, int indent)
		{
			Janus.Windows.EditControls.UIComboBoxItem item = new Janus.Windows.EditControls.UIComboBoxItem(table.Caption, table);
			item.ImageIndex = table.ImageIndex;
			item.IndentLevel = indent;

			cboTables.Items.Add(item);
			foreach (GridEXTable childTable in table.ChildTables)
			{
				this.AddChildTables(cboTables, childTable, indent + 1);
			}

		}
Пример #5
0
		private void OnTableChanged()
		{
			this.FillGroupList();
			if (mTable.HierarchicalMode != HierarchicalMode.UseChildTables)
			{
				this.UiCommandManager1.Commands["cmdHierarchicalGroupMode"].IsVisible = true;
				Janus.Windows.EditControls.UIComboBox combo = this.UiCommandManager1.Commands["cmdHierarchicalGroupMode"].GetUIComboBox();
				combo.SelectedValue = this.Table.SelfReferencingSettings.HierarchicalGroupMode;
			}
			else
			{
				this.UiCommandManager1.Commands["cmdHierarchicalGroupMode"].IsVisible = false;
			}

		}
Пример #6
0
		private void FillTablesCombo()
		{
			if (this.bufferGrid.RootTable.ChildTables.Count > 0)
			{
				Janus.Windows.EditControls.UIComboBox cboTables = this.UiCommandBar1.Commands["cmdTableList"].GetUIComboBox();
				cboTables.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
				cboTables.ImageList = this.bufferGrid.ImageList;
				this.AddChildTables(cboTables, this.bufferGrid.RootTable, 0);

				cboTables.SelectedValue = this.bufferGrid.RootTable;

				cboTables.SelectedItemChanged += new System.EventHandler(cboTables_SelectedItemChanged);
			}
			else
			{
				this.UiCommandManager1.Commands["cmdTableList"].IsVisible = false;
			}

		}
Пример #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NuGenRegistryMonitorMainForm));
     this.comboBoxRegistryHives = new Janus.Windows.EditControls.UIComboBox();
     this.textRegistryKey       = new System.Windows.Forms.TextBox();
     this.buttonStart           = new Janus.Windows.EditControls.UIButton();
     this.buttonStop            = new Janus.Windows.EditControls.UIButton();
     this.listBox1   = new System.Windows.Forms.ListBox();
     this.label2     = new System.Windows.Forms.Label();
     this.label1     = new System.Windows.Forms.Label();
     this.panel1     = new System.Windows.Forms.Panel();
     this.uiTab1     = new Janus.Windows.UI.Tab.UITab();
     this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).BeginInit();
     this.uiTab1.SuspendLayout();
     this.uiTabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // comboBoxRegistryHives
     //
     this.comboBoxRegistryHives.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.comboBoxRegistryHives.Location   = new System.Drawing.Point(100, 28);
     this.comboBoxRegistryHives.Name       = "comboBoxRegistryHives";
     this.comboBoxRegistryHives.Size       = new System.Drawing.Size(208, 20);
     this.comboBoxRegistryHives.TabIndex   = 1;
     //
     // textRegistryKey
     //
     this.textRegistryKey.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.textRegistryKey.Location = new System.Drawing.Point(100, 60);
     this.textRegistryKey.Name     = "textRegistryKey";
     this.textRegistryKey.Size     = new System.Drawing.Size(618, 20);
     this.textRegistryKey.TabIndex = 3;
     //
     // buttonStart
     //
     this.buttonStart.Location = new System.Drawing.Point(20, 100);
     this.buttonStart.Name     = "buttonStart";
     this.buttonStart.Size     = new System.Drawing.Size(75, 23);
     this.buttonStart.TabIndex = 4;
     this.buttonStart.Text     = "Start";
     this.buttonStart.Click   += new System.EventHandler(this.OnButtonStartClick);
     //
     // buttonStop
     //
     this.buttonStop.Enabled  = false;
     this.buttonStop.Location = new System.Drawing.Point(108, 100);
     this.buttonStop.Name     = "buttonStop";
     this.buttonStop.Size     = new System.Drawing.Size(75, 23);
     this.buttonStop.TabIndex = 5;
     this.buttonStop.Text     = "Stop";
     this.buttonStop.Click   += new System.EventHandler(this.OnButtonStopClick);
     //
     // listBox1
     //
     this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.listBox1.IntegralHeight = false;
     this.listBox1.Location       = new System.Drawing.Point(17, 141);
     this.listBox1.Name           = "listBox1";
     this.listBox1.Size           = new System.Drawing.Size(701, 404);
     this.listBox1.TabIndex       = 6;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(232)))), ((int)(((byte)(247)))));
     this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label2.Location  = new System.Drawing.Point(20, 60);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 20);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Registry key:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(232)))), ((int)(((byte)(247)))));
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Location  = new System.Drawing.Point(20, 28);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(72, 21);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Registry hive:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.uiTab1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(736, 567);
     this.panel1.TabIndex = 7;
     //
     // uiTab1
     //
     this.uiTab1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.uiTab1.Location = new System.Drawing.Point(0, 0);
     this.uiTab1.Name     = "uiTab1";
     this.uiTab1.ShowTabs = false;
     this.uiTab1.Size     = new System.Drawing.Size(736, 567);
     this.uiTab1.TabIndex = 7;
     this.uiTab1.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
         this.uiTabPage1
     });
     this.uiTab1.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Office2007;
     //
     // uiTabPage1
     //
     this.uiTabPage1.Controls.Add(this.listBox1);
     this.uiTabPage1.Controls.Add(this.buttonStop);
     this.uiTabPage1.Controls.Add(this.label1);
     this.uiTabPage1.Controls.Add(this.textRegistryKey);
     this.uiTabPage1.Controls.Add(this.comboBoxRegistryHives);
     this.uiTabPage1.Controls.Add(this.label2);
     this.uiTabPage1.Controls.Add(this.buttonStart);
     this.uiTabPage1.Location = new System.Drawing.Point(1, 1);
     this.uiTabPage1.Name     = "uiTabPage1";
     this.uiTabPage1.Size     = new System.Drawing.Size(734, 565);
     this.uiTabPage1.TabStop  = true;
     this.uiTabPage1.Text     = "New Tab";
     //
     // NuGenRegistryMonitorMainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(736, 567);
     this.Controls.Add(this.panel1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.Name          = "NuGenRegistryMonitorMainForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Text          = "Registry Monitor";
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).EndInit();
     this.uiTab1.ResumeLayout(false);
     this.uiTabPage1.ResumeLayout(false);
     this.uiTabPage1.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()
 {
     this.components = new System.ComponentModel.Container();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_themmoi_thuoc));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.chkNoi_Tru = new Janus.Windows.EditControls.UICheckBox();
     this.chkNgoaitru = new Janus.Windows.EditControls.UICheckBox();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.txtDangBaoChe = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label15 = new System.Windows.Forms.Label();
     this.txtBut = new MaskedTextBox.MaskedTextBox();
     this.txtDesc = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txtSoluong = new MaskedTextBox.MaskedTextBox();
     this.txtGiaBHYT = new MaskedTextBox.MaskedTextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.txtDongia = new MaskedTextBox.MaskedTextBox();
     this.txtPTDT = new MaskedTextBox.MaskedTextBox();
     this.txtPTTT = new MaskedTextBox.MaskedTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.chkTutuc = new Janus.Windows.EditControls.UICheckBox();
     this.label9 = new System.Windows.Forms.Label();
     this.optNoitru = new System.Windows.Forms.RadioButton();
     this.optNgoai = new System.Windows.Forms.RadioButton();
     this.optAll = new System.Windows.Forms.RadioButton();
     this.txtQD31 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.lblMsg = new System.Windows.Forms.Label();
     this.txtDonvitinh = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.label4 = new System.Windows.Forms.Label();
     this.txtLoaithuoc = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtTEN_BHYT = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.cboKIEU_THUOC_VT = new Janus.Windows.EditControls.UIComboBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.chkHieuLuc = new Janus.Windows.EditControls.UICheckBox();
     this.txtNumber_Register = new System.Windows.Forms.TextBox();
     this.lab10 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.txtHangSX = new System.Windows.Forms.TextBox();
     this.txtNuocSX = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.txtContent = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.txtActice = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.cboDrugNature = new System.Windows.Forms.ComboBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtName = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtCode = new System.Windows.Forms.TextBox();
     this.Label5 = new System.Windows.Forms.Label();
     this.Label3 = new System.Windows.Forms.Label();
     this.txtID = new System.Windows.Forms.TextBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.cmdSave = new System.Windows.Forms.Button();
     this.cmdClose = new System.Windows.Forms.Button();
     this.chkThemlientuc = new Janus.Windows.EditControls.UICheckBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.lblDongiachia = new System.Windows.Forms.Label();
     this.txtSoluongchia = new MaskedTextBox.MaskedTextBox();
     this.chkChiathuoc = new System.Windows.Forms.CheckBox();
     this.txtDongiachia = new MaskedTextBox.MaskedTextBox();
     this.txtDonvichia = new VNS.HIS.UCs.AutoCompleteTextbox_Danhmucchung();
     this.label20 = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.GroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl1.Location = new System.Drawing.Point(2, 4);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(729, 473);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.TabStop = false;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.chkNoi_Tru);
     this.tabPage1.Controls.Add(this.chkNgoaitru);
     this.tabPage1.Controls.Add(this.GroupBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(721, 444);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Thông tin thuốc";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // chkNoi_Tru
     //
     this.chkNoi_Tru.Location = new System.Drawing.Point(216, 555);
     this.chkNoi_Tru.Name = "chkNoi_Tru";
     this.chkNoi_Tru.Size = new System.Drawing.Size(175, 23);
     this.chkNoi_Tru.TabIndex = 24;
     this.chkNoi_Tru.Text = "&Cho bệnh nhân nội trú";
     //
     // chkNgoaitru
     //
     this.chkNgoaitru.Location = new System.Drawing.Point(10, 555);
     this.chkNgoaitru.Name = "chkNgoaitru";
     this.chkNgoaitru.Size = new System.Drawing.Size(175, 23);
     this.chkNgoaitru.TabIndex = 23;
     this.chkNgoaitru.Text = "&Cho bệnh nhân ngoại trú";
     //
     // GroupBox1
     //
     this.GroupBox1.BackColor = System.Drawing.SystemColors.Control;
     this.GroupBox1.Controls.Add(this.label20);
     this.GroupBox1.Controls.Add(this.txtDonvichia);
     this.GroupBox1.Controls.Add(this.txtDongiachia);
     this.GroupBox1.Controls.Add(this.chkChiathuoc);
     this.GroupBox1.Controls.Add(this.lblDongiachia);
     this.GroupBox1.Controls.Add(this.txtSoluongchia);
     this.GroupBox1.Controls.Add(this.txtDangBaoChe);
     this.GroupBox1.Controls.Add(this.label15);
     this.GroupBox1.Controls.Add(this.txtBut);
     this.GroupBox1.Controls.Add(this.txtDesc);
     this.GroupBox1.Controls.Add(this.label14);
     this.GroupBox1.Controls.Add(this.txtSoluong);
     this.GroupBox1.Controls.Add(this.txtGiaBHYT);
     this.GroupBox1.Controls.Add(this.label13);
     this.GroupBox1.Controls.Add(this.txtDongia);
     this.GroupBox1.Controls.Add(this.txtPTDT);
     this.GroupBox1.Controls.Add(this.txtPTTT);
     this.GroupBox1.Controls.Add(this.label11);
     this.GroupBox1.Controls.Add(this.label10);
     this.GroupBox1.Controls.Add(this.chkTutuc);
     this.GroupBox1.Controls.Add(this.label9);
     this.GroupBox1.Controls.Add(this.optNoitru);
     this.GroupBox1.Controls.Add(this.optNgoai);
     this.GroupBox1.Controls.Add(this.optAll);
     this.GroupBox1.Controls.Add(this.txtQD31);
     this.GroupBox1.Controls.Add(this.label8);
     this.GroupBox1.Controls.Add(this.lblMsg);
     this.GroupBox1.Controls.Add(this.txtDonvitinh);
     this.GroupBox1.Controls.Add(this.label4);
     this.GroupBox1.Controls.Add(this.txtLoaithuoc);
     this.GroupBox1.Controls.Add(this.label2);
     this.GroupBox1.Controls.Add(this.txtTEN_BHYT);
     this.GroupBox1.Controls.Add(this.label29);
     this.GroupBox1.Controls.Add(this.label28);
     this.GroupBox1.Controls.Add(this.cboKIEU_THUOC_VT);
     this.GroupBox1.Controls.Add(this.label27);
     this.GroupBox1.Controls.Add(this.label26);
     this.GroupBox1.Controls.Add(this.chkHieuLuc);
     this.GroupBox1.Controls.Add(this.txtNumber_Register);
     this.GroupBox1.Controls.Add(this.lab10);
     this.GroupBox1.Controls.Add(this.label19);
     this.GroupBox1.Controls.Add(this.txtHangSX);
     this.GroupBox1.Controls.Add(this.txtNuocSX);
     this.GroupBox1.Controls.Add(this.label18);
     this.GroupBox1.Controls.Add(this.txtContent);
     this.GroupBox1.Controls.Add(this.label12);
     this.GroupBox1.Controls.Add(this.txtActice);
     this.GroupBox1.Controls.Add(this.label17);
     this.GroupBox1.Controls.Add(this.cboDrugNature);
     this.GroupBox1.Controls.Add(this.label16);
     this.GroupBox1.Controls.Add(this.label7);
     this.GroupBox1.Controls.Add(this.txtName);
     this.GroupBox1.Controls.Add(this.label6);
     this.GroupBox1.Controls.Add(this.txtCode);
     this.GroupBox1.Controls.Add(this.Label5);
     this.GroupBox1.Controls.Add(this.Label3);
     this.GroupBox1.Controls.Add(this.txtID);
     this.GroupBox1.Controls.Add(this.Label1);
     this.GroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupBox1.Location = new System.Drawing.Point(3, 3);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(715, 438);
     this.GroupBox1.TabIndex = 0;
     this.GroupBox1.TabStop = false;
     this.GroupBox1.Text = "Thông tin chi tiết";
     //
     // txtDangBaoChe
     //
     this.txtDangBaoChe._backcolor = System.Drawing.Color.WhiteSmoke;
     this.txtDangBaoChe._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDangBaoChe.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDangBaoChe.AutoCompleteList")));
     this.txtDangBaoChe.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDangBaoChe.CaseSensitive = false;
     this.txtDangBaoChe.CompareNoID = true;
     this.txtDangBaoChe.DefaultCode = "-1";
     this.txtDangBaoChe.DefaultID = "-1";
     this.txtDangBaoChe.Drug_ID = null;
     this.txtDangBaoChe.ExtraWidth = 0;
     this.txtDangBaoChe.FillValueAfterSelect = false;
     this.txtDangBaoChe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDangBaoChe.Location = new System.Drawing.Point(400, 159);
     this.txtDangBaoChe.MaxHeight = 289;
     this.txtDangBaoChe.MinTypedCharacters = 2;
     this.txtDangBaoChe.MyCode = "-1";
     this.txtDangBaoChe.MyID = "-1";
     this.txtDangBaoChe.Name = "txtDangBaoChe";
     this.txtDangBaoChe.RaiseEvent = false;
     this.txtDangBaoChe.RaiseEventEnter = false;
     this.txtDangBaoChe.RaiseEventEnterWhenEmpty = false;
     this.txtDangBaoChe.SelectedIndex = -1;
     this.txtDangBaoChe.Size = new System.Drawing.Size(307, 21);
     this.txtDangBaoChe.splitChar = '@';
     this.txtDangBaoChe.splitCharIDAndCode = '#';
     this.txtDangBaoChe.TabIndex = 7;
     this.txtDangBaoChe.TakeCode = false;
     this.txtDangBaoChe.txtMyCode = null;
     this.txtDangBaoChe.txtMyCode_Edit = null;
     this.txtDangBaoChe.txtMyID = null;
     this.txtDangBaoChe.txtMyID_Edit = null;
     this.txtDangBaoChe.txtMyName = null;
     this.txtDangBaoChe.txtMyName_Edit = null;
     this.txtDangBaoChe.txtNext = null;
     //
     // label15
     //
     this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(326, 315);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(68, 20);
     this.label15.TabIndex = 1722;
     this.label15.Text = "Chia bút:";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.label15, "Giới hạn thuốc khi bác sĩ kê đơn. Để giá trị<=0 nếu không muốn giới hạn");
     //
     // txtBut
     //
     this.txtBut.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtBut.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBut.Location = new System.Drawing.Point(400, 315);
     this.txtBut.Masked = MaskedTextBox.Mask.Digit;
     this.txtBut.Name = "txtBut";
     this.txtBut.Size = new System.Drawing.Size(308, 21);
     this.txtBut.TabIndex = 20;
     this.txtBut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtDesc
     //
     this.txtDesc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDesc.BackColor = System.Drawing.Color.White;
     this.txtDesc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDesc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDesc.Location = new System.Drawing.Point(113, 365);
     this.txtDesc.MaxLength = 100;
     this.txtDesc.Name = "txtDesc";
     this.txtDesc.Size = new System.Drawing.Size(594, 21);
     this.txtDesc.TabIndex = 25;
     //
     // label14
     //
     this.label14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(0, 316);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(107, 20);
     this.label14.TabIndex = 1720;
     this.label14.Text = "Giới hạn kê đơn:";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.label14, "Giới hạn thuốc khi bác sĩ kê đơn. Để giá trị<=0 nếu không muốn giới hạn");
     //
     // txtSoluong
     //
     this.txtSoluong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSoluong.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoluong.Location = new System.Drawing.Point(113, 316);
     this.txtSoluong.Masked = MaskedTextBox.Mask.Digit;
     this.txtSoluong.Name = "txtSoluong";
     this.txtSoluong.Size = new System.Drawing.Size(182, 21);
     this.txtSoluong.TabIndex = 19;
     this.txtSoluong.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtGiaBHYT
     //
     this.txtGiaBHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtGiaBHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiaBHYT.Location = new System.Drawing.Point(400, 211);
     this.txtGiaBHYT.Masked = MaskedTextBox.Mask.Decimal;
     this.txtGiaBHYT.Name = "txtGiaBHYT";
     this.txtGiaBHYT.Size = new System.Drawing.Size(307, 21);
     this.txtGiaBHYT.TabIndex = 11;
     this.txtGiaBHYT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label13
     //
     this.label13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(312, 213);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(82, 15);
     this.label13.TabIndex = 1620;
     this.label13.Text = "Giá BHYT:";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtDongia
     //
     this.txtDongia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDongia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDongia.Location = new System.Drawing.Point(113, 211);
     this.txtDongia.Masked = MaskedTextBox.Mask.Decimal;
     this.txtDongia.Name = "txtDongia";
     this.txtDongia.Size = new System.Drawing.Size(182, 21);
     this.txtDongia.TabIndex = 10;
     this.txtDongia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtPTDT
     //
     this.txtPTDT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPTDT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPTDT.Location = new System.Drawing.Point(113, 238);
     this.txtPTDT.Masked = MaskedTextBox.Mask.Decimal;
     this.txtPTDT.Name = "txtPTDT";
     this.txtPTDT.Size = new System.Drawing.Size(183, 21);
     this.txtPTDT.TabIndex = 12;
     this.txtPTDT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtPTTT
     //
     this.txtPTTT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPTTT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPTTT.Location = new System.Drawing.Point(400, 236);
     this.txtPTTT.Masked = MaskedTextBox.Mask.Decimal;
     this.txtPTTT.Name = "txtPTTT";
     this.txtPTTT.Size = new System.Drawing.Size(307, 21);
     this.txtPTTT.TabIndex = 13;
     this.txtPTTT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label11
     //
     this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(326, 238);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(77, 15);
     this.label11.TabIndex = 437;
     this.label11.Text = "Phụ thu TT:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label10
     //
     this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(7, 240);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(93, 15);
     this.label10.TabIndex = 435;
     this.label10.Text = "Phụ thu ĐT";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // chkTutuc
     //
     this.chkTutuc.Checked = true;
     this.chkTutuc.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkTutuc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTutuc.Location = new System.Drawing.Point(576, 393);
     this.chkTutuc.Name = "chkTutuc";
     this.chkTutuc.Size = new System.Drawing.Size(131, 23);
     this.chkTutuc.TabIndex = 28;
     this.chkTutuc.TabStop = false;
     this.chkTutuc.Text = "Thuốc tự túc?";
     this.toolTip1.SetToolTip(this.chkTutuc, "Chọn mục này nếu muốn thuốc này luôn tự túc đối với đối tượng BHYT cho dù có thiế" +
     "t lập giá quan hệ hay không?");
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(12, 394);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(88, 23);
     this.label9.TabIndex = 434;
     this.label9.Text = "Dùng cho:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // optNoitru
     //
     this.optNoitru.AutoSize = true;
     this.optNoitru.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.optNoitru.Location = new System.Drawing.Point(229, 396);
     this.optNoitru.Name = "optNoitru";
     this.optNoitru.Size = new System.Drawing.Size(68, 19);
     this.optNoitru.TabIndex = 26;
     this.optNoitru.Text = "Nội trú?";
     this.optNoitru.UseVisualStyleBackColor = true;
     //
     // optNgoai
     //
     this.optNgoai.AutoSize = true;
     this.optNgoai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.optNgoai.Location = new System.Drawing.Point(329, 396);
     this.optNgoai.Name = "optNgoai";
     this.optNgoai.Size = new System.Drawing.Size(75, 19);
     this.optNgoai.TabIndex = 26;
     this.optNgoai.Text = "Ngoại trú";
     this.optNgoai.UseVisualStyleBackColor = true;
     //
     // optAll
     //
     this.optAll.AutoSize = true;
     this.optAll.Checked = true;
     this.optAll.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.optAll.Location = new System.Drawing.Point(106, 396);
     this.optAll.Name = "optAll";
     this.optAll.Size = new System.Drawing.Size(114, 19);
     this.optAll.TabIndex = 26;
     this.optAll.TabStop = true;
     this.optAll.Text = "Nội trú/Ngoại trú";
     this.optAll.UseVisualStyleBackColor = true;
     //
     // txtQD31
     //
     this.txtQD31.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtQD31.BackColor = System.Drawing.Color.White;
     this.txtQD31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtQD31.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQD31.Location = new System.Drawing.Point(592, 264);
     this.txtQD31.MaxLength = 15;
     this.txtQD31.Name = "txtQD31";
     this.txtQD31.Size = new System.Drawing.Size(115, 21);
     this.txtQD31.TabIndex = 16;
     this.txtQD31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(534, 266);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(56, 15);
     this.label8.TabIndex = 430;
     this.label8.Text = "TT-QĐ31";
     //
     // lblMsg
     //
     this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.lblMsg.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMsg.Location = new System.Drawing.Point(3, 417);
     this.lblMsg.Name = "lblMsg";
     this.lblMsg.Size = new System.Drawing.Size(709, 18);
     this.lblMsg.TabIndex = 112;
     this.lblMsg.Text = "Thông báo";
     this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtDonvitinh
     //
     this.txtDonvitinh._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtDonvitinh._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDonvitinh.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDonvitinh.AutoCompleteList")));
     this.txtDonvitinh.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDonvitinh.CaseSensitive = false;
     this.txtDonvitinh.CompareNoID = true;
     this.txtDonvitinh.DefaultCode = "-1";
     this.txtDonvitinh.DefaultID = "-1";
     this.txtDonvitinh.Drug_ID = null;
     this.txtDonvitinh.ExtraWidth = 0;
     this.txtDonvitinh.FillValueAfterSelect = false;
     this.txtDonvitinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDonvitinh.LOAI_DANHMUC = "DONVITINH";
     this.txtDonvitinh.Location = new System.Drawing.Point(400, 185);
     this.txtDonvitinh.MaxHeight = -1;
     this.txtDonvitinh.MinTypedCharacters = 2;
     this.txtDonvitinh.MyCode = "-1";
     this.txtDonvitinh.MyID = "-1";
     this.txtDonvitinh.Name = "txtDonvitinh";
     this.txtDonvitinh.RaiseEvent = false;
     this.txtDonvitinh.RaiseEventEnter = false;
     this.txtDonvitinh.RaiseEventEnterWhenEmpty = false;
     this.txtDonvitinh.SelectedIndex = -1;
     this.txtDonvitinh.Size = new System.Drawing.Size(307, 21);
     this.txtDonvitinh.splitChar = '@';
     this.txtDonvitinh.splitCharIDAndCode = '#';
     this.txtDonvitinh.TabIndex = 9;
     this.txtDonvitinh.TakeCode = false;
     this.txtDonvitinh.txtMyCode = null;
     this.txtDonvitinh.txtMyCode_Edit = null;
     this.txtDonvitinh.txtMyID = null;
     this.txtDonvitinh.txtMyID_Edit = null;
     this.txtDonvitinh.txtMyName = null;
     this.txtDonvitinh.txtMyName_Edit = null;
     this.txtDonvitinh.txtNext = null;
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Red;
     this.label4.Location = new System.Drawing.Point(306, 185);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(88, 23);
     this.label4.TabIndex = 111;
     this.label4.Text = "Đơn vị  tính";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtLoaithuoc
     //
     this.txtLoaithuoc._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtLoaithuoc._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoaithuoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoaithuoc.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtLoaithuoc.AutoCompleteList")));
     this.txtLoaithuoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtLoaithuoc.CaseSensitive = false;
     this.txtLoaithuoc.CompareNoID = true;
     this.txtLoaithuoc.DefaultCode = "-1";
     this.txtLoaithuoc.DefaultID = "-1";
     this.txtLoaithuoc.Drug_ID = null;
     this.txtLoaithuoc.ExtraWidth = 100;
     this.txtLoaithuoc.FillValueAfterSelect = false;
     this.txtLoaithuoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLoaithuoc.Location = new System.Drawing.Point(113, 77);
     this.txtLoaithuoc.MaxHeight = 300;
     this.txtLoaithuoc.MinTypedCharacters = 2;
     this.txtLoaithuoc.MyCode = null;
     this.txtLoaithuoc.MyID = null;
     this.txtLoaithuoc.Name = "txtLoaithuoc";
     this.txtLoaithuoc.RaiseEvent = false;
     this.txtLoaithuoc.RaiseEventEnter = false;
     this.txtLoaithuoc.RaiseEventEnterWhenEmpty = true;
     this.txtLoaithuoc.SelectedIndex = -1;
     this.txtLoaithuoc.Size = new System.Drawing.Size(594, 21);
     this.txtLoaithuoc.splitChar = '@';
     this.txtLoaithuoc.splitCharIDAndCode = '#';
     this.txtLoaithuoc.TabIndex = 3;
     this.txtLoaithuoc.TakeCode = false;
     this.txtLoaithuoc.txtMyCode = null;
     this.txtLoaithuoc.txtMyCode_Edit = null;
     this.txtLoaithuoc.txtMyID = null;
     this.txtLoaithuoc.txtMyID_Edit = null;
     this.txtLoaithuoc.txtMyName = null;
     this.txtLoaithuoc.txtMyName_Edit = null;
     this.txtLoaithuoc.txtNext = null;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Red;
     this.label2.Location = new System.Drawing.Point(11, 77);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(88, 23);
     this.label2.TabIndex = 109;
     this.label2.Text = "Nhóm thuốc";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtTEN_BHYT
     //
     this.txtTEN_BHYT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTEN_BHYT.BackColor = System.Drawing.Color.White;
     this.txtTEN_BHYT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTEN_BHYT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTEN_BHYT.Location = new System.Drawing.Point(113, 131);
     this.txtTEN_BHYT.MaxLength = 100;
     this.txtTEN_BHYT.Name = "txtTEN_BHYT";
     this.txtTEN_BHYT.Size = new System.Drawing.Size(594, 21);
     this.txtTEN_BHYT.TabIndex = 5;
     //
     // label29
     //
     this.label29.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(11, 132);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(88, 23);
     this.label29.TabIndex = 50;
     this.label29.Text = "Tên BHYT";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.label29, "Ctrl+C để copy tên thuốc");
     //
     // label28
     //
     this.label28.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.ForeColor = System.Drawing.Color.Red;
     this.label28.Location = new System.Drawing.Point(11, 52);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(88, 23);
     this.label28.TabIndex = 48;
     this.label28.Text = "Kiểu thuốc VT";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboKIEU_THUOC_VT
     //
     this.cboKIEU_THUOC_VT.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboKIEU_THUOC_VT.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboKIEU_THUOC_VT.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "Thuốc";
     uiComboBoxItem1.Value = "THUOC";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "Vật tư y tế";
     uiComboBoxItem2.Value = "VT";
     this.cboKIEU_THUOC_VT.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2});
     this.cboKIEU_THUOC_VT.Location = new System.Drawing.Point(113, 51);
     this.cboKIEU_THUOC_VT.Name = "cboKIEU_THUOC_VT";
     this.cboKIEU_THUOC_VT.Size = new System.Drawing.Size(594, 21);
     this.cboKIEU_THUOC_VT.TabIndex = 2;
     this.cboKIEU_THUOC_VT.Text = "Kiểu thuốc vật tư";
     //
     // label27
     //
     this.label27.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(301, 161);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(93, 20);
     this.label27.TabIndex = 44;
     this.label27.Text = "Dạng bào chế";
     this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label26
     //
     this.label26.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.ForeColor = System.Drawing.Color.Red;
     this.label26.Location = new System.Drawing.Point(363, 165);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(12, 15);
     this.label26.TabIndex = 41;
     this.label26.Text = "*";
     //
     // chkHieuLuc
     //
     this.chkHieuLuc.Checked = true;
     this.chkHieuLuc.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkHieuLuc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHieuLuc.Location = new System.Drawing.Point(435, 392);
     this.chkHieuLuc.Name = "chkHieuLuc";
     this.chkHieuLuc.Size = new System.Drawing.Size(81, 28);
     this.chkHieuLuc.TabIndex = 27;
     this.chkHieuLuc.TabStop = false;
     this.chkHieuLuc.Text = "Hiệu lực?";
     //
     // txtNumber_Register
     //
     this.txtNumber_Register.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNumber_Register.BackColor = System.Drawing.Color.White;
     this.txtNumber_Register.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNumber_Register.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNumber_Register.Location = new System.Drawing.Point(400, 263);
     this.txtNumber_Register.MaxLength = 15;
     this.txtNumber_Register.Name = "txtNumber_Register";
     this.txtNumber_Register.Size = new System.Drawing.Size(131, 21);
     this.txtNumber_Register.TabIndex = 15;
     this.txtNumber_Register.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lab10
     //
     this.lab10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lab10.Location = new System.Drawing.Point(301, 266);
     this.lab10.Name = "lab10";
     this.lab10.Size = new System.Drawing.Size(93, 15);
     this.lab10.TabIndex = 31;
     this.lab10.Text = "Số ĐK";
     this.lab10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label19
     //
     this.label19.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(11, 293);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(88, 23);
     this.label19.TabIndex = 30;
     this.label19.Text = "Nước sản xuất";
     this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtHangSX
     //
     this.txtHangSX.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtHangSX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtHangSX.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHangSX.Location = new System.Drawing.Point(400, 290);
     this.txtHangSX.MaxLength = 100;
     this.txtHangSX.Name = "txtHangSX";
     this.txtHangSX.Size = new System.Drawing.Size(308, 21);
     this.txtHangSX.TabIndex = 18;
     //
     // txtNuocSX
     //
     this.txtNuocSX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtNuocSX.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNuocSX.Location = new System.Drawing.Point(113, 290);
     this.txtNuocSX.MaxLength = 100;
     this.txtNuocSX.Name = "txtNuocSX";
     this.txtNuocSX.Size = new System.Drawing.Size(182, 21);
     this.txtNuocSX.TabIndex = 17;
     //
     // label18
     //
     this.label18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(301, 294);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(93, 15);
     this.label18.TabIndex = 27;
     this.label18.Text = "Hãng sản xuất";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtContent
     //
     this.txtContent.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtContent.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtContent.Location = new System.Drawing.Point(113, 263);
     this.txtContent.MaxLength = 100;
     this.txtContent.Name = "txtContent";
     this.txtContent.Size = new System.Drawing.Size(182, 21);
     this.txtContent.TabIndex = 14;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(11, 262);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(88, 23);
     this.label12.TabIndex = 25;
     this.label12.Text = "Hàm lượng";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtActice
     //
     this.txtActice.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtActice.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtActice.Location = new System.Drawing.Point(113, 159);
     this.txtActice.MaxLength = 100;
     this.txtActice.Name = "txtActice";
     this.txtActice.Size = new System.Drawing.Size(182, 21);
     this.txtActice.TabIndex = 6;
     //
     // label17
     //
     this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(11, 164);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(88, 23);
     this.label17.TabIndex = 24;
     this.label17.Text = "Hoạt chất:";
     this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboDrugNature
     //
     this.cboDrugNature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboDrugNature.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboDrugNature.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboDrugNature.FormattingEnabled = true;
     this.cboDrugNature.ItemHeight = 15;
     this.cboDrugNature.Items.AddRange(new object[] {
     "Không độc hại",
     "Độc hại cần cảnh báo"});
     this.cboDrugNature.Location = new System.Drawing.Point(113, 185);
     this.cboDrugNature.Name = "cboDrugNature";
     this.cboDrugNature.Size = new System.Drawing.Size(181, 23);
     this.cboDrugNature.TabIndex = 8;
     //
     // label16
     //
     this.label16.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(12, 187);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(88, 23);
     this.label16.TabIndex = 22;
     this.label16.Text = "Tính chất";
     this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(3, 213);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(93, 15);
     this.label7.TabIndex = 12;
     this.label7.Text = "Giá Dịch vụ";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.BackColor = System.Drawing.Color.White;
     this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtName.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtName.Location = new System.Drawing.Point(113, 104);
     this.txtName.MaxLength = 100;
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(594, 21);
     this.txtName.TabIndex = 4;
     this.txtName.Leave += new System.EventHandler(this.txtName_Leave);
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Red;
     this.label6.Location = new System.Drawing.Point(11, 103);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(88, 23);
     this.label6.TabIndex = 10;
     this.label6.Text = "Tên thuốc:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtCode
     //
     this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCode.BackColor = System.Drawing.Color.White;
     this.txtCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCode.Enabled = false;
     this.txtCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCode.Location = new System.Drawing.Point(400, 27);
     this.txtCode.MaxLength = 20;
     this.txtCode.Name = "txtCode";
     this.txtCode.Size = new System.Drawing.Size(307, 21);
     this.txtCode.TabIndex = 1;
     //
     // Label5
     //
     this.Label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.ForeColor = System.Drawing.Color.Red;
     this.Label5.Location = new System.Drawing.Point(301, 30);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(93, 15);
     this.Label5.TabIndex = 7;
     this.Label5.Text = "Mã thuốc:";
     this.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Label3
     //
     this.Label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location = new System.Drawing.Point(12, 365);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(88, 23);
     this.Label3.TabIndex = 4;
     this.Label3.Text = "Mô tả thêm:";
     this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.Label3, "Với thuốc có tính chất độc hại có thể ghi vào đây dòng cảnh báo khi kê đơn");
     //
     // txtID
     //
     this.txtID.BackColor = System.Drawing.Color.White;
     this.txtID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtID.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtID.Location = new System.Drawing.Point(113, 26);
     this.txtID.MaxLength = 3;
     this.txtID.Name = "txtID";
     this.txtID.Size = new System.Drawing.Size(181, 21);
     this.txtID.TabIndex = 0;
     //
     // Label1
     //
     this.Label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.Red;
     this.Label1.Location = new System.Drawing.Point(11, 25);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(88, 23);
     this.Label1.TabIndex = 0;
     this.Label1.Text = "ID";
     this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmdSave
     //
     this.cmdSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Image = ((System.Drawing.Image)(resources.GetObject("cmdSave.Image")));
     this.cmdSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.cmdSave.Location = new System.Drawing.Point(214, 483);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(138, 38);
     this.cmdSave.TabIndex = 29;
     this.cmdSave.Text = "Ghi(Ctrl+S)";
     this.cmdSave.UseVisualStyleBackColor = true;
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // cmdClose
     //
     this.cmdClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdClose.Image = ((System.Drawing.Image)(resources.GetObject("cmdClose.Image")));
     this.cmdClose.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.cmdClose.Location = new System.Drawing.Point(357, 483);
     this.cmdClose.Name = "cmdClose";
     this.cmdClose.Size = new System.Drawing.Size(139, 38);
     this.cmdClose.TabIndex = 30;
     this.cmdClose.Text = "Thoát(Esc)";
     this.cmdClose.UseVisualStyleBackColor = true;
     this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
     //
     // chkThemlientuc
     //
     this.chkThemlientuc.Checked = true;
     this.chkThemlientuc.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkThemlientuc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkThemlientuc.Location = new System.Drawing.Point(9, 489);
     this.chkThemlientuc.Name = "chkThemlientuc";
     this.chkThemlientuc.Size = new System.Drawing.Size(201, 23);
     this.chkThemlientuc.TabIndex = 27;
     this.chkThemlientuc.TabStop = false;
     this.chkThemlientuc.Text = "Thêm mới liên tục?";
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp";
     //
     // lblDongiachia
     //
     this.lblDongiachia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDongiachia.Location = new System.Drawing.Point(326, 340);
     this.lblDongiachia.Name = "lblDongiachia";
     this.lblDongiachia.Size = new System.Drawing.Size(68, 20);
     this.lblDongiachia.TabIndex = 1726;
     this.lblDongiachia.Text = "Đơn giá chia";
     this.lblDongiachia.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.lblDongiachia, "Giới hạn thuốc khi bác sĩ kê đơn. Để giá trị<=0 nếu không muốn giới hạn");
     //
     // txtSoluongchia
     //
     this.txtSoluongchia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSoluongchia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoluongchia.Location = new System.Drawing.Point(113, 340);
     this.txtSoluongchia.Masked = MaskedTextBox.Mask.Digit;
     this.txtSoluongchia.Name = "txtSoluongchia";
     this.txtSoluongchia.Size = new System.Drawing.Size(182, 21);
     this.txtSoluongchia.TabIndex = 22;
     this.txtSoluongchia.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // chkChiathuoc
     //
     this.chkChiathuoc.AutoSize = true;
     this.chkChiathuoc.Location = new System.Drawing.Point(14, 340);
     this.chkChiathuoc.Name = "chkChiathuoc";
     this.chkChiathuoc.Size = new System.Drawing.Size(92, 20);
     this.chkChiathuoc.TabIndex = 21;
     this.chkChiathuoc.Text = "Chia thuốc:";
     this.chkChiathuoc.UseVisualStyleBackColor = true;
     //
     // txtDongiachia
     //
     this.txtDongiachia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDongiachia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDongiachia.Location = new System.Drawing.Point(400, 340);
     this.txtDongiachia.Masked = MaskedTextBox.Mask.Decimal;
     this.txtDongiachia.Name = "txtDongiachia";
     this.txtDongiachia.Size = new System.Drawing.Size(131, 21);
     this.txtDongiachia.TabIndex = 23;
     this.txtDongiachia.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtDonvichia
     //
     this.txtDonvichia._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtDonvichia._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDonvichia.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtDonvichia.AutoCompleteList")));
     this.txtDonvichia.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtDonvichia.CaseSensitive = false;
     this.txtDonvichia.CompareNoID = true;
     this.txtDonvichia.DefaultCode = "-1";
     this.txtDonvichia.DefaultID = "-1";
     this.txtDonvichia.Drug_ID = null;
     this.txtDonvichia.ExtraWidth = 0;
     this.txtDonvichia.FillValueAfterSelect = false;
     this.txtDonvichia.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDonvichia.LOAI_DANHMUC = "DONVITINH";
     this.txtDonvichia.Location = new System.Drawing.Point(592, 340);
     this.txtDonvichia.MaxHeight = -1;
     this.txtDonvichia.MinTypedCharacters = 2;
     this.txtDonvichia.MyCode = "-1";
     this.txtDonvichia.MyID = "-1";
     this.txtDonvichia.Name = "txtDonvichia";
     this.txtDonvichia.RaiseEvent = false;
     this.txtDonvichia.RaiseEventEnter = false;
     this.txtDonvichia.RaiseEventEnterWhenEmpty = false;
     this.txtDonvichia.SelectedIndex = -1;
     this.txtDonvichia.Size = new System.Drawing.Size(116, 21);
     this.txtDonvichia.splitChar = '@';
     this.txtDonvichia.splitCharIDAndCode = '#';
     this.txtDonvichia.TabIndex = 24;
     this.txtDonvichia.TakeCode = false;
     this.txtDonvichia.txtMyCode = null;
     this.txtDonvichia.txtMyCode_Edit = null;
     this.txtDonvichia.txtMyID = null;
     this.txtDonvichia.txtMyID_Edit = null;
     this.txtDonvichia.txtMyName = null;
     this.txtDonvichia.txtMyName_Edit = null;
     this.txtDonvichia.txtNext = null;
     //
     // label20
     //
     this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.Black;
     this.label20.Location = new System.Drawing.Point(534, 340);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(56, 23);
     this.label20.TabIndex = 1730;
     this.label20.Text = "Đv chia:";
     this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // frm_themmoi_thuoc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ClientSize = new System.Drawing.Size(732, 530);
     this.Controls.Add(this.chkThemlientuc);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdSave);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "frm_themmoi_thuoc";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thông tin thuốc";
     this.Load += new System.EventHandler(this.frmDrug_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
//
//    #region Net Performance
//
//    void NetPerformanceInit()
//    {
//      PerfNet= new perfo();
//    }
//    void NetPerfoResultCB(string rx, string tx, string total)
//    {
//      statusBar1.Panels[1].Text = tx + " TX";
//      statusBar1.Panels[2].Text = rx + " RX";
//      textBoxNetRx.Text  =  rx ;
//      textBoxNetTx.Text  =  tx ;
//    }
//
//    private string SelectNetCard()
//    {
//      NetDevice n = new NetDevice(ref PerfNet);
//      n.ShowDialog();
//      if(n.DialogResult == DialogResult.OK)
//      {
//        return n.comboBox1.Text;
//      }
//      return null;
//    }
//
//    private void button4_Click(object sender, System.EventArgs e)
//    {
//      if(!PerfNet.IsRunning)
//      {
//        NetPerfoResult p = new NetPerfoResult(NetPerfoResultCB);
//        PerfNet.SetPerfoCallback(p);
//        string Card = SelectNetCard();
//        if(Card != null)
//        {
//          PerfNet.NetDevice = Card;
//          PerfNet.Start();
//          button4.BackColor = Color.Red;
//          button4.Text = "STOP";
//        }
//      }
//      else
//      {
//        button4.Text = "START";
//        button4.BackColor = Color.PaleGreen;
//        PerfNet.Stop();
//        statusBar1.Panels[1].Text = "0";
//        statusBar1.Panels[2].Text = "0";
//        textBoxNetRx.Text  =  "0";
//        textBoxNetTx.Text  =  "0";
//      }
//    }
//    #endregion

//    #region Mini Terminal
//
//    private void MiniTermInit()
//    {
//      UpdateRxString pCB = new UpdateRxString(UpdateMiniTermRxWindow);
//      MiniT = new miniterminal(pCB);
//    
//    }
//    private void UpdateMiniTermRxWindow(string str)
//    {
//      textBoxRx.AppendText(str);
//    }
//
//
//    private void buttonComOpen_Click(object sender, System.EventArgs e)
//    {
//      if( buttonComOpen.Text.Equals("Close"))
//      {
//        MiniT.Close();
//        buttonComOpen.Text="Open";
//        textBoxTx.Enabled=false;
//        return;
//      }
//      MiniT.ComSettings.port     = comboBoxPort.Text;
//      MiniT.ComSettings.baudRate = int.Parse(comboBoxBaud.Text); 
//      if (!MiniT.Open())
//      {
//        MessageBox.Show("Port kann nicht geöffnet werden !", "Terminal", MessageBoxButtons.OK);
//      }
//      buttonComOpen.Text="Close";
//      textBoxTx.Enabled=true;
//    }
//
//    private void textBoxTx_TextChanged(object sender, System.EventArgs e)
//    {
//      string act = textBoxTx.Text;
//      string tmp = act.Substring(act.Length-1,1);
//
//      Encoding enc = Encoding.ASCII;
//      byte []  ch = new Byte[1];
//      ch  =  enc.GetBytes(tmp);
//
//      MiniT.SendByte(ch[0]);
//    }
//
//    private void checkBoxHex_CheckedChanged(object sender, System.EventArgs e)
//    {
//      MiniT.ShowRxHexValues = checkBoxHex.Checked; 
//    }
//
//    private void textBoxCR_TextChanged(object sender, System.EventArgs e)
//    {
//      if (textBoxCR.Text.Length > 2 || textBoxCR.Text == "")
//      {
//        textBoxCR.Text="";
//        return;
//      }
//      
//      try
//      {
//        // Convert hex string to unsigned integer
//        MiniT.SetCrHexValue = System.Convert.ToUInt32(textBoxCR.Text, 16);
//      }
//      catch (Exception exception) 
//      {
//        MiniT.SetCrHexValue=0xFFFF;
//        return;
//      }
//    }
//    #endregion

    #region misc
//    private void button3_Click(object sender, System.EventArgs e)
//    {
//      Form2 fEnv = new Form2();
//      string s="";
//      IDictionary d =  Environment.GetEnvironmentVariables();
//      foreach (DictionaryEntry de in d)
//      {
//        s += de.Key + " --- " + de.Value +"\r\n";
//      }
//      s +=  "Os Version "  + "   ---   " + Environment.OSVersion.ToString()  + "\r\n";
//      s +=  "CLR Version " + "   ---   " + Environment.Version.ToString()    + "\r\n";
//      s +=  "Res. Mem "    + "   ---   " + Environment.WorkingSet.ToString() + "\r\n";
//      
//      fEnv.WriteTextFeld(s);
//      fEnv.Show();
//    }

   

   
    /*
      private void button9_Click(object sender, System.EventArgs e)
      {
        monitor m = new monitor();

        textBoxTest.Lines = m.GetWmiOs();

        textBoxTest.Text += "--- CPU ---"         + "\r\n";
        textBoxTest.Text += m.DatCpu.Name         + "\r\n";
        textBoxTest.Text += m.DatCpu.Description  + "\r\n";;
        textBoxTest.Text += m.DatCpu.SpeedCurrent + "\r\n";;
        textBoxTest.Text += m.DatCpu.SpeedMax     + "\r\n";;

        textBoxTest.Text += "--- Manufactor ---"    + "\r\n";
        textBoxTest.Text += m.DatNetCard.Manufactor + "\r\n";
        textBoxTest.Text += m.DatNetCard.Type       + "\r\n";
        textBoxTest.Text += m.DatNetCard.MacAdress  + "\r\n";

        textBoxTest.Text += "--- OS ---"    + "\r\n";
        textBoxTest.Text += m.DatOs.Name    + "\r\n";
        textBoxTest.Text += m.DatOs.Version + "\r\n";
      }
      */
    #endregion

    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        this.components = new System.ComponentModel.Container();
        System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NuGenPathWatcherMainForm));
        this.timer1 = new System.Windows.Forms.Timer(this.components);
        this.label8 = new System.Windows.Forms.Label();
        this.comboBoxFwatchDrive = new Janus.Windows.EditControls.UIComboBox();
        this.listBoxFiles = new System.Windows.Forms.ListBox();
        this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
        this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
        this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
        this.uIButton1 = new Janus.Windows.EditControls.UIButton();
        this.uICheckBox1 = new Janus.Windows.EditControls.UICheckBox();
        this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
        this.uiTab1 = new Janus.Windows.UI.Tab.UITab();
        this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
        this.uiCommandManager1 = new Janus.Windows.UI.CommandBars.UICommandManager(this.components);
        this.BottomRebar1 = new Janus.Windows.UI.CommandBars.UIRebar();
        this.uiCommandBar1 = new Janus.Windows.UI.CommandBars.UICommandBar();
        this.Command01 = new Janus.Windows.UI.CommandBars.UICommand("Command0");
        this.Command11 = new Janus.Windows.UI.CommandBars.UICommand("Command1");
        this.Command21 = new Janus.Windows.UI.CommandBars.UICommand("Command2");
        this.Command31 = new Janus.Windows.UI.CommandBars.UICommand("Command3");
        this.Command51 = new Janus.Windows.UI.CommandBars.UICommand("Command5");
        this.imageList1 = new System.Windows.Forms.ImageList(this.components);
        this.Command0 = new Janus.Windows.UI.CommandBars.UICommand("Command0");
        this.Command1 = new Janus.Windows.UI.CommandBars.UICommand("Command1");
        this.Command2 = new Janus.Windows.UI.CommandBars.UICommand("Command2");
        this.Command3 = new Janus.Windows.UI.CommandBars.UICommand("Command3");
        this.Command41 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command42 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command43 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command44 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command45 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command46 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command47 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command48 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command49 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command410 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.Command4 = new Janus.Windows.UI.CommandBars.UICommand("Command4");
        this.toolStripDropDownButton1 = new Janus.Windows.UI.CommandBars.UICommand("Command5");
        this.LeftRebar1 = new Janus.Windows.UI.CommandBars.UIRebar();
        this.RightRebar1 = new Janus.Windows.UI.CommandBars.UIRebar();
        this.TopRebar1 = new Janus.Windows.UI.CommandBars.UIRebar();
        ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).BeginInit();
        this.uiTab1.SuspendLayout();
        this.uiTabPage1.SuspendLayout();
        ((System.ComponentModel.ISupportInitialize)(this.uiCommandManager1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.BottomRebar1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.uiCommandBar1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.LeftRebar1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.RightRebar1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.TopRebar1)).BeginInit();
        this.TopRebar1.SuspendLayout();
        this.SuspendLayout();
        // 
        // timer1
        // 
        this.timer1.Enabled = true;
        this.timer1.Interval = 1000;
        // 
        // label8
        // 
        this.label8.BackColor = System.Drawing.Color.Transparent;
        this.label8.Location = new System.Drawing.Point(116, 5);
        this.label8.Name = "label8";
        this.label8.Size = new System.Drawing.Size(37, 21);
        this.label8.TabIndex = 6;
        this.label8.Text = "Path:";
        this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
        // 
        // comboBoxFwatchDrive
        // 
        this.comboBoxFwatchDrive.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                    | System.Windows.Forms.AnchorStyles.Right)));
        this.comboBoxFwatchDrive.BackColor = System.Drawing.Color.White;
        this.comboBoxFwatchDrive.Location = new System.Drawing.Point(159, 6);
        this.comboBoxFwatchDrive.Name = "comboBoxFwatchDrive";
        this.comboBoxFwatchDrive.Size = new System.Drawing.Size(210, 20);
        this.comboBoxFwatchDrive.TabIndex = 5;
        this.comboBoxFwatchDrive.Text = "C:\\";
        this.comboBoxFwatchDrive.Enter += new System.EventHandler(this.comboBoxFwatchDrive_Enter);
        this.comboBoxFwatchDrive.SelectedIndexChanged += new System.EventHandler(this.comboBoxFwatchDrive_SelectedIndexChanged);
        // 
        // listBoxFiles
        // 
        this.listBoxFiles.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                    | System.Windows.Forms.AnchorStyles.Left)
                    | System.Windows.Forms.AnchorStyles.Right)));
        this.listBoxFiles.BackColor = System.Drawing.Color.White;
        this.listBoxFiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
        this.listBoxFiles.HorizontalScrollbar = true;
        this.listBoxFiles.Location = new System.Drawing.Point(11, 43);
        this.listBoxFiles.Name = "listBoxFiles";
        this.listBoxFiles.Size = new System.Drawing.Size(405, 234);
        this.listBoxFiles.TabIndex = 3;
        // 
        // saveFileDialog1
        // 
        this.saveFileDialog1.OverwritePrompt = false;
        this.saveFileDialog1.Title = "Choose a File ...";
        // 
        // uIButton1
        // 
        this.uIButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
        this.uIButton1.ButtonStyle = Janus.Windows.EditControls.ButtonStyle.Ellipsis;
        this.uIButton1.Location = new System.Drawing.Point(381, 5);
        this.uIButton1.Name = "uIButton1";
        this.uIButton1.Size = new System.Drawing.Size(41, 21);
        this.uIButton1.TabIndex = 11;
        this.uIButton1.UseThemes = false;
        this.uIButton1.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
        this.uIButton1.Click += new System.EventHandler(this.uIButton1_Click_1);
        // 
        // uICheckBox1
        // 
        this.uICheckBox1.BackColor = System.Drawing.Color.Transparent;
        this.uICheckBox1.Location = new System.Drawing.Point(7, 6);
        this.uICheckBox1.Name = "uICheckBox1";
        this.uICheckBox1.Size = new System.Drawing.Size(103, 20);
        this.uICheckBox1.TabIndex = 10;
        this.uICheckBox1.Text = "Always On Top";
        this.uICheckBox1.UseThemes = false;
        this.uICheckBox1.VisualStyle = Janus.Windows.UI.VisualStyle.VS2005;
        this.uICheckBox1.CheckedChanged += new System.EventHandler(this.uICheckBox1_CheckedChanged);
        // 
        // uiTab1
        // 
        this.uiTab1.BackColor = System.Drawing.Color.Transparent;
        this.uiTab1.Dock = System.Windows.Forms.DockStyle.Fill;
        this.uiTab1.Location = new System.Drawing.Point(0, 28);
        this.uiTab1.Name = "uiTab1";
        this.uiTab1.ShowTabs = false;
        this.uiTab1.Size = new System.Drawing.Size(427, 296);
        this.uiTab1.TabDisplay = Janus.Windows.UI.Tab.TabDisplay.Text;
        this.uiTab1.TabIndex = 12;
        this.uiTab1.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage1});
        this.uiTab1.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Office2007;
        // 
        // uiTabPage1
        // 
        this.uiTabPage1.Controls.Add(this.listBoxFiles);
        this.uiTabPage1.Controls.Add(this.uIButton1);
        this.uiTabPage1.Controls.Add(this.uICheckBox1);
        this.uiTabPage1.Controls.Add(this.comboBoxFwatchDrive);
        this.uiTabPage1.Controls.Add(this.label8);
        this.uiTabPage1.Location = new System.Drawing.Point(1, 1);
        this.uiTabPage1.Name = "uiTabPage1";
        this.uiTabPage1.Size = new System.Drawing.Size(425, 294);
        this.uiTabPage1.TabStop = true;
        this.uiTabPage1.Text = "New Tab";
        // 
        // uiCommandManager1
        // 
        this.uiCommandManager1.BottomRebar = this.BottomRebar1;
        this.uiCommandManager1.CommandBars.AddRange(new Janus.Windows.UI.CommandBars.UICommandBar[] {
            this.uiCommandBar1});
        this.uiCommandManager1.Commands.AddRange(new Janus.Windows.UI.CommandBars.UICommand[] {
            this.Command0,
            this.Command1,
            this.Command2,
            this.Command3,
            this.Command4,
            this.toolStripDropDownButton1});
        this.uiCommandManager1.ContainerControl = this;
        this.uiCommandManager1.Id = new System.Guid("c2663708-0a3b-4d29-8fdd-f47b1751c5cd");
        this.uiCommandManager1.LeftRebar = this.LeftRebar1;
        this.uiCommandManager1.RightRebar = this.RightRebar1;
        this.uiCommandManager1.TopRebar = this.TopRebar1;
        this.uiCommandManager1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
        // 
        // BottomRebar1
        // 
        this.BottomRebar1.CommandManager = this.uiCommandManager1;
        this.BottomRebar1.Dock = System.Windows.Forms.DockStyle.Bottom;
        this.BottomRebar1.Location = new System.Drawing.Point(0, 324);
        this.BottomRebar1.Name = "BottomRebar1";
        this.BottomRebar1.Size = new System.Drawing.Size(427, 0);
        // 
        // uiCommandBar1
        // 
        this.uiCommandBar1.AllowClose = Janus.Windows.UI.InheritableBoolean.False;
        this.uiCommandBar1.AllowCustomize = Janus.Windows.UI.InheritableBoolean.False;
        this.uiCommandBar1.CommandManager = this.uiCommandManager1;
        this.uiCommandBar1.Commands.AddRange(new Janus.Windows.UI.CommandBars.UICommand[] {
            this.Command01,
            this.Command11,
            this.Command21,
            this.Command31,
            this.Command51});
        this.uiCommandBar1.FullRow = true;
        this.uiCommandBar1.ImageList = this.imageList1;
        this.uiCommandBar1.Key = "CommandBar1";
        this.uiCommandBar1.Location = new System.Drawing.Point(0, 0);
        this.uiCommandBar1.Name = "uiCommandBar1";
        this.uiCommandBar1.RowIndex = 0;
        this.uiCommandBar1.ShowAddRemoveButton = Janus.Windows.UI.InheritableBoolean.False;
        this.uiCommandBar1.ShowCustomizeButton = Janus.Windows.UI.InheritableBoolean.False;
        this.uiCommandBar1.ShowToolTips = Janus.Windows.UI.InheritableBoolean.False;
        this.uiCommandBar1.Size = new System.Drawing.Size(427, 28);
        this.uiCommandBar1.Text = "CommandBar1";
        this.uiCommandBar1.CommandClick += new Janus.Windows.UI.CommandBars.CommandEventHandler(this.uiCommandBar1_CommandClick);
        // 
        // Command01
        // 
        this.Command01.ImageIndex = 0;
        this.Command01.Key = "Command0";
        this.Command01.Name = "Command01";
        // 
        // Command11
        // 
        this.Command11.ImageIndex = 1;
        this.Command11.Key = "Command1";
        this.Command11.Name = "Command11";
        // 
        // Command21
        // 
        this.Command21.ImageIndex = 2;
        this.Command21.Key = "Command2";
        this.Command21.Name = "Command21";
        // 
        // Command31
        // 
        this.Command31.Key = "Command3";
        this.Command31.Name = "Command31";
        this.Command31.ShowTextInContainers = Janus.Windows.UI.InheritableBoolean.True;
        // 
        // Command51
        // 
        this.Command51.Key = "Command5";
        this.Command51.Name = "Command51";
        // 
        // imageList1
        // 
        this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
        this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
        this.imageList1.Images.SetKeyName(0, "NavigateForward.png");
        this.imageList1.Images.SetKeyName(1, "NoAccess.png");
        this.imageList1.Images.SetKeyName(2, "Delete.png");
        // 
        // Command0
        // 
        this.Command0.Key = "Command0";
        this.Command0.Name = "Command0";
        this.Command0.Text = "Start";
        // 
        // Command1
        // 
        this.Command1.Key = "Command1";
        this.Command1.Name = "Command1";
        this.Command1.Text = "Stop";
        // 
        // Command2
        // 
        this.Command2.Key = "Command2";
        this.Command2.Name = "Command2";
        this.Command2.Text = "Clear Files";
        // 
        // Command3
        // 
        this.Command3.Commands.AddRange(new Janus.Windows.UI.CommandBars.UICommand[] {
            this.Command41,
            this.Command42,
            this.Command43,
            this.Command44,
            this.Command45,
            this.Command46,
            this.Command47,
            this.Command48,
            this.Command49,
            this.Command410});
        this.Command3.IsEditableControl = Janus.Windows.UI.InheritableBoolean.True;
        this.Command3.Key = "Command3";
        this.Command3.Name = "Command3";
        this.Command3.Text = "Opacity";
        // 
        // Command41
        // 
        this.Command41.Key = "Command4";
        this.Command41.Name = "Command41";
        // 
        // Command42
        // 
        this.Command42.Key = "Command4";
        this.Command42.Name = "Command42";
        this.Command42.Text = "20%";
        // 
        // Command43
        // 
        this.Command43.Key = "Command4";
        this.Command43.Name = "Command43";
        this.Command43.Text = "30%";
        // 
        // Command44
        // 
        this.Command44.Key = "Command4";
        this.Command44.Name = "Command44";
        this.Command44.Text = "40%";
        // 
        // Command45
        // 
        this.Command45.Key = "Command4";
        this.Command45.Name = "Command45";
        this.Command45.Text = "50%";
        // 
        // Command46
        // 
        this.Command46.Key = "Command4";
        this.Command46.Name = "Command46";
        this.Command46.Text = "60%";
        // 
        // Command47
        // 
        this.Command47.Key = "Command4";
        this.Command47.Name = "Command47";
        this.Command47.Text = "70%";
        // 
        // Command48
        // 
        this.Command48.Key = "Command4";
        this.Command48.Name = "Command48";
        this.Command48.Text = "80%";
        // 
        // Command49
        // 
        this.Command49.Key = "Command4";
        this.Command49.Name = "Command49";
        this.Command49.Text = "90%";
        // 
        // Command410
        // 
        this.Command410.Key = "Command4";
        this.Command410.Name = "Command410";
        this.Command410.Text = "100%";
        // 
        // Command4
        // 
        this.Command4.Key = "Command4";
        this.Command4.Name = "Command4";
        this.Command4.Text = "10%";
        // 
        // toolStripDropDownButton1
        // 
        this.toolStripDropDownButton1.CommandType = Janus.Windows.UI.CommandBars.CommandType.Label;
        this.toolStripDropDownButton1.Enabled = Janus.Windows.UI.InheritableBoolean.False;
        this.toolStripDropDownButton1.Key = "Command5";
        this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
        this.toolStripDropDownButton1.Text = "Ready";
        // 
        // LeftRebar1
        // 
        this.LeftRebar1.CommandManager = this.uiCommandManager1;
        this.LeftRebar1.Dock = System.Windows.Forms.DockStyle.Left;
        this.LeftRebar1.Location = new System.Drawing.Point(0, 28);
        this.LeftRebar1.Name = "LeftRebar1";
        this.LeftRebar1.Size = new System.Drawing.Size(0, 296);
        // 
        // RightRebar1
        // 
        this.RightRebar1.CommandManager = this.uiCommandManager1;
        this.RightRebar1.Dock = System.Windows.Forms.DockStyle.Right;
        this.RightRebar1.Location = new System.Drawing.Point(427, 28);
        this.RightRebar1.Name = "RightRebar1";
        this.RightRebar1.Size = new System.Drawing.Size(0, 296);
        // 
        // TopRebar1
        // 
        this.TopRebar1.CommandBars.AddRange(new Janus.Windows.UI.CommandBars.UICommandBar[] {
            this.uiCommandBar1});
        this.TopRebar1.CommandManager = this.uiCommandManager1;
        this.TopRebar1.Controls.Add(this.uiCommandBar1);
        this.TopRebar1.Dock = System.Windows.Forms.DockStyle.Top;
        this.TopRebar1.Location = new System.Drawing.Point(0, 0);
        this.TopRebar1.Name = "TopRebar1";
        this.TopRebar1.Size = new System.Drawing.Size(427, 28);
        // 
        // NuGenPathWatcherMainForm
        // 
        this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
        this.ClientSize = new System.Drawing.Size(427, 324);
        this.Controls.Add(this.uiTab1);
        this.Controls.Add(this.TopRebar1);
        this.Cursor = System.Windows.Forms.Cursors.Default;
        this.DoubleBuffered = true;
        this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
        this.MaximizeBox = false;
        this.Name = "NuGenPathWatcherMainForm";
        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        this.Text = "Path Watcher";
        this.Load += new System.EventHandler(this.Form1_Load);
        ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).EndInit();
        this.uiTab1.ResumeLayout(false);
        this.uiTabPage1.ResumeLayout(false);
        ((System.ComponentModel.ISupportInitialize)(this.uiCommandManager1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.BottomRebar1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.uiCommandBar1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.LeftRebar1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.RightRebar1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.TopRebar1)).EndInit();
        this.TopRebar1.ResumeLayout(false);
        this.ResumeLayout(false);

	}
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NuGenRegistryMonitorMainForm));
            this.comboBoxRegistryHives = new Janus.Windows.EditControls.UIComboBox();
            this.textRegistryKey = new System.Windows.Forms.TextBox();
            this.buttonStart = new Janus.Windows.EditControls.UIButton();
            this.buttonStop = new Janus.Windows.EditControls.UIButton();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.uiTab1 = new Janus.Windows.UI.Tab.UITab();
            this.uiTabPage1 = new Janus.Windows.UI.Tab.UITabPage();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).BeginInit();
            this.uiTab1.SuspendLayout();
            this.uiTabPage1.SuspendLayout();
            this.SuspendLayout();
            // 
            // comboBoxRegistryHives
            // 
            this.comboBoxRegistryHives.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
            this.comboBoxRegistryHives.Location = new System.Drawing.Point(100, 28);
            this.comboBoxRegistryHives.Name = "comboBoxRegistryHives";
            this.comboBoxRegistryHives.Size = new System.Drawing.Size(208, 20);
            this.comboBoxRegistryHives.TabIndex = 1;
            // 
            // textRegistryKey
            // 
            this.textRegistryKey.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textRegistryKey.Location = new System.Drawing.Point(100, 60);
            this.textRegistryKey.Name = "textRegistryKey";
            this.textRegistryKey.Size = new System.Drawing.Size(618, 20);
            this.textRegistryKey.TabIndex = 3;
            // 
            // buttonStart
            // 
            this.buttonStart.Location = new System.Drawing.Point(20, 100);
            this.buttonStart.Name = "buttonStart";
            this.buttonStart.Size = new System.Drawing.Size(75, 23);
            this.buttonStart.TabIndex = 4;
            this.buttonStart.Text = "Start";
            this.buttonStart.Click += new System.EventHandler(this.OnButtonStartClick);
            // 
            // buttonStop
            // 
            this.buttonStop.Enabled = false;
            this.buttonStop.Location = new System.Drawing.Point(108, 100);
            this.buttonStop.Name = "buttonStop";
            this.buttonStop.Size = new System.Drawing.Size(75, 23);
            this.buttonStop.TabIndex = 5;
            this.buttonStop.Text = "Stop";
            this.buttonStop.Click += new System.EventHandler(this.OnButtonStopClick);
            // 
            // listBox1
            // 
            this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.listBox1.IntegralHeight = false;
            this.listBox1.Location = new System.Drawing.Point(17, 141);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(701, 404);
            this.listBox1.TabIndex = 6;
            // 
            // label2
            // 
            this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(232)))), ((int)(((byte)(247)))));
            this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label2.Location = new System.Drawing.Point(20, 60);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(72, 20);
            this.label2.TabIndex = 2;
            this.label2.Text = "Registry key:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(232)))), ((int)(((byte)(247)))));
            this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label1.Location = new System.Drawing.Point(20, 28);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(72, 21);
            this.label1.TabIndex = 0;
            this.label1.Text = "Registry hive:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.SystemColors.Control;
            this.panel1.Controls.Add(this.uiTab1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(736, 567);
            this.panel1.TabIndex = 7;
            // 
            // uiTab1
            // 
            this.uiTab1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiTab1.Location = new System.Drawing.Point(0, 0);
            this.uiTab1.Name = "uiTab1";
            this.uiTab1.ShowTabs = false;
            this.uiTab1.Size = new System.Drawing.Size(736, 567);
            this.uiTab1.TabIndex = 7;
            this.uiTab1.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
            this.uiTabPage1});
            this.uiTab1.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.Office2007;
            // 
            // uiTabPage1
            // 
            this.uiTabPage1.Controls.Add(this.listBox1);
            this.uiTabPage1.Controls.Add(this.buttonStop);
            this.uiTabPage1.Controls.Add(this.label1);
            this.uiTabPage1.Controls.Add(this.textRegistryKey);
            this.uiTabPage1.Controls.Add(this.comboBoxRegistryHives);
            this.uiTabPage1.Controls.Add(this.label2);
            this.uiTabPage1.Controls.Add(this.buttonStart);
            this.uiTabPage1.Location = new System.Drawing.Point(1, 1);
            this.uiTabPage1.Name = "uiTabPage1";
            this.uiTabPage1.Size = new System.Drawing.Size(734, 565);
            this.uiTabPage1.TabStop = true;
            this.uiTabPage1.Text = "New Tab";
            // 
            // NuGenRegistryMonitorMainForm
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(736, 567);
            this.Controls.Add(this.panel1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "NuGenRegistryMonitorMainForm";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
            this.Text = "Registry Monitor";
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.uiTab1)).EndInit();
            this.uiTab1.ResumeLayout(false);
            this.uiTabPage1.ResumeLayout(false);
            this.uiTabPage1.PerformLayout();
            this.ResumeLayout(false);

		}
Пример #11
0
        /// <summary>
        /// xóa trắng các control trên Form.
        /// </summary>
        private void ClearControl()
        {
            foreach (Control control in this.grpControl.Controls)
            {
                if (control is Janus.Windows.GridEX.EditControls.EditBox) control.Text = string.Empty;
                if (control is Janus.Windows.EditControls.UIComboBox)
                {
                    var txtControl = new Janus.Windows.EditControls.UIComboBox();
                    txtControl = ((Janus.Windows.EditControls.UIComboBox)control);
                    txtControl.SelectedIndex = 0;
                }
                if (control is Janus.Windows.EditControls.UICheckBox)
                {
                    var txtControl = new Janus.Windows.EditControls.UICheckBox();
                    txtControl = ((Janus.Windows.EditControls.UICheckBox)control);
                    txtControl.Checked = false;
                }
                if (control is Janus.Windows.EditControls.UIRadioButton)
                {
                    var txtControl = new Janus.Windows.EditControls.UIRadioButton();
                    txtControl = ((Janus.Windows.EditControls.UIRadioButton)control);
                    txtControl.Checked = false;
                }

            }
            foreach (GridEXRow grRow in grdDoiTuong.GetRows())
            {
                    grRow.IsChecked = false;
            }
            txtMa.Enabled = true;

            txtMa.Focus();
        }
Пример #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_TiepDon_BN));
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem7 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem8 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem9 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdPhongKham_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.grpThongTinBN = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdInCLS = new Janus.Windows.EditControls.UIButton();
     this.label6 = new System.Windows.Forms.Label();
     this.maskedEditBox1 = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.cmdSave = new Janus.Windows.EditControls.UIButton();
     this.label1 = new System.Windows.Forms.Label();
     this.cmdExit = new Janus.Windows.EditControls.UIButton();
     this.label19 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.lblMessage = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.editBox3 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label14 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.editBox2 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.editBox1 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cmdTimKiemBN = new Janus.Windows.EditControls.UIButton();
     this.txtCMT = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtDienThoai = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtNgaySinh = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtNamSinh = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtTenBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtTuoi = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtEmail = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboThanhPho = new System.Windows.Forms.ComboBox();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtTrieuChung = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtObjectTypeCode = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboGioiTinh = new Janus.Windows.EditControls.UIComboBox();
     this.dtDateTime = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label10 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.txtPID = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.uiGroupBox4 = new Janus.Windows.EditControls.UIGroupBox();
     this.uiGroupBox5 = new Janus.Windows.EditControls.UIGroupBox();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider3 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider4 = new System.Windows.Forms.ErrorProvider(this.components);
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.flpTestType = new System.Windows.Forms.FlowLayoutPanel();
     this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdPhongKham = new Janus.Windows.GridEX.GridEX();
     this.uiTabPage2 = new Janus.Windows.UI.Tab.UITabPage();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBN)).BeginInit();
     this.grpThongTinBN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPhongKham)).BeginInit();
     this.uiTabPage2.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // grpThongTinBN
     //
     this.grpThongTinBN.Controls.Add(this.cmdInCLS);
     this.grpThongTinBN.Controls.Add(this.label6);
     this.grpThongTinBN.Controls.Add(this.maskedEditBox1);
     this.grpThongTinBN.Controls.Add(this.cmdSave);
     this.grpThongTinBN.Controls.Add(this.label1);
     this.grpThongTinBN.Controls.Add(this.cmdExit);
     this.grpThongTinBN.Controls.Add(this.label19);
     this.grpThongTinBN.Controls.Add(this.label15);
     this.grpThongTinBN.Controls.Add(this.lblMessage);
     this.grpThongTinBN.Controls.Add(this.label8);
     this.grpThongTinBN.Controls.Add(this.label11);
     this.grpThongTinBN.Controls.Add(this.editBox3);
     this.grpThongTinBN.Controls.Add(this.label14);
     this.grpThongTinBN.Controls.Add(this.comboBox1);
     this.grpThongTinBN.Controls.Add(this.editBox2);
     this.grpThongTinBN.Controls.Add(this.label13);
     this.grpThongTinBN.Controls.Add(this.label20);
     this.grpThongTinBN.Controls.Add(this.label9);
     this.grpThongTinBN.Controls.Add(this.label5);
     this.grpThongTinBN.Controls.Add(this.label16);
     this.grpThongTinBN.Controls.Add(this.label7);
     this.grpThongTinBN.Controls.Add(this.label12);
     this.grpThongTinBN.Controls.Add(this.label18);
     this.grpThongTinBN.Controls.Add(this.editBox1);
     this.grpThongTinBN.Controls.Add(this.cmdTimKiemBN);
     this.grpThongTinBN.Controls.Add(this.txtCMT);
     this.grpThongTinBN.Controls.Add(this.txtDienThoai);
     this.grpThongTinBN.Controls.Add(this.txtNgaySinh);
     this.grpThongTinBN.Controls.Add(this.label4);
     this.grpThongTinBN.Controls.Add(this.txtNamSinh);
     this.grpThongTinBN.Controls.Add(this.txtTenBN);
     this.grpThongTinBN.Controls.Add(this.txtTuoi);
     this.grpThongTinBN.Controls.Add(this.txtEmail);
     this.grpThongTinBN.Controls.Add(this.cboThanhPho);
     this.grpThongTinBN.Controls.Add(this.cboObjectType);
     this.grpThongTinBN.Controls.Add(this.txtDiaChi);
     this.grpThongTinBN.Controls.Add(this.txtTrieuChung);
     this.grpThongTinBN.Controls.Add(this.txtObjectTypeCode);
     this.grpThongTinBN.Controls.Add(this.cboGioiTinh);
     this.grpThongTinBN.Controls.Add(this.dtDateTime);
     this.grpThongTinBN.Controls.Add(this.label10);
     this.grpThongTinBN.Controls.Add(this.label3);
     this.grpThongTinBN.Controls.Add(this.txtPID);
     this.grpThongTinBN.Controls.Add(this.label2);
     this.grpThongTinBN.Controls.Add(this.txtMaBN);
     this.grpThongTinBN.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpThongTinBN.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpThongTinBN.ForeColor = System.Drawing.Color.Black;
     this.grpThongTinBN.Location = new System.Drawing.Point(0, 0);
     this.grpThongTinBN.Name = "grpThongTinBN";
     this.grpThongTinBN.Size = new System.Drawing.Size(798, 327);
     this.grpThongTinBN.TabIndex = 0;
     this.grpThongTinBN.Text = "Thông tin bệnh nhân";
     //
     // cmdInCLS
     //
     this.cmdInCLS.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInCLS.Location = new System.Drawing.Point(369, 285);
     this.cmdInCLS.Name = "cmdInCLS";
     this.cmdInCLS.Size = new System.Drawing.Size(169, 35);
     this.cmdInCLS.TabIndex = 0;
     this.cmdInCLS.Text = "In phiếu thanh toán";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(488, 89);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(57, 17);
     this.label6.TabIndex = 483;
     this.label6.Text = "Số nhà:";
     //
     // maskedEditBox1
     //
     this.maskedEditBox1.Location = new System.Drawing.Point(545, 85);
     this.maskedEditBox1.Name = "maskedEditBox1";
     this.maskedEditBox1.Numeric = true;
     this.maskedEditBox1.Size = new System.Drawing.Size(243, 22);
     this.maskedEditBox1.TabIndex = 482;
     this.maskedEditBox1.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // cmdSave
     //
     this.cmdSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Image = ((System.Drawing.Image)(resources.GetObject("cmdSave.Image")));
     this.cmdSave.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdSave.Location = new System.Drawing.Point(545, 283);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(141, 38);
     this.cmdSave.TabIndex = 2;
     this.cmdSave.Text = "&Lưu thông tin(Ctrl+S)";
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(30, 207);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(84, 17);
     this.label1.TabIndex = 481;
     this.label1.Text = "Triệu chứng";
     //
     // cmdExit
     //
     this.cmdExit.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.cmdExit.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdExit.Location = new System.Drawing.Point(688, 283);
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(101, 38);
     this.cmdExit.TabIndex = 3;
     this.cmdExit.Text = "Thoát(Esc)";
     this.cmdExit.Click += new System.EventHandler(this.cmdExit_Click);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.Black;
     this.label19.Location = new System.Drawing.Point(543, 174);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(46, 17);
     this.label19.TabIndex = 480;
     this.label19.Text = "Email:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.Black;
     this.label15.Location = new System.Drawing.Point(251, 173);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(72, 17);
     this.label15.TabIndex = 479;
     this.label15.Text = "Điện thoại";
     //
     // lblMessage
     //
     this.lblMessage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.lblMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMessage.ForeColor = System.Drawing.Color.Red;
     this.lblMessage.Location = new System.Drawing.Point(115, 256);
     this.lblMessage.Name = "lblMessage";
     this.lblMessage.Size = new System.Drawing.Size(420, 24);
     this.lblMessage.TabIndex = 463;
     this.lblMessage.Text = "lblMessage";
     this.lblMessage.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.lblMessage.Visible = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(77, 176);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(37, 17);
     this.label8.TabIndex = 478;
     this.label8.Text = "CMT";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Black;
     this.label11.Location = new System.Drawing.Point(63, 234);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(51, 17);
     this.label11.TabIndex = 477;
     this.label11.Text = "Địa chỉ";
     //
     // editBox3
     //
     this.editBox3.BackColor = System.Drawing.Color.White;
     this.editBox3.Location = new System.Drawing.Point(547, 139);
     this.editBox3.MaxLength = 10;
     this.editBox3.Name = "editBox3";
     this.editBox3.Size = new System.Drawing.Size(92, 22);
     this.editBox3.TabIndex = 476;
     this.editBox3.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.Black;
     this.label14.Location = new System.Drawing.Point(502, 142);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(43, 17);
     this.label14.TabIndex = 475;
     this.label14.Text = "Quận";
     this.label14.Click += new System.EventHandler(this.label14_Click_1);
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(643, 139);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(145, 23);
     this.comboBox1.TabIndex = 474;
     //
     // editBox2
     //
     this.editBox2.BackColor = System.Drawing.Color.White;
     this.editBox2.Location = new System.Drawing.Point(545, 114);
     this.editBox2.MaxLength = 10;
     this.editBox2.Name = "editBox2";
     this.editBox2.Size = new System.Drawing.Size(92, 22);
     this.editBox2.TabIndex = 473;
     this.editBox2.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.Black;
     this.label13.Location = new System.Drawing.Point(488, 118);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(57, 17);
     this.label13.TabIndex = 472;
     this.label13.Text = "Phường";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.Black;
     this.label20.Location = new System.Drawing.Point(45, 142);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(69, 17);
     this.label20.TabIndex = 471;
     this.label20.Text = "Đối tượng";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location = new System.Drawing.Point(45, 142);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(69, 17);
     this.label9.TabIndex = 471;
     this.label9.Text = "Đối tượng";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(54, 115);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(60, 17);
     this.label5.TabIndex = 470;
     this.label5.Text = "Giới tính";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(391, 89);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(36, 17);
     this.label16.TabIndex = 469;
     this.label16.Text = "Tuổi";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.Black;
     this.label7.Location = new System.Drawing.Point(253, 88);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(37, 17);
     this.label7.TabIndex = 468;
     this.label7.Text = "Năm";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.Black;
     this.label12.Location = new System.Drawing.Point(43, 88);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(71, 17);
     this.label12.TabIndex = 467;
     this.label12.Text = "Ngày sinh";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.Black;
     this.label18.Location = new System.Drawing.Point(444, 55);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(76, 17);
     this.label18.TabIndex = 466;
     this.label18.Text = "Tên bố mẹ";
     //
     // editBox1
     //
     this.editBox1.BackColor = System.Drawing.Color.White;
     this.editBox1.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.editBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.editBox1.Location = new System.Drawing.Point(525, 54);
     this.editBox1.Name = "editBox1";
     this.editBox1.Size = new System.Drawing.Size(264, 23);
     this.editBox1.TabIndex = 465;
     //
     // cmdTimKiemBN
     //
     this.cmdTimKiemBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiemBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiemBN.Image")));
     this.cmdTimKiemBN.Location = new System.Drawing.Point(745, 19);
     this.cmdTimKiemBN.Name = "cmdTimKiemBN";
     this.cmdTimKiemBN.Size = new System.Drawing.Size(43, 27);
     this.cmdTimKiemBN.TabIndex = 464;
     this.cmdTimKiemBN.TabStop = false;
     //
     // txtCMT
     //
     this.txtCMT.Location = new System.Drawing.Point(118, 172);
     this.txtCMT.Name = "txtCMT";
     this.txtCMT.Numeric = true;
     this.txtCMT.Size = new System.Drawing.Size(129, 22);
     this.txtCMT.TabIndex = 462;
     this.txtCMT.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtDienThoai
     //
     this.txtDienThoai.Location = new System.Drawing.Point(329, 172);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Numeric = true;
     this.txtDienThoai.Size = new System.Drawing.Size(206, 22);
     this.txtDienThoai.TabIndex = 461;
     this.txtDienThoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgaySinh.Location = new System.Drawing.Point(118, 88);
     this.txtNgaySinh.MaxLength = 2;
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Numeric = true;
     this.txtNgaySinh.Size = new System.Drawing.Size(129, 20);
     this.txtNgaySinh.TabIndex = 449;
     this.txtNgaySinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(9, 55);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(105, 17);
     this.label4.TabIndex = 104;
     this.label4.Text = "&Tên bệnh nhân";
     //
     // txtNamSinh
     //
     this.txtNamSinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNamSinh.Location = new System.Drawing.Point(296, 89);
     this.txtNamSinh.MaxLength = 4;
     this.txtNamSinh.Name = "txtNamSinh";
     this.txtNamSinh.Numeric = true;
     this.txtNamSinh.Size = new System.Drawing.Size(91, 20);
     this.txtNamSinh.TabIndex = 452;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtTenBN
     //
     this.txtTenBN.BackColor = System.Drawing.Color.White;
     this.txtTenBN.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTenBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTenBN.Location = new System.Drawing.Point(118, 55);
     this.txtTenBN.Name = "txtTenBN";
     this.txtTenBN.Size = new System.Drawing.Size(318, 23);
     this.txtTenBN.TabIndex = 103;
     //
     // txtTuoi
     //
     this.txtTuoi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTuoi.Location = new System.Drawing.Point(429, 89);
     this.txtTuoi.MaxLength = 3;
     this.txtTuoi.Name = "txtTuoi";
     this.txtTuoi.Numeric = true;
     this.txtTuoi.Size = new System.Drawing.Size(54, 20);
     this.txtTuoi.TabIndex = 453;
     this.txtTuoi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtTuoi.TextChanged += new System.EventHandler(this.txtTuoi_TextChanged);
     //
     // txtEmail
     //
     this.txtEmail.BackColor = System.Drawing.Color.White;
     this.txtEmail.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmail.Location = new System.Drawing.Point(592, 174);
     this.txtEmail.MaxLength = 11;
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(197, 21);
     this.txtEmail.TabIndex = 101;
     //
     // cboThanhPho
     //
     this.cboThanhPho.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboThanhPho.FormattingEnabled = true;
     this.cboThanhPho.Location = new System.Drawing.Point(643, 112);
     this.cboThanhPho.Name = "cboThanhPho";
     this.cboThanhPho.Size = new System.Drawing.Size(145, 23);
     this.cboThanhPho.TabIndex = 89;
     this.cboThanhPho.SelectedIndexChanged += new System.EventHandler(this.cboThanhPho_SelectedIndexChanged);
     //
     // cboObjectType
     //
     this.cboObjectType.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboObjectType.HoverMode = Janus.Windows.EditControls.HoverMode.Highlight;
     this.cboObjectType.Location = new System.Drawing.Point(188, 138);
     this.cboObjectType.MaxDropDownItems = 30;
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.SelectedItemFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboObjectType.SelectInDataSource = true;
     this.cboObjectType.Size = new System.Drawing.Size(237, 22);
     this.cboObjectType.TabIndex = 88;
     this.cboObjectType.Text = "Đối tượng";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Location = new System.Drawing.Point(118, 230);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(417, 22);
     this.txtDiaChi.TabIndex = 77;
     //
     // txtTrieuChung
     //
     this.txtTrieuChung.Location = new System.Drawing.Point(118, 203);
     this.txtTrieuChung.Name = "txtTrieuChung";
     this.txtTrieuChung.Size = new System.Drawing.Size(674, 22);
     this.txtTrieuChung.TabIndex = 76;
     //
     // txtObjectTypeCode
     //
     this.txtObjectTypeCode.BackColor = System.Drawing.Color.White;
     this.txtObjectTypeCode.Location = new System.Drawing.Point(116, 138);
     this.txtObjectTypeCode.MaxLength = 10;
     this.txtObjectTypeCode.Name = "txtObjectTypeCode";
     this.txtObjectTypeCode.Size = new System.Drawing.Size(66, 22);
     this.txtObjectTypeCode.TabIndex = 72;
     this.txtObjectTypeCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtObjectTypeCode.TextChanged += new System.EventHandler(this.txtObjectTypeCode_TextChanged);
     //
     // cboGioiTinh
     //
     this.cboGioiTinh.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     uiComboBoxItem7.FormatStyle.Alpha = 0;
     uiComboBoxItem7.IsSeparator = false;
     uiComboBoxItem7.Text = "Nam";
     uiComboBoxItem7.Value = 0;
     uiComboBoxItem8.FormatStyle.Alpha = 0;
     uiComboBoxItem8.IsSeparator = false;
     uiComboBoxItem8.Text = "Nữ";
     uiComboBoxItem8.Value = 1;
     uiComboBoxItem9.FormatStyle.Alpha = 0;
     uiComboBoxItem9.IsSeparator = false;
     uiComboBoxItem9.Text = "Khác";
     uiComboBoxItem9.Value = 2;
     this.cboGioiTinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem7,
     uiComboBoxItem8,
     uiComboBoxItem9});
     this.cboGioiTinh.Location = new System.Drawing.Point(118, 113);
     this.cboGioiTinh.Name = "cboGioiTinh";
     this.cboGioiTinh.Size = new System.Drawing.Size(72, 22);
     this.cboGioiTinh.TabIndex = 69;
     //
     // dtDateTime
     //
     this.dtDateTime.CustomFormat = "dd/MM/yyyy :HH:mm";
     this.dtDateTime.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtDateTime.DropDownCalendar.Name = "";
     this.dtDateTime.Location = new System.Drawing.Point(118, 21);
     this.dtDateTime.Name = "dtDateTime";
     this.dtDateTime.ShowUpDown = true;
     this.dtDateTime.Size = new System.Drawing.Size(179, 22);
     this.dtDateTime.TabIndex = 49;
     this.dtDateTime.TabStop = false;
     this.dtDateTime.Value = new System.DateTime(2012, 2, 10, 0, 0, 0, 0);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.label10.Location = new System.Drawing.Point(20, 21);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(95, 17);
     this.label10.TabIndex = 47;
     this.label10.Text = "&Ngày đăng ký";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(521, 21);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(53, 17);
     this.label3.TabIndex = 46;
     this.label3.Text = "&Mã PID";
     //
     // txtPID
     //
     this.txtPID.BackColor = System.Drawing.Color.MediumTurquoise;
     this.txtPID.Enabled = false;
     this.txtPID.Location = new System.Drawing.Point(583, 21);
     this.txtPID.Name = "txtPID";
     this.txtPID.Size = new System.Drawing.Size(162, 22);
     this.txtPID.TabIndex = 45;
     this.txtPID.TabStop = false;
     this.txtPID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtPID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPID_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(303, 21);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(103, 17);
     this.label2.TabIndex = 44;
     this.label2.Text = "&Mã bệnh nhân:";
     //
     // txtMaBN
     //
     this.txtMaBN.BackColor = System.Drawing.Color.MediumTurquoise;
     this.txtMaBN.Enabled = false;
     this.txtMaBN.Location = new System.Drawing.Point(412, 21);
     this.txtMaBN.Name = "txtMaBN";
     this.txtMaBN.Size = new System.Drawing.Size(104, 22);
     this.txtMaBN.TabIndex = 43;
     this.txtMaBN.TabStop = false;
     this.txtMaBN.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.uiGroupBox5);
     this.uiGroupBox4.Controls.Add(this.uiGroupBox3);
     this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Right;
     this.uiGroupBox4.Location = new System.Drawing.Point(223, 0);
     this.uiGroupBox4.Name = "uiGroupBox4";
     this.uiGroupBox4.Size = new System.Drawing.Size(571, 302);
     this.uiGroupBox4.TabIndex = 2;
     //
     // uiGroupBox5
     //
     this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox5.Location = new System.Drawing.Point(3, 106);
     this.uiGroupBox5.Name = "uiGroupBox5";
     this.uiGroupBox5.Size = new System.Drawing.Size(565, 193);
     this.uiGroupBox5.TabIndex = 4;
     this.uiGroupBox5.Text = "&Chức năng";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox3.Location = new System.Drawing.Point(3, 8);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(565, 98);
     this.uiGroupBox3.TabIndex = 3;
     this.uiGroupBox3.Text = "Đã đăng ký loại dịch vụ";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider1.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider2.ContainerControl = this;
     //
     // errorProvider3
     //
     this.errorProvider3.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider3.ContainerControl = this;
     //
     // errorProvider4
     //
     this.errorProvider4.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink;
     this.errorProvider4.ContainerControl = this;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.flpTestType);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(223, 302);
     this.uiGroupBox1.TabIndex = 6;
     this.uiGroupBox1.Text = "Đăng ký loại dịch vụ";
     //
     // flpTestType
     //
     this.flpTestType.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.flpTestType.AutoScroll = true;
     this.flpTestType.Location = new System.Drawing.Point(3, 20);
     this.flpTestType.Name = "flpTestType";
     this.flpTestType.Size = new System.Drawing.Size(217, 279);
     this.flpTestType.TabIndex = 0;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox2.Name = "uiGroupBox2";
     this.uiGroupBox2.Size = new System.Drawing.Size(794, 302);
     this.uiGroupBox2.TabIndex = 0;
     //
     // grdPhongKham
     //
     grdPhongKham_DesignTimeLayout.LayoutString = resources.GetString("grdPhongKham_DesignTimeLayout.LayoutString");
     this.grdPhongKham.DesignTimeLayout = grdPhongKham_DesignTimeLayout;
     this.grdPhongKham.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdPhongKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.grdPhongKham.GroupByBoxVisible = false;
     this.grdPhongKham.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdPhongKham.Location = new System.Drawing.Point(3, 17);
     this.grdPhongKham.Name = "grdPhongKham";
     this.grdPhongKham.RecordNavigator = true;
     this.grdPhongKham.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdPhongKham.Size = new System.Drawing.Size(788, 282);
     this.grdPhongKham.TabIndex = 0;
     this.grdPhongKham.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdPhongKham.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdPhongKham.ColumnButtonClick += new Janus.Windows.GridEX.ColumnActionEventHandler(this.grdPhongKham_ColumnButtonClick);
     //
     // uiTabPage2
     //
     this.uiTabPage2.Controls.Add(this.uiGroupBox2);
     this.uiTabPage2.Location = new System.Drawing.Point(1, 23);
     this.uiTabPage2.Name = "uiTabPage2";
     this.uiTabPage2.Size = new System.Drawing.Size(794, 302);
     this.uiTabPage2.TabStop = true;
     this.uiTabPage2.Text = "Chỉ định loại dịch vụ";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 327);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(798, 350);
     this.tabControl1.TabIndex = 1;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.panel2);
     this.tabPage2.Controls.Add(this.panel1);
     this.tabPage2.Location = new System.Drawing.Point(4, 24);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(790, 322);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Chỉ định dịch vụ";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(196, 316);
     this.panel1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(199, 3);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(588, 316);
     this.panel2.TabIndex = 1;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(583, 127);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Thông tin dịch vụ đăng ký";
     //
     // groupBox2
     //
     this.groupBox2.Location = new System.Drawing.Point(3, 136);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(583, 175);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Thông tin chi tiết dịch vụ";
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoScroll = true;
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(196, 316);
     this.flowLayoutPanel1.TabIndex = 1;
     //
     // frm_TiepDon_BN
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(798, 677);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.grpThongTinBN);
     this.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_TiepDon_BN";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "TIẾP ĐÓN BỆNH NHÂN";
     this.Load += new System.EventHandler(this.frm_TiepDon_BN_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBN)).EndInit();
     this.grpThongTinBN.ResumeLayout(false);
     this.grpThongTinBN.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPhongKham)).EndInit();
     this.uiTabPage2.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #13
0
		private void cboTables_SelectedItemChanged(object sender, System.EventArgs e)
		{
			Janus.Windows.EditControls.UIComboBox combo = (Janus.Windows.EditControls.UIComboBox)sender;
			this.Table = (GridEXTable)combo.SelectedItem.Value;
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_BenhAnThuong));
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     this.grpThongTinBenhNhan = new Janus.Windows.EditControls.UIGroupBox();
     this.uiButton1 = new Janus.Windows.EditControls.UIButton();
     this.txtID_BA = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtSoKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label87 = new System.Windows.Forms.Label();
     this.dtInsToDate = new Janus.Windows.GridEX.EditControls.EditBox();
     this.dtThoiDiemDkKham = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.txtSoBaoHiemYte = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtDienThoai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label13 = new System.Windows.Forms.Label();
     this.chkTuDen = new Janus.Windows.EditControls.UICheckBox();
     this.chkYTe = new Janus.Windows.EditControls.UICheckBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.txtMaBenhAn = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtMaLanKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtChanDoanBanDau = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtThongTinLienHe = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtClinicCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtInsObject_CodeTP = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtOThu6 = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtOThu5 = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtOThuTu = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtInsCodeTP = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtInsNumber = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label16 = new System.Windows.Forms.Label();
     this.txtInsObjectCode = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtDoiTuong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtNoiLamViec = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label1 = new System.Windows.Forms.Label();
     this.chkNgoaiKieu = new Janus.Windows.EditControls.UICheckBox();
     this.txtDanToc = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblDanToc = new System.Windows.Forms.Label();
     this.lblNgheNghiep = new System.Windows.Forms.Label();
     this.cboGioiTinh = new Janus.Windows.EditControls.UIComboBox();
     this.txtNgheNghiep = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblGioiTinh = new System.Windows.Forms.Label();
     this.txtNamSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtThangSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNgaySinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblNgaySinh = new System.Windows.Forms.Label();
     this.lblTenBn = new System.Windows.Forms.Label();
     this.txtHoTen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.KHAMBENH = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBAT_TTLQCLSC = new System.Windows.Forms.RichTextBox();
     this.txtBAT_CBP = new System.Windows.Forms.RichTextBox();
     this.txtBAT_TT = new System.Windows.Forms.RichTextBox();
     this.txtkbMa = new System.Windows.Forms.RichTextBox();
     this.txtkbChanDoanRaVien = new System.Windows.Forms.RichTextBox();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBMI = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtChieuCao = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtCanNang = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhipTho = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label83 = new System.Windows.Forms.Label();
     this.txtHuyetApDen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtHuyetApTu = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhietDo = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label82 = new System.Windows.Forms.Label();
     this.label81 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.label79 = new System.Windows.Forms.Label();
     this.label78 = new System.Windows.Forms.Label();
     this.label77 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.txtMach = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label75 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.label72 = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.label69 = new System.Windows.Forms.Label();
     this.dtDieuTriNgoaiTruDen = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label68 = new System.Windows.Forms.Label();
     this.dtDieuTriNgoaiTruTu = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label67 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.TXTKBDaXuLy = new Janus.Windows.GridEX.EditControls.EditBox();
     this.TXTKBChanDoanBD = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label63 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.label61 = new System.Windows.Forms.Label();
     this.label60 = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.HOIBENH = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBAT_GD = new System.Windows.Forms.RichTextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.txtBAT_BT = new System.Windows.Forms.RichTextBox();
     this.txtBAT_QTBL = new System.Windows.Forms.RichTextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.LDVV = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBAT_LDVV = new System.Windows.Forms.RichTextBox();
     this.cmdSave = new Janus.Windows.EditControls.UIButton();
     this.chkDongSauKhiLuu = new System.Windows.Forms.CheckBox();
     this.cmdInBenhAn = new System.Windows.Forms.Button();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.label93 = new System.Windows.Forms.Label();
     this.cmdDelete = new System.Windows.Forms.Button();
     this.chkInNgay = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.label94 = new System.Windows.Forms.Label();
     this.label95 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).BeginInit();
     this.grpThongTinBenhNhan.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KHAMBENH)).BeginInit();
     this.KHAMBENH.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.HOIBENH)).BeginInit();
     this.HOIBENH.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LDVV)).BeginInit();
     this.LDVV.SuspendLayout();
     this.SuspendLayout();
     //
     // grpThongTinBenhNhan
     //
     this.grpThongTinBenhNhan.Controls.Add(this.uiButton1);
     this.grpThongTinBenhNhan.Controls.Add(this.txtID_BA);
     this.grpThongTinBenhNhan.Controls.Add(this.txtSoKham);
     this.grpThongTinBenhNhan.Controls.Add(this.label87);
     this.grpThongTinBenhNhan.Controls.Add(this.dtInsToDate);
     this.grpThongTinBenhNhan.Controls.Add(this.dtThoiDiemDkKham);
     this.grpThongTinBenhNhan.Controls.Add(this.txtSoBaoHiemYte);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDienThoai);
     this.grpThongTinBenhNhan.Controls.Add(this.label13);
     this.grpThongTinBenhNhan.Controls.Add(this.chkTuDen);
     this.grpThongTinBenhNhan.Controls.Add(this.chkYTe);
     this.grpThongTinBenhNhan.Controls.Add(this.label12);
     this.grpThongTinBenhNhan.Controls.Add(this.label11);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBenhAn);
     this.grpThongTinBenhNhan.Controls.Add(this.label10);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaLanKham);
     this.grpThongTinBenhNhan.Controls.Add(this.label9);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBN);
     this.grpThongTinBenhNhan.Controls.Add(this.label8);
     this.grpThongTinBenhNhan.Controls.Add(this.txtChanDoanBanDau);
     this.grpThongTinBenhNhan.Controls.Add(this.label7);
     this.grpThongTinBenhNhan.Controls.Add(this.label6);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThongTinLienHe);
     this.grpThongTinBenhNhan.Controls.Add(this.label5);
     this.grpThongTinBenhNhan.Controls.Add(this.txtClinicCode);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsObject_CodeTP);
     this.grpThongTinBenhNhan.Controls.Add(this.txtOThu6);
     this.grpThongTinBenhNhan.Controls.Add(this.txtOThu5);
     this.grpThongTinBenhNhan.Controls.Add(this.txtOThuTu);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsCodeTP);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsNumber);
     this.grpThongTinBenhNhan.Controls.Add(this.label16);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsObjectCode);
     this.grpThongTinBenhNhan.Controls.Add(this.label4);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDoiTuong);
     this.grpThongTinBenhNhan.Controls.Add(this.label3);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNoiLamViec);
     this.grpThongTinBenhNhan.Controls.Add(this.label2);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDiaChi);
     this.grpThongTinBenhNhan.Controls.Add(this.label1);
     this.grpThongTinBenhNhan.Controls.Add(this.chkNgoaiKieu);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.lblDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.cboGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.lblGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNamSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThangSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblTenBn);
     this.grpThongTinBenhNhan.Controls.Add(this.txtHoTen);
     this.grpThongTinBenhNhan.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpThongTinBenhNhan.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpThongTinBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("grpThongTinBenhNhan.Image")));
     this.grpThongTinBenhNhan.Location = new System.Drawing.Point(0, 0);
     this.grpThongTinBenhNhan.Name = "grpThongTinBenhNhan";
     this.grpThongTinBenhNhan.Size = new System.Drawing.Size(871, 322);
     this.grpThongTinBenhNhan.TabIndex = 0;
     this.grpThongTinBenhNhan.Text = "I.THÔNG TIN BỆNH NHÂN";
     //
     // uiButton1
     //
     this.uiButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiButton1.Location = new System.Drawing.Point(771, 21);
     this.uiButton1.Name = "uiButton1";
     this.uiButton1.Size = new System.Drawing.Size(63, 31);
     this.uiButton1.TabIndex = 582;
     this.uiButton1.Text = "Tìm";
     //
     // txtID_BA
     //
     this.txtID_BA.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtID_BA.Location = new System.Drawing.Point(815, 191);
     this.txtID_BA.Name = "txtID_BA";
     this.txtID_BA.ReadOnly = true;
     this.txtID_BA.Size = new System.Drawing.Size(51, 20);
     this.txtID_BA.TabIndex = 456;
     this.txtID_BA.TabStop = false;
     this.txtID_BA.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtID_BA.Visible = false;
     //
     // txtSoKham
     //
     this.txtSoKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoKham.Location = new System.Drawing.Point(817, 169);
     this.txtSoKham.Name = "txtSoKham";
     this.txtSoKham.ReadOnly = true;
     this.txtSoKham.Size = new System.Drawing.Size(51, 20);
     this.txtSoKham.TabIndex = 455;
     this.txtSoKham.TabStop = false;
     this.txtSoKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtSoKham.Visible = false;
     //
     // label87
     //
     this.label87.AutoSize = true;
     this.label87.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label87.Location = new System.Drawing.Point(754, 175);
     this.label87.Name = "label87";
     this.label87.Size = new System.Drawing.Size(57, 13);
     this.label87.TabIndex = 454;
     this.label87.Text = "Số Khám";
     this.label87.Visible = false;
     //
     // dtInsToDate
     //
     this.dtInsToDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtInsToDate.Location = new System.Drawing.Point(333, 167);
     this.dtInsToDate.Name = "dtInsToDate";
     this.dtInsToDate.Size = new System.Drawing.Size(168, 20);
     this.dtInsToDate.TabIndex = 453;
     this.dtInsToDate.TabStop = false;
     //
     // dtThoiDiemDkKham
     //
     this.dtThoiDiemDkKham.CustomFormat = "dd/MM/yyyy";
     this.dtThoiDiemDkKham.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtThoiDiemDkKham.DropDownCalendar.FirstMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dtThoiDiemDkKham.DropDownCalendar.Name = "";
     this.dtThoiDiemDkKham.Location = new System.Drawing.Point(185, 222);
     this.dtThoiDiemDkKham.Name = "dtThoiDiemDkKham";
     this.dtThoiDiemDkKham.ShowUpDown = true;
     this.dtThoiDiemDkKham.Size = new System.Drawing.Size(192, 20);
     this.dtThoiDiemDkKham.TabIndex = 452;
     this.dtThoiDiemDkKham.TabStop = false;
     this.dtThoiDiemDkKham.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
     //
     // txtSoBaoHiemYte
     //
     this.txtSoBaoHiemYte.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoBaoHiemYte.Location = new System.Drawing.Point(185, 193);
     this.txtSoBaoHiemYte.Name = "txtSoBaoHiemYte";
     this.txtSoBaoHiemYte.Size = new System.Drawing.Size(192, 20);
     this.txtSoBaoHiemYte.TabIndex = 451;
     this.txtSoBaoHiemYte.TabStop = false;
     //
     // txtDienThoai
     //
     this.txtDienThoai.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDienThoai.Location = new System.Drawing.Point(600, 247);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(225, 20);
     this.txtDienThoai.TabIndex = 6;
     this.txtDienThoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(518, 250);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(83, 13);
     this.label13.TabIndex = 449;
     this.label13.Text = "Số điện thoại";
     //
     // chkTuDen
     //
     this.chkTuDen.ImageAlignment = Janus.Windows.EditControls.ImageHorizontalAlignment.AfterText;
     this.chkTuDen.Location = new System.Drawing.Point(745, 273);
     this.chkTuDen.Name = "chkTuDen";
     this.chkTuDen.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkTuDen.Size = new System.Drawing.Size(76, 23);
     this.chkTuDen.TabIndex = 448;
     this.chkTuDen.TabStop = false;
     this.chkTuDen.Text = "Tự đến";
     //
     // chkYTe
     //
     this.chkYTe.Location = new System.Drawing.Point(696, 273);
     this.chkYTe.Name = "chkYTe";
     this.chkYTe.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkYTe.Size = new System.Drawing.Size(47, 23);
     this.chkYTe.TabIndex = 447;
     this.chkYTe.TabStop = false;
     this.chkYTe.Text = "Y tế";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(709, 66);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(32, 13);
     this.label12.TabIndex = 446;
     this.label12.Text = "Năm";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(636, 66);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(43, 13);
     this.label11.TabIndex = 445;
     this.label11.Text = "Tháng";
     //
     // txtMaBenhAn
     //
     this.txtMaBenhAn.BackColor = System.Drawing.Color.Turquoise;
     this.txtMaBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBenhAn.Location = new System.Drawing.Point(609, 21);
     this.txtMaBenhAn.Name = "txtMaBenhAn";
     this.txtMaBenhAn.Size = new System.Drawing.Size(130, 31);
     this.txtMaBenhAn.TabIndex = 13;
     this.txtMaBenhAn.TabStop = false;
     this.txtMaBenhAn.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaBenhAn.TextChanged += new System.EventHandler(this.txtMaBenhAn_TextChanged);
     this.txtMaBenhAn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMaBenhAn_KeyPress);
     this.txtMaBenhAn.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaBenhAn_KeyDown);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(518, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 16);
     this.label10.TabIndex = 443;
     this.label10.Text = "Mã Bệnh Án";
     //
     // txtMaLanKham
     //
     this.txtMaLanKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaLanKham.Location = new System.Drawing.Point(353, 22);
     this.txtMaLanKham.Name = "txtMaLanKham";
     this.txtMaLanKham.Size = new System.Drawing.Size(148, 31);
     this.txtMaLanKham.TabIndex = 442;
     this.txtMaLanKham.TabStop = false;
     this.txtMaLanKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaLanKham.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMaLanKham_KeyPress);
     this.txtMaLanKham.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaLanKham_KeyDown);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(227, 28);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(100, 16);
     this.label9.TabIndex = 441;
     this.label9.Text = "Mã Lần Khám";
     //
     // txtMaBN
     //
     this.txtMaBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBN.Location = new System.Drawing.Point(123, 22);
     this.txtMaBN.Name = "txtMaBN";
     this.txtMaBN.Size = new System.Drawing.Size(88, 31);
     this.txtMaBN.TabIndex = 0;
     this.txtMaBN.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaBN.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMaBN_KeyPress);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(16, 30);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(108, 16);
     this.label8.TabIndex = 439;
     this.label8.Text = "Mã Bệnh Nhân";
     //
     // txtChanDoanBanDau
     //
     this.txtChanDoanBanDau.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChanDoanBanDau.Location = new System.Drawing.Point(185, 274);
     this.txtChanDoanBanDau.Name = "txtChanDoanBanDau";
     this.txtChanDoanBanDau.Size = new System.Drawing.Size(505, 20);
     this.txtChanDoanBanDau.TabIndex = 7;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(17, 279);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(146, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Chẩn đoán nơi giới thiệu";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(17, 224);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(118, 13);
     this.label6.TabIndex = 433;
     this.label6.Text = "Đến Khám bệnh lúc";
     //
     // txtThongTinLienHe
     //
     this.txtThongTinLienHe.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThongTinLienHe.Location = new System.Drawing.Point(185, 247);
     this.txtThongTinLienHe.Name = "txtThongTinLienHe";
     this.txtThongTinLienHe.Size = new System.Drawing.Size(310, 20);
     this.txtThongTinLienHe.TabIndex = 5;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(17, 251);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(156, 13);
     this.label5.TabIndex = 431;
     this.label5.Text = "Họ Tên, địa chỉ người nhà";
     //
     // txtClinicCode
     //
     this.txtClinicCode.BackColor = System.Drawing.Color.White;
     this.txtClinicCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtClinicCode.Location = new System.Drawing.Point(765, 191);
     this.txtClinicCode.MaxLength = 5;
     this.txtClinicCode.Name = "txtClinicCode";
     this.txtClinicCode.Size = new System.Drawing.Size(44, 23);
     this.txtClinicCode.TabIndex = 429;
     this.txtClinicCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtClinicCode.Visible = false;
     //
     // txtInsObject_CodeTP
     //
     this.txtInsObject_CodeTP.BackColor = System.Drawing.Color.White;
     this.txtInsObject_CodeTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsObject_CodeTP.Location = new System.Drawing.Point(711, 191);
     this.txtInsObject_CodeTP.MaxLength = 2;
     this.txtInsObject_CodeTP.Name = "txtInsObject_CodeTP";
     this.txtInsObject_CodeTP.Numeric = true;
     this.txtInsObject_CodeTP.Size = new System.Drawing.Size(55, 23);
     this.txtInsObject_CodeTP.TabIndex = 428;
     this.txtInsObject_CodeTP.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsObject_CodeTP.Visible = false;
     //
     // txtOThu6
     //
     this.txtOThu6.BackColor = System.Drawing.Color.White;
     this.txtOThu6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOThu6.Location = new System.Drawing.Point(650, 191);
     this.txtOThu6.MaxLength = 5;
     this.txtOThu6.Name = "txtOThu6";
     this.txtOThu6.Numeric = true;
     this.txtOThu6.Size = new System.Drawing.Size(63, 23);
     this.txtOThu6.TabIndex = 427;
     this.txtOThu6.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtOThu6.Visible = false;
     //
     // txtOThu5
     //
     this.txtOThu5.BackColor = System.Drawing.Color.White;
     this.txtOThu5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOThu5.Location = new System.Drawing.Point(613, 191);
     this.txtOThu5.MaxLength = 3;
     this.txtOThu5.Name = "txtOThu5";
     this.txtOThu5.Numeric = true;
     this.txtOThu5.Size = new System.Drawing.Size(38, 23);
     this.txtOThu5.TabIndex = 426;
     this.txtOThu5.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtOThu5.Visible = false;
     //
     // txtOThuTu
     //
     this.txtOThuTu.BackColor = System.Drawing.Color.White;
     this.txtOThuTu.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOThuTu.Location = new System.Drawing.Point(586, 191);
     this.txtOThuTu.MaxLength = 2;
     this.txtOThuTu.Name = "txtOThuTu";
     this.txtOThuTu.Numeric = true;
     this.txtOThuTu.Size = new System.Drawing.Size(28, 23);
     this.txtOThuTu.TabIndex = 425;
     this.txtOThuTu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtOThuTu.Visible = false;
     //
     // txtInsCodeTP
     //
     this.txtInsCodeTP.BackColor = System.Drawing.Color.White;
     this.txtInsCodeTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsCodeTP.Location = new System.Drawing.Point(559, 191);
     this.txtInsCodeTP.MaxLength = 2;
     this.txtInsCodeTP.Name = "txtInsCodeTP";
     this.txtInsCodeTP.Numeric = true;
     this.txtInsCodeTP.Size = new System.Drawing.Size(28, 23);
     this.txtInsCodeTP.TabIndex = 424;
     this.txtInsCodeTP.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsCodeTP.Visible = false;
     //
     // txtInsNumber
     //
     this.txtInsNumber.BackColor = System.Drawing.Color.White;
     this.txtInsNumber.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsNumber.Location = new System.Drawing.Point(536, 191);
     this.txtInsNumber.MaxLength = 1;
     this.txtInsNumber.Name = "txtInsNumber";
     this.txtInsNumber.Numeric = true;
     this.txtInsNumber.Size = new System.Drawing.Size(24, 23);
     this.txtInsNumber.TabIndex = 423;
     this.txtInsNumber.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsNumber.Visible = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(16, 198);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(59, 13);
     this.label16.TabIndex = 430;
     this.label16.Text = "&Số BHYT";
     //
     // txtInsObjectCode
     //
     this.txtInsObjectCode.BackColor = System.Drawing.Color.White;
     this.txtInsObjectCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtInsObjectCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsObjectCode.Location = new System.Drawing.Point(491, 191);
     this.txtInsObjectCode.MaxLength = 2;
     this.txtInsObjectCode.Name = "txtInsObjectCode";
     this.txtInsObjectCode.Size = new System.Drawing.Size(46, 23);
     this.txtInsObjectCode.TabIndex = 422;
     this.txtInsObjectCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsObjectCode.Visible = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(198, 172);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(137, 13);
     this.label4.TabIndex = 20;
     this.label4.Text = "BHYT:giá trị đến ngày ";
     //
     // txtDoiTuong
     //
     this.txtDoiTuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDoiTuong.Location = new System.Drawing.Point(123, 168);
     this.txtDoiTuong.Name = "txtDoiTuong";
     this.txtDoiTuong.Size = new System.Drawing.Size(75, 20);
     this.txtDoiTuong.TabIndex = 19;
     this.txtDoiTuong.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 172);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(66, 13);
     this.label3.TabIndex = 18;
     this.label3.Text = "Đối Tượng";
     //
     // txtNoiLamViec
     //
     this.txtNoiLamViec.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNoiLamViec.Location = new System.Drawing.Point(609, 137);
     this.txtNoiLamViec.Name = "txtNoiLamViec";
     this.txtNoiLamViec.Size = new System.Drawing.Size(225, 20);
     this.txtNoiLamViec.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(518, 144);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(82, 13);
     this.label2.TabIndex = 16;
     this.label2.Text = "Nơi Làm Việc";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiaChi.Location = new System.Drawing.Point(123, 141);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.ReadOnly = true;
     this.txtDiaChi.Size = new System.Drawing.Size(378, 20);
     this.txtDiaChi.TabIndex = 15;
     this.txtDiaChi.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(17, 145);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 14;
     this.label1.Text = "Địa Chỉ";
     //
     // chkNgoaiKieu
     //
     this.chkNgoaiKieu.Location = new System.Drawing.Point(753, 105);
     this.chkNgoaiKieu.Name = "chkNgoaiKieu";
     this.chkNgoaiKieu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkNgoaiKieu.Size = new System.Drawing.Size(81, 23);
     this.chkNgoaiKieu.TabIndex = 3;
     this.chkNgoaiKieu.TabStop = false;
     this.chkNgoaiKieu.Text = "Ngoại kiểu";
     //
     // txtDanToc
     //
     this.txtDanToc.Location = new System.Drawing.Point(609, 108);
     this.txtDanToc.Name = "txtDanToc";
     this.txtDanToc.Size = new System.Drawing.Size(135, 20);
     this.txtDanToc.TabIndex = 2;
     //
     // lblDanToc
     //
     this.lblDanToc.AutoSize = true;
     this.lblDanToc.Location = new System.Drawing.Point(518, 111);
     this.lblDanToc.Name = "lblDanToc";
     this.lblDanToc.Size = new System.Drawing.Size(56, 13);
     this.lblDanToc.TabIndex = 10;
     this.lblDanToc.Text = "Dân Tộc";
     //
     // lblNgheNghiep
     //
     this.lblNgheNghiep.AutoSize = true;
     this.lblNgheNghiep.Location = new System.Drawing.Point(198, 114);
     this.lblNgheNghiep.Name = "lblNgheNghiep";
     this.lblNgheNghiep.Size = new System.Drawing.Size(81, 13);
     this.lblNgheNghiep.TabIndex = 9;
     this.lblNgheNghiep.Text = "Nghề Nghiệp";
     //
     // cboGioiTinh
     //
     this.cboGioiTinh.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboGioiTinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "Nữ";
     uiComboBoxItem1.Value = 1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "Nam";
     uiComboBoxItem2.Value = 0;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator = false;
     uiComboBoxItem3.Text = "Khác";
     uiComboBoxItem3.Value = 2;
     this.cboGioiTinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2,
     uiComboBoxItem3});
     this.cboGioiTinh.Location = new System.Drawing.Point(123, 110);
     this.cboGioiTinh.Name = "cboGioiTinh";
     this.cboGioiTinh.Size = new System.Drawing.Size(75, 21);
     this.cboGioiTinh.TabIndex = 8;
     this.cboGioiTinh.TabStop = false;
     this.cboGioiTinh.Text = "Giới tính";
     //
     // txtNgheNghiep
     //
     this.txtNgheNghiep.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgheNghiep.Location = new System.Drawing.Point(293, 111);
     this.txtNgheNghiep.Name = "txtNgheNghiep";
     this.txtNgheNghiep.ReadOnly = true;
     this.txtNgheNghiep.Size = new System.Drawing.Size(208, 20);
     this.txtNgheNghiep.TabIndex = 7;
     this.txtNgheNghiep.TabStop = false;
     //
     // lblGioiTinh
     //
     this.lblGioiTinh.AutoSize = true;
     this.lblGioiTinh.Location = new System.Drawing.Point(17, 116);
     this.lblGioiTinh.Name = "lblGioiTinh";
     this.lblGioiTinh.Size = new System.Drawing.Size(64, 13);
     this.lblGioiTinh.TabIndex = 6;
     this.lblGioiTinh.Text = "Giới Tính ";
     //
     // txtNamSinh
     //
     this.txtNamSinh.Location = new System.Drawing.Point(744, 61);
     this.txtNamSinh.Name = "txtNamSinh";
     this.txtNamSinh.Size = new System.Drawing.Size(90, 20);
     this.txtNamSinh.TabIndex = 5;
     this.txtNamSinh.TabStop = false;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     this.txtNamSinh.Leave += new System.EventHandler(this.txtNamSinh_Leave);
     this.txtNamSinh.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNamSinh_KeyPress);
     //
     // txtThangSinh
     //
     this.txtThangSinh.Location = new System.Drawing.Point(680, 63);
     this.txtThangSinh.Name = "txtThangSinh";
     this.txtThangSinh.Size = new System.Drawing.Size(25, 20);
     this.txtThangSinh.TabIndex = 1;
     this.txtThangSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     this.txtThangSinh.Leave += new System.EventHandler(this.txtThangSinh_Leave);
     this.txtThangSinh.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtThangSinh_KeyPress);
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Location = new System.Drawing.Point(609, 63);
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Size = new System.Drawing.Size(25, 20);
     this.txtNgaySinh.TabIndex = 0;
     this.txtNgaySinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     this.txtNgaySinh.Leave += new System.EventHandler(this.txtNgaySinh_Leave);
     this.txtNgaySinh.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNgaySinh_KeyPress);
     //
     // lblNgaySinh
     //
     this.lblNgaySinh.AutoSize = true;
     this.lblNgaySinh.Location = new System.Drawing.Point(518, 68);
     this.lblNgaySinh.Name = "lblNgaySinh";
     this.lblNgaySinh.Size = new System.Drawing.Size(65, 13);
     this.lblNgaySinh.TabIndex = 2;
     this.lblNgaySinh.Text = "Ngày Sinh";
     //
     // lblTenBn
     //
     this.lblTenBn.AutoSize = true;
     this.lblTenBn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTenBn.Location = new System.Drawing.Point(16, 78);
     this.lblTenBn.Name = "lblTenBn";
     this.lblTenBn.Size = new System.Drawing.Size(59, 16);
     this.lblTenBn.TabIndex = 1;
     this.lblTenBn.Text = "Họ Tên";
     //
     // txtHoTen
     //
     this.txtHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHoTen.Location = new System.Drawing.Point(123, 65);
     this.txtHoTen.Name = "txtHoTen";
     this.txtHoTen.Size = new System.Drawing.Size(378, 31);
     this.txtHoTen.TabIndex = 0;
     this.txtHoTen.TabStop = false;
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.KHAMBENH);
     this.panel1.Controls.Add(this.HOIBENH);
     this.panel1.Controls.Add(this.LDVV);
     this.panel1.Controls.Add(this.grpThongTinBenhNhan);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(888, 517);
     this.panel1.TabIndex = 4;
     //
     // KHAMBENH
     //
     this.KHAMBENH.Controls.Add(this.txtBAT_TTLQCLSC);
     this.KHAMBENH.Controls.Add(this.txtBAT_CBP);
     this.KHAMBENH.Controls.Add(this.txtBAT_TT);
     this.KHAMBENH.Controls.Add(this.txtkbMa);
     this.KHAMBENH.Controls.Add(this.txtkbChanDoanRaVien);
     this.KHAMBENH.Controls.Add(this.uiGroupBox3);
     this.KHAMBENH.Controls.Add(this.dtDieuTriNgoaiTruDen);
     this.KHAMBENH.Controls.Add(this.label68);
     this.KHAMBENH.Controls.Add(this.dtDieuTriNgoaiTruTu);
     this.KHAMBENH.Controls.Add(this.label67);
     this.KHAMBENH.Controls.Add(this.label66);
     this.KHAMBENH.Controls.Add(this.label65);
     this.KHAMBENH.Controls.Add(this.TXTKBDaXuLy);
     this.KHAMBENH.Controls.Add(this.TXTKBChanDoanBD);
     this.KHAMBENH.Controls.Add(this.label63);
     this.KHAMBENH.Controls.Add(this.label62);
     this.KHAMBENH.Controls.Add(this.label61);
     this.KHAMBENH.Controls.Add(this.label60);
     this.KHAMBENH.Controls.Add(this.label45);
     this.KHAMBENH.Controls.Add(this.label40);
     this.KHAMBENH.Dock = System.Windows.Forms.DockStyle.Top;
     this.KHAMBENH.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.KHAMBENH.Location = new System.Drawing.Point(0, 617);
     this.KHAMBENH.Name = "KHAMBENH";
     this.KHAMBENH.Size = new System.Drawing.Size(871, 516);
     this.KHAMBENH.TabIndex = 4;
     this.KHAMBENH.Text = "IV. KHÁM BỆNH";
     //
     // txtBAT_TTLQCLSC
     //
     this.txtBAT_TTLQCLSC.Location = new System.Drawing.Point(26, 236);
     this.txtBAT_TTLQCLSC.Name = "txtBAT_TTLQCLSC";
     this.txtBAT_TTLQCLSC.Size = new System.Drawing.Size(817, 74);
     this.txtBAT_TTLQCLSC.TabIndex = 14;
     this.txtBAT_TTLQCLSC.Text = "";
     //
     // txtBAT_CBP
     //
     this.txtBAT_CBP.Location = new System.Drawing.Point(123, 115);
     this.txtBAT_CBP.Name = "txtBAT_CBP";
     this.txtBAT_CBP.Size = new System.Drawing.Size(508, 100);
     this.txtBAT_CBP.TabIndex = 13;
     this.txtBAT_CBP.Text = "";
     //
     // txtBAT_TT
     //
     this.txtBAT_TT.Location = new System.Drawing.Point(123, 31);
     this.txtBAT_TT.Name = "txtBAT_TT";
     this.txtBAT_TT.Size = new System.Drawing.Size(508, 74);
     this.txtBAT_TT.TabIndex = 12;
     this.txtBAT_TT.Text = "";
     //
     // txtkbMa
     //
     this.txtkbMa.Location = new System.Drawing.Point(637, 375);
     this.txtkbMa.Name = "txtkbMa";
     this.txtkbMa.Size = new System.Drawing.Size(198, 84);
     this.txtkbMa.TabIndex = 18;
     this.txtkbMa.Text = "";
     //
     // txtkbChanDoanRaVien
     //
     this.txtkbChanDoanRaVien.Location = new System.Drawing.Point(159, 375);
     this.txtkbChanDoanRaVien.Name = "txtkbChanDoanRaVien";
     this.txtkbChanDoanRaVien.Size = new System.Drawing.Size(424, 84);
     this.txtkbChanDoanRaVien.TabIndex = 17;
     this.txtkbChanDoanRaVien.Text = "";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.txtBMI);
     this.uiGroupBox3.Controls.Add(this.txtChieuCao);
     this.uiGroupBox3.Controls.Add(this.txtCanNang);
     this.uiGroupBox3.Controls.Add(this.txtNhipTho);
     this.uiGroupBox3.Controls.Add(this.label83);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApDen);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApTu);
     this.uiGroupBox3.Controls.Add(this.txtNhietDo);
     this.uiGroupBox3.Controls.Add(this.label82);
     this.uiGroupBox3.Controls.Add(this.label81);
     this.uiGroupBox3.Controls.Add(this.label80);
     this.uiGroupBox3.Controls.Add(this.label79);
     this.uiGroupBox3.Controls.Add(this.label78);
     this.uiGroupBox3.Controls.Add(this.label77);
     this.uiGroupBox3.Controls.Add(this.label76);
     this.uiGroupBox3.Controls.Add(this.txtMach);
     this.uiGroupBox3.Controls.Add(this.label75);
     this.uiGroupBox3.Controls.Add(this.label74);
     this.uiGroupBox3.Controls.Add(this.label73);
     this.uiGroupBox3.Controls.Add(this.label72);
     this.uiGroupBox3.Controls.Add(this.label71);
     this.uiGroupBox3.Controls.Add(this.label70);
     this.uiGroupBox3.Controls.Add(this.label69);
     this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(637, 16);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(206, 217);
     this.uiGroupBox3.TabIndex = 560;
     //
     // txtBMI
     //
     this.txtBMI.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBMI.Location = new System.Drawing.Point(44, 188);
     this.txtBMI.Name = "txtBMI";
     this.txtBMI.Size = new System.Drawing.Size(89, 20);
     this.txtBMI.TabIndex = 25;
     this.txtBMI.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtChieuCao
     //
     this.txtChieuCao.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChieuCao.Location = new System.Drawing.Point(75, 164);
     this.txtChieuCao.Name = "txtChieuCao";
     this.txtChieuCao.Size = new System.Drawing.Size(80, 20);
     this.txtChieuCao.TabIndex = 24;
     this.txtChieuCao.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtCanNang
     //
     this.txtCanNang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCanNang.Location = new System.Drawing.Point(75, 139);
     this.txtCanNang.Name = "txtCanNang";
     this.txtCanNang.Size = new System.Drawing.Size(80, 20);
     this.txtCanNang.TabIndex = 23;
     this.txtCanNang.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhipTho
     //
     this.txtNhipTho.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhipTho.Location = new System.Drawing.Point(66, 113);
     this.txtNhipTho.Name = "txtNhipTho";
     this.txtNhipTho.Size = new System.Drawing.Size(74, 20);
     this.txtNhipTho.TabIndex = 22;
     this.txtNhipTho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(104, 87);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(12, 16);
     this.label83.TabIndex = 578;
     this.label83.Text = "/";
     this.label83.Visible = false;
     //
     // txtHuyetApDen
     //
     this.txtHuyetApDen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApDen.Location = new System.Drawing.Point(120, 85);
     this.txtHuyetApDen.Name = "txtHuyetApDen";
     this.txtHuyetApDen.Size = new System.Drawing.Size(35, 20);
     this.txtHuyetApDen.TabIndex = 76;
     this.txtHuyetApDen.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtHuyetApDen.Visible = false;
     //
     // txtHuyetApTu
     //
     this.txtHuyetApTu.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApTu.Location = new System.Drawing.Point(71, 85);
     this.txtHuyetApTu.Name = "txtHuyetApTu";
     this.txtHuyetApTu.Size = new System.Drawing.Size(84, 20);
     this.txtHuyetApTu.TabIndex = 21;
     this.txtHuyetApTu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhietDo
     //
     this.txtNhietDo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhietDo.Location = new System.Drawing.Point(66, 55);
     this.txtNhietDo.Name = "txtNhietDo";
     this.txtNhietDo.Size = new System.Drawing.Size(89, 20);
     this.txtNhietDo.TabIndex = 20;
     this.txtNhietDo.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(146, 192);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(57, 16);
     this.label82.TabIndex = 574;
     this.label82.Text = "vòng eo";
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(174, 165);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(26, 16);
     this.label81.TabIndex = 573;
     this.label81.Text = "cm";
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Location = new System.Drawing.Point(174, 140);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(24, 16);
     this.label80.TabIndex = 572;
     this.label80.Text = "Kg";
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.Location = new System.Drawing.Point(146, 115);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(55, 16);
     this.label79.TabIndex = 571;
     this.label79.Text = "lần/phút";
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Location = new System.Drawing.Point(158, 87);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(48, 16);
     this.label78.TabIndex = 570;
     this.label78.Text = "mmHg";
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Location = new System.Drawing.Point(163, 57);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(37, 16);
     this.label77.TabIndex = 569;
     this.label77.Text = "Độ C";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(145, 26);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(55, 16);
     this.label76.TabIndex = 568;
     this.label76.Text = "lần/phút";
     //
     // txtMach
     //
     this.txtMach.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMach.Location = new System.Drawing.Point(58, 25);
     this.txtMach.Name = "txtMach";
     this.txtMach.Size = new System.Drawing.Size(82, 20);
     this.txtMach.TabIndex = 19;
     this.txtMach.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(5, 192);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(34, 16);
     this.label75.TabIndex = 567;
     this.label75.Text = "BMI:";
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(5, 165);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(71, 16);
     this.label74.TabIndex = 566;
     this.label74.Text = "Chiều cao:";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Location = new System.Drawing.Point(5, 140);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(68, 16);
     this.label73.TabIndex = 565;
     this.label73.Text = "Cân nặng:";
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(4, 114);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(63, 16);
     this.label72.TabIndex = 564;
     this.label72.Text = "Nhịp thở: ";
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Location = new System.Drawing.Point(4, 87);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(68, 16);
     this.label71.TabIndex = 563;
     this.label71.Text = "Huyết áp: ";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(3, 57);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(61, 16);
     this.label70.TabIndex = 562;
     this.label70.Text = "Nhiệt độ:";
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Location = new System.Drawing.Point(4, 29);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(44, 16);
     this.label69.TabIndex = 561;
     this.label69.Text = "Mạch:";
     //
     // dtDieuTriNgoaiTruDen
     //
     this.dtDieuTriNgoaiTruDen.CustomFormat = "dd/MM/yyyy";
     this.dtDieuTriNgoaiTruDen.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtDieuTriNgoaiTruDen.DropDownCalendar.FirstMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dtDieuTriNgoaiTruDen.DropDownCalendar.Name = "";
     this.dtDieuTriNgoaiTruDen.Location = new System.Drawing.Point(388, 465);
     this.dtDieuTriNgoaiTruDen.Name = "dtDieuTriNgoaiTruDen";
     this.dtDieuTriNgoaiTruDen.ShowUpDown = true;
     this.dtDieuTriNgoaiTruDen.Size = new System.Drawing.Size(109, 21);
     this.dtDieuTriNgoaiTruDen.TabIndex = 85;
     this.dtDieuTriNgoaiTruDen.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label68.Location = new System.Drawing.Point(314, 469);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(59, 15);
     this.label68.TabIndex = 558;
     this.label68.Text = "Đến ngày";
     //
     // dtDieuTriNgoaiTruTu
     //
     this.dtDieuTriNgoaiTruTu.CustomFormat = "dd/MM/yyyy";
     this.dtDieuTriNgoaiTruTu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtDieuTriNgoaiTruTu.DropDownCalendar.FirstMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dtDieuTriNgoaiTruTu.DropDownCalendar.Name = "";
     this.dtDieuTriNgoaiTruTu.Location = new System.Drawing.Point(195, 465);
     this.dtDieuTriNgoaiTruTu.Name = "dtDieuTriNgoaiTruTu";
     this.dtDieuTriNgoaiTruTu.ShowUpDown = true;
     this.dtDieuTriNgoaiTruTu.Size = new System.Drawing.Size(109, 21);
     this.dtDieuTriNgoaiTruTu.TabIndex = 84;
     this.dtDieuTriNgoaiTruTu.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label67.Location = new System.Drawing.Point(12, 467);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(182, 15);
     this.label67.TabIndex = 556;
     this.label67.Text = "- Điều trị ngoại trú từ ngày: ";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(597, 375);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(28, 15);
     this.label66.TabIndex = 554;
     this.label66.Text = "Mã:";
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label65.Location = new System.Drawing.Point(12, 374);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(154, 15);
     this.label65.TabIndex = 552;
     this.label65.Text = "Chẩn đoán khi ra viện: ";
     //
     // TXTKBDaXuLy
     //
     this.TXTKBDaXuLy.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TXTKBDaXuLy.Location = new System.Drawing.Point(187, 345);
     this.TXTKBDaXuLy.Name = "TXTKBDaXuLy";
     this.TXTKBDaXuLy.Size = new System.Drawing.Size(648, 20);
     this.TXTKBDaXuLy.TabIndex = 16;
     //
     // TXTKBChanDoanBD
     //
     this.TXTKBChanDoanBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TXTKBChanDoanBD.Location = new System.Drawing.Point(145, 318);
     this.TXTKBChanDoanBD.Name = "TXTKBChanDoanBD";
     this.TXTKBChanDoanBD.Size = new System.Drawing.Size(690, 20);
     this.TXTKBChanDoanBD.TabIndex = 15;
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.Location = new System.Drawing.Point(67, 345);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(114, 15);
     this.label63.TabIndex = 549;
     this.label63.Text = "(Thuốc, chăm sóc) :";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label62.Location = new System.Drawing.Point(12, 345);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(58, 15);
     this.label62.TabIndex = 548;
     this.label62.Text = "Đã xử lý";
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label61.Location = new System.Drawing.Point(12, 319);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(136, 15);
     this.label61.TabIndex = 547;
     this.label61.Text = "Chẩn đoán ban đầu:";
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label60.Location = new System.Drawing.Point(12, 218);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(239, 15);
     this.label60.TabIndex = 545;
     this.label60.Text = "Tóm tắt kết quả cận lâm sàng chính:";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.Location = new System.Drawing.Point(16, 118);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(104, 15);
     this.label45.TabIndex = 512;
     this.label45.Text = "- Các bộ phận: ";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.Location = new System.Drawing.Point(12, 26);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(92, 15);
     this.label40.TabIndex = 503;
     this.label40.Text = "- Toàn Thân: ";
     //
     // HOIBENH
     //
     this.HOIBENH.Controls.Add(this.txtBAT_GD);
     this.HOIBENH.Controls.Add(this.label15);
     this.HOIBENH.Controls.Add(this.label32);
     this.HOIBENH.Controls.Add(this.txtBAT_BT);
     this.HOIBENH.Controls.Add(this.txtBAT_QTBL);
     this.HOIBENH.Controls.Add(this.label31);
     this.HOIBENH.Controls.Add(this.label14);
     this.HOIBENH.Dock = System.Windows.Forms.DockStyle.Top;
     this.HOIBENH.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HOIBENH.Location = new System.Drawing.Point(0, 399);
     this.HOIBENH.Name = "HOIBENH";
     this.HOIBENH.Size = new System.Drawing.Size(871, 218);
     this.HOIBENH.TabIndex = 3;
     this.HOIBENH.Text = "III. HỎI BỆNH";
     //
     // txtBAT_GD
     //
     this.txtBAT_GD.Location = new System.Drawing.Point(107, 160);
     this.txtBAT_GD.Name = "txtBAT_GD";
     this.txtBAT_GD.Size = new System.Drawing.Size(727, 35);
     this.txtBAT_GD.TabIndex = 11;
     this.txtBAT_GD.Text = "";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(16, 172);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(78, 15);
     this.label15.TabIndex = 506;
     this.label15.Text = "- Gia đình: ";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(16, 122);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(85, 15);
     this.label32.TabIndex = 505;
     this.label32.Text = "- Bản Thân: ";
     //
     // txtBAT_BT
     //
     this.txtBAT_BT.Location = new System.Drawing.Point(107, 119);
     this.txtBAT_BT.Name = "txtBAT_BT";
     this.txtBAT_BT.Size = new System.Drawing.Size(727, 35);
     this.txtBAT_BT.TabIndex = 10;
     this.txtBAT_BT.Text = "";
     //
     // txtBAT_QTBL
     //
     this.txtBAT_QTBL.Location = new System.Drawing.Point(13, 36);
     this.txtBAT_QTBL.Name = "txtBAT_QTBL";
     this.txtBAT_QTBL.Size = new System.Drawing.Size(830, 62);
     this.txtBAT_QTBL.TabIndex = 9;
     this.txtBAT_QTBL.Text = "";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(6, 101);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(110, 15);
     this.label31.TabIndex = 482;
     this.label31.Text = "2. Tiền sử bệnh:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(6, 18);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(140, 15);
     this.label14.TabIndex = 434;
     this.label14.Text = "1. Quá trình bệnh lý: ";
     //
     // LDVV
     //
     this.LDVV.Controls.Add(this.txtBAT_LDVV);
     this.LDVV.Dock = System.Windows.Forms.DockStyle.Top;
     this.LDVV.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LDVV.Location = new System.Drawing.Point(0, 322);
     this.LDVV.Name = "LDVV";
     this.LDVV.Size = new System.Drawing.Size(871, 77);
     this.LDVV.TabIndex = 2;
     this.LDVV.Text = "II. LÝ DO VÀO VIỆN";
     //
     // txtBAT_LDVV
     //
     this.txtBAT_LDVV.Location = new System.Drawing.Point(13, 20);
     this.txtBAT_LDVV.Name = "txtBAT_LDVV";
     this.txtBAT_LDVV.Size = new System.Drawing.Size(830, 52);
     this.txtBAT_LDVV.TabIndex = 8;
     this.txtBAT_LDVV.Text = "";
     //
     // cmdSave
     //
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Location = new System.Drawing.Point(251, 550);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(123, 38);
     this.cmdSave.TabIndex = 93;
     this.cmdSave.Text = "&Lưu (Ctrl+S)";
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click_1);
     //
     // chkDongSauKhiLuu
     //
     this.chkDongSauKhiLuu.AutoSize = true;
     this.chkDongSauKhiLuu.Location = new System.Drawing.Point(26, 571);
     this.chkDongSauKhiLuu.Name = "chkDongSauKhiLuu";
     this.chkDongSauKhiLuu.Size = new System.Drawing.Size(132, 17);
     this.chkDongSauKhiLuu.TabIndex = 583;
     this.chkDongSauKhiLuu.Text = "Đóng Form sau khi lưu";
     this.chkDongSauKhiLuu.UseVisualStyleBackColor = true;
     this.chkDongSauKhiLuu.CheckedChanged += new System.EventHandler(this.chkInSauKhiLuu_CheckedChanged);
     //
     // cmdInBenhAn
     //
     this.cmdInBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInBenhAn.Location = new System.Drawing.Point(416, 548);
     this.cmdInBenhAn.Name = "cmdInBenhAn";
     this.cmdInBenhAn.Size = new System.Drawing.Size(126, 40);
     this.cmdInBenhAn.TabIndex = 94;
     this.cmdInBenhAn.Text = "&In Bệnh Án(F4)";
     this.cmdInBenhAn.UseVisualStyleBackColor = true;
     this.cmdInBenhAn.Click += new System.EventHandler(this.cmdInBenhAn_Click_1);
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Latha", 8.25F);
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 605);
     this.uiStatusBar1.Name = "uiStatusBar1";
     this.uiStatusBar1.Size = new System.Drawing.Size(888, 64);
     this.uiStatusBar1.TabIndex = 584;
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label93.ForeColor = System.Drawing.Color.Red;
     this.label93.Location = new System.Drawing.Point(523, 619);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(254, 13);
     this.label93.TabIndex = 585;
     this.label93.Text = "Sau Khi in bệnh án không thể sửa thông tin";
     this.label93.Visible = false;
     //
     // cmdDelete
     //
     this.cmdDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdDelete.Location = new System.Drawing.Point(575, 548);
     this.cmdDelete.Name = "cmdDelete";
     this.cmdDelete.Size = new System.Drawing.Size(126, 40);
     this.cmdDelete.TabIndex = 586;
     this.cmdDelete.Text = "&Xóa Bệnh Án";
     this.cmdDelete.UseVisualStyleBackColor = true;
     this.cmdDelete.Click += new System.EventHandler(this.cmdDelete_Click);
     //
     // chkInNgay
     //
     this.chkInNgay.AutoSize = true;
     this.chkInNgay.Location = new System.Drawing.Point(26, 548);
     this.chkInNgay.Name = "chkInNgay";
     this.chkInNgay.Size = new System.Drawing.Size(115, 17);
     this.chkInNgay.TabIndex = 587;
     this.chkInNgay.Text = "In ngay sau khi lưu";
     this.chkInNgay.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(814, 610);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(64, 23);
     this.button1.TabIndex = 588;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label94.Location = new System.Drawing.Point(10, 616);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(489, 16);
     this.label94.TabIndex = 589;
     this.label94.Text = "- Bệnh nhân chưa có bệnh án: Ấn Lưu, hoặc nhập số bệnh án cũ và Lưu";
     //
     // label95
     //
     this.label95.AutoSize = true;
     this.label95.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label95.Location = new System.Drawing.Point(10, 643);
     this.label95.Name = "label95";
     this.label95.Size = new System.Drawing.Size(98, 16);
     this.label95.TabIndex = 590;
     this.label95.Text = "- Người Tạo: ";
     //
     // Frm_BenhAnThuong
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(888, 669);
     this.Controls.Add(this.label95);
     this.Controls.Add(this.label94);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chkInNgay);
     this.Controls.Add(this.cmdDelete);
     this.Controls.Add(this.label93);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.cmdInBenhAn);
     this.Controls.Add(this.chkDongSauKhiLuu);
     this.Controls.Add(this.cmdSave);
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Frm_BenhAnThuong";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Nhập Thông Tin Bệnh Án Thường";
     this.Load += new System.EventHandler(this.Frm_BenhAnThuong_Load_1);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_BenhAnThuong_KeyDown_1);
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).EndInit();
     this.grpThongTinBenhNhan.ResumeLayout(false);
     this.grpThongTinBenhNhan.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KHAMBENH)).EndInit();
     this.KHAMBENH.ResumeLayout(false);
     this.KHAMBENH.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.HOIBENH)).EndInit();
     this.HOIBENH.ResumeLayout(false);
     this.HOIBENH.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LDVV)).EndInit();
     this.LDVV.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_Quanly_Maukiemnghiem));
     Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel1 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel2 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel3 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel4 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel5 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.cmdThemMoiBN = new System.Windows.Forms.ToolStripButton();
     this.cmdSuaThongTinBN = new System.Windows.Forms.ToolStripButton();
     this.cmdThemLanKham = new System.Windows.Forms.ToolStripButton();
     this.cmdXoaBenhNhan = new System.Windows.Forms.ToolStripButton();
     this.cmdExit = new System.Windows.Forms.ToolStripButton();
     this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdPrintAssign = new Janus.Windows.EditControls.UIButton();
     this.chkIntach = new System.Windows.Forms.CheckBox();
     this.cboServicePrint = new System.Windows.Forms.ComboBox();
     this.cmdXoaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdSuaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdThemChiDinh = new Janus.Windows.EditControls.UIButton();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuMaDVu = new System.Windows.Forms.ToolStripMenuItem();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtPatientCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dtmTo = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtmFrom = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate = new System.Windows.Forms.CheckBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.cmdBangiao = new System.Windows.Forms.ToolStripButton();
     this.cmdInKQ = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.toolStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemMoiBN,
     this.cmdSuaThongTinBN,
     this.cmdThemLanKham,
     this.cmdXoaBenhNhan,
     this.cmdBangiao,
     this.cmdInKQ,
     this.cmdExit});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1018, 31);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // cmdThemMoiBN
     //
     this.cmdThemMoiBN.BackColor = System.Drawing.SystemColors.Control;
     this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
     this.cmdThemMoiBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemMoiBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemMoiBN.Name = "cmdThemMoiBN";
     this.cmdThemMoiBN.Size = new System.Drawing.Size(136, 28);
     this.cmdThemMoiBN.Text = "Thêm Khách hàng";
     this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để tiếp đón Bệnh nhân mới";
     //
     // cmdSuaThongTinBN
     //
     this.cmdSuaThongTinBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdSuaThongTinBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaThongTinBN.Image")));
     this.cmdSuaThongTinBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSuaThongTinBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSuaThongTinBN.Name = "cmdSuaThongTinBN";
     this.cmdSuaThongTinBN.Size = new System.Drawing.Size(127, 28);
     this.cmdSuaThongTinBN.Text = "Sửa Khách hàng";
     this.cmdSuaThongTinBN.ToolTipText = "Nhấn vào nút này để sửa thông tin Bệnh nhân đang chọn trên lưới";
     //
     // cmdThemLanKham
     //
     this.cmdThemLanKham.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemLanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemLanKham.Image")));
     this.cmdThemLanKham.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemLanKham.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemLanKham.Name = "cmdThemLanKham";
     this.cmdThemLanKham.Size = new System.Drawing.Size(112, 28);
     this.cmdThemLanKham.Text = "Thêm đăng ký";
     this.cmdThemLanKham.ToolTipText = "Nhấn nút này để thêm lần khám cho Bệnh nhân đang chọn trên lưới";
     //
     // cmdXoaBenhNhan
     //
     this.cmdXoaBenhNhan.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdXoaBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaBenhNhan.Image")));
     this.cmdXoaBenhNhan.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdXoaBenhNhan.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXoaBenhNhan.Name = "cmdXoaBenhNhan";
     this.cmdXoaBenhNhan.Size = new System.Drawing.Size(101, 28);
     this.cmdXoaBenhNhan.Text = "Xóa đăng ký";
     this.cmdXoaBenhNhan.ToolTipText = "Nhấn nút này để xóa lần khám của Bệnh nhân đang chọn trên lưới";
     //
     // cmdExit
     //
     this.cmdExit.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(118, 28);
     this.cmdExit.Text = "Đóng chức năng";
     this.cmdExit.ToolTipText = "Nhấn nút này để thoát khỏi chức năng ";
     //
     // grdAssignDetail
     //
     this.grdAssignDetail.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdAssignDetail.BackColor = System.Drawing.Color.Silver;
     grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
     this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
     this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
     this.grdAssignDetail.GroupByBoxVisible = false;
     this.grdAssignDetail.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdAssignDetail.Location = new System.Drawing.Point(0, 0);
     this.grdAssignDetail.Name = "grdAssignDetail";
     this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.Size = new System.Drawing.Size(406, 520);
     this.grdAssignDetail.TabIndex = 0;
     this.grdAssignDetail.TabStop = false;
     this.grdAssignDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
     this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.cmdPrintAssign);
     this.uiGroupBox3.Controls.Add(this.chkIntach);
     this.uiGroupBox3.Controls.Add(this.cboServicePrint);
     this.uiGroupBox3.Controls.Add(this.cmdXoaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdSuaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdThemChiDinh);
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(0, 520);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(406, 91);
     this.uiGroupBox3.TabIndex = 0;
     //
     // cmdPrintAssign
     //
     this.cmdPrintAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPrintAssign.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdPrintAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintAssign.Image")));
     this.cmdPrintAssign.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdPrintAssign.Location = new System.Drawing.Point(322, 57);
     this.cmdPrintAssign.Name = "cmdPrintAssign";
     this.cmdPrintAssign.Size = new System.Drawing.Size(85, 28);
     this.cmdPrintAssign.TabIndex = 706;
     this.cmdPrintAssign.Text = "In";
     this.toolTip1.SetToolTip(this.cmdPrintAssign, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
     //
     // chkIntach
     //
     this.chkIntach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkIntach.AutoSize = true;
     this.chkIntach.Location = new System.Drawing.Point(6, 15);
     this.chkIntach.Name = "chkIntach";
     this.chkIntach.Size = new System.Drawing.Size(69, 19);
     this.chkIntach.TabIndex = 705;
     this.chkIntach.Text = "In tách?";
     this.chkIntach.UseVisualStyleBackColor = true;
     //
     // cboServicePrint
     //
     this.cboServicePrint.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboServicePrint.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboServicePrint.FormattingEnabled = true;
     this.cboServicePrint.Location = new System.Drawing.Point(82, 11);
     this.cboServicePrint.Name = "cboServicePrint";
     this.cboServicePrint.Size = new System.Drawing.Size(318, 23);
     this.cboServicePrint.TabIndex = 704;
     //
     // cmdXoaChiDinh
     //
     this.cmdXoaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaChiDinh.Image")));
     this.cmdXoaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdXoaChiDinh.Location = new System.Drawing.Point(232, 57);
     this.cmdXoaChiDinh.Name = "cmdXoaChiDinh";
     this.cmdXoaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdXoaChiDinh.TabIndex = 702;
     this.cmdXoaChiDinh.TabStop = false;
     this.cmdXoaChiDinh.Text = "Xóa";
     //
     // cmdSuaChiDinh
     //
     this.cmdSuaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSuaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSuaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaChiDinh.Image")));
     this.cmdSuaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdSuaChiDinh.Location = new System.Drawing.Point(141, 57);
     this.cmdSuaChiDinh.Name = "cmdSuaChiDinh";
     this.cmdSuaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdSuaChiDinh.TabIndex = 701;
     this.cmdSuaChiDinh.TabStop = false;
     this.cmdSuaChiDinh.Text = "Sửa";
     //
     // cmdThemChiDinh
     //
     this.cmdThemChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThemChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThemChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemChiDinh.Image")));
     this.cmdThemChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdThemChiDinh.Location = new System.Drawing.Point(50, 56);
     this.cmdThemChiDinh.Name = "cmdThemChiDinh";
     this.cmdThemChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdThemChiDinh.TabIndex = 700;
     this.cmdThemChiDinh.TabStop = false;
     this.cmdThemChiDinh.Text = "Thêm";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuMaDVu});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(280, 26);
     //
     // mnuMaDVu
     //
     this.mnuMaDVu.CheckOnClick = true;
     this.mnuMaDVu.Name = "mnuMaDVu";
     this.mnuMaDVu.Size = new System.Drawing.Size(279, 22);
     this.mnuMaDVu.Text = "Đăng ký dịch vụ KCB bằng cách gõ mã";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 713);
     this.uiStatusBar1.Name = "uiStatusBar1";
     uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel1.Key = "";
     uiStatusBarPanel1.ProgressBarValue = 0;
     uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới";
     uiStatusBarPanel1.Width = 113;
     uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel2.Key = "";
     uiStatusBarPanel2.ProgressBarValue = 0;
     uiStatusBarPanel2.Text = "Ctrl+U: Cập nhật";
     uiStatusBarPanel2.Width = 106;
     uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel3.Key = "";
     uiStatusBarPanel3.ProgressBarValue = 0;
     uiStatusBarPanel3.Text = "Ctrl+D: Xóa";
     uiStatusBarPanel3.Width = 77;
     uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel4.Key = "";
     uiStatusBarPanel4.ProgressBarValue = 0;
     uiStatusBarPanel4.Text = "Ctrl+K: Thêm khám";
     uiStatusBarPanel4.Width = 121;
     uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel5.Key = "";
     uiStatusBarPanel5.ProgressBarValue = 0;
     uiStatusBarPanel5.Text = "Esc: Thoát Form";
     uiStatusBarPanel5.Width = 105;
     this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
     uiStatusBarPanel1,
     uiStatusBarPanel2,
     uiStatusBarPanel3,
     uiStatusBarPanel4,
     uiStatusBarPanel5});
     this.uiStatusBar1.Size = new System.Drawing.Size(1018, 27);
     this.uiStatusBar1.TabIndex = 7;
     this.uiStatusBar1.TabStop = false;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.cboObjectType);
     this.uiGroupBox1.Controls.Add(this.label4);
     this.uiGroupBox1.Controls.Add(this.txtPatientCode);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtPatient_ID);
     this.uiGroupBox1.Controls.Add(this.Label7);
     this.uiGroupBox1.Controls.Add(this.txtPatientName);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.dtmTo);
     this.uiGroupBox1.Controls.Add(this.dtmFrom);
     this.uiGroupBox1.Controls.Add(this.chkByDate);
     this.uiGroupBox1.Controls.Add(this.Label1);
     this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(1018, 71);
     this.uiGroupBox1.TabIndex = 1;
     //
     // cboObjectType
     //
     this.cboObjectType.Location = new System.Drawing.Point(551, 43);
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.Size = new System.Drawing.Size(301, 21);
     this.cboObjectType.TabIndex = 5;
     this.cboObjectType.TabStop = false;
     this.cboObjectType.Text = "Đối tượng";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(631, 18);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(68, 15);
     this.label4.TabIndex = 518;
     this.label4.Text = "Mã đăng ký";
     //
     // txtPatientCode
     //
     this.txtPatientCode.BackColor = System.Drawing.Color.White;
     this.txtPatientCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientCode.Location = new System.Drawing.Point(714, 14);
     this.txtPatientCode.Name = "txtPatientCode";
     this.txtPatientCode.Size = new System.Drawing.Size(138, 21);
     this.txtPatientCode.TabIndex = 3;
     this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(457, 18);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(88, 15);
     this.label2.TabIndex = 516;
     this.label2.Text = "ID Khách hàng";
     //
     // txtPatient_ID
     //
     this.txtPatient_ID.BackColor = System.Drawing.Color.White;
     this.txtPatient_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatient_ID.Location = new System.Drawing.Point(551, 14);
     this.txtPatient_ID.Name = "txtPatient_ID";
     this.txtPatient_ID.Numeric = true;
     this.txtPatient_ID.Size = new System.Drawing.Size(76, 21);
     this.txtPatient_ID.TabIndex = 2;
     this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(457, 48);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(62, 15);
     this.Label7.TabIndex = 514;
     this.Label7.Text = "Đối tượng";
     //
     // txtPatientName
     //
     this.txtPatientName.BackColor = System.Drawing.Color.White;
     this.txtPatientName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientName.Location = new System.Drawing.Point(137, 42);
     this.txtPatientName.Name = "txtPatientName";
     this.txtPatientName.Size = new System.Drawing.Size(313, 23);
     this.txtPatientName.TabIndex = 4;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(23, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(103, 15);
     this.label3.TabIndex = 511;
     this.label3.Text = "Tên Khách hàng :";
     //
     // dtmTo
     //
     this.dtmTo.CustomFormat = "dd/MM/yyyy";
     this.dtmTo.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmTo.DropDownCalendar.Name = "";
     this.dtmTo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmTo.Location = new System.Drawing.Point(320, 15);
     this.dtmTo.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmTo.Name = "dtmTo";
     this.dtmTo.ShowUpDown = true;
     this.dtmTo.Size = new System.Drawing.Size(130, 21);
     this.dtmTo.TabIndex = 1;
     this.dtmTo.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // dtmFrom
     //
     this.dtmFrom.CustomFormat = "dd/MM/yyyy";
     this.dtmFrom.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmFrom.DropDownCalendar.Name = "";
     this.dtmFrom.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmFrom.Location = new System.Drawing.Point(137, 15);
     this.dtmFrom.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmFrom.Name = "dtmFrom";
     this.dtmFrom.ShowUpDown = true;
     this.dtmFrom.Size = new System.Drawing.Size(117, 21);
     this.dtmFrom.TabIndex = 0;
     this.dtmFrom.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.AutoSize = true;
     this.chkByDate.Checked = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location = new System.Drawing.Point(15, 15);
     this.chkByDate.Name = "chkByDate";
     this.chkByDate.Size = new System.Drawing.Size(116, 19);
     this.chkByDate.TabIndex = 241;
     this.chkByDate.Text = "Ngày nhận mẫu:";
     this.chkByDate.UseVisualStyleBackColor = true;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.Black;
     this.Label1.Location = new System.Drawing.Point(260, 20);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(59, 15);
     this.Label1.TabIndex = 240;
     this.Label1.Text = "Đến ngày";
     //
     // cmdTimKiem
     //
     this.cmdTimKiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdTimKiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiem.Image")));
     this.cmdTimKiem.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdTimKiem.Location = new System.Drawing.Point(875, 14);
     this.cmdTimKiem.Name = "cmdTimKiem";
     this.cmdTimKiem.Size = new System.Drawing.Size(131, 51);
     this.cmdTimKiem.TabIndex = 6;
     this.cmdTimKiem.Text = "Tìm kiếm (F3)";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.grdAssignDetail);
     this.panel2.Controls.Add(this.uiGroupBox3);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel2.Location = new System.Drawing.Point(612, 102);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(406, 611);
     this.panel2.TabIndex = 548;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.grdList);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 102);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(612, 611);
     this.panel1.TabIndex = 549;
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.BackColor = System.Drawing.Color.Silver;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
     " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.DynamicFiltering = true;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.FrozenColumns = 4;
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location = new System.Drawing.Point(0, 0);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdList.Size = new System.Drawing.Size(612, 611);
     this.grdList.TabIndex = 0;
     this.grdList.TabStop = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cmdBangiao
     //
     this.cmdBangiao.Image = ((System.Drawing.Image)(resources.GetObject("cmdBangiao.Image")));
     this.cmdBangiao.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdBangiao.Name = "cmdBangiao";
     this.cmdBangiao.Size = new System.Drawing.Size(104, 28);
     this.cmdBangiao.Text = "Bàn giao mẫu";
     //
     // cmdInKQ
     //
     this.cmdInKQ.Image = ((System.Drawing.Image)(resources.GetObject("cmdInKQ.Image")));
     this.cmdInKQ.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdInKQ.Name = "cmdInKQ";
     this.cmdInKQ.Size = new System.Drawing.Size(80, 28);
     this.cmdInKQ.Text = "In kết quả";
     //
     // frm_Quanly_Maukiemnghiem
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1018, 740);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_Quanly_Maukiemnghiem";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý thông tin mẫu kiểm nghiệm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_TimKiemBN));
     Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.GridEX.GridEXLayout grdRegExam_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem4 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem5 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem6 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout cboKieuKham_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel1 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel2 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel3 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel4 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel5 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.cmdThemMoiBN = new System.Windows.Forms.ToolStripButton();
     this.cmdSuaThongTinBN = new System.Windows.Forms.ToolStripButton();
     this.cmdThemLanKham = new System.Windows.Forms.ToolStripButton();
     this.cmdXoaBenhNhan = new System.Windows.Forms.ToolStripButton();
     this.cmdExit = new System.Windows.Forms.ToolStripButton();
     this.tabChiDinh = new Janus.Windows.UI.Tab.UITab();
     this.tabPageChiDinh = new Janus.Windows.UI.Tab.UITabPage();
     this.uiGroupBox4 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox5 = new Janus.Windows.EditControls.UIGroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.barcode = new Mabry.Windows.Forms.Barcode.Barcode();
     this.txtTongChiPhi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdPrintAssign = new Janus.Windows.EditControls.UIButton();
     this.chkIntach = new System.Windows.Forms.CheckBox();
     this.cboServicePrint = new System.Windows.Forms.ComboBox();
     this.cmdXoaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdSuaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdThemChiDinh = new Janus.Windows.EditControls.UIButton();
     this.grdRegExam = new Janus.Windows.GridEX.GridEX();
     this.panel2 = new System.Windows.Forms.Panel();
     this.pnlnutchucnang = new System.Windows.Forms.Panel();
     this.cmdInPhieuKham = new Janus.Windows.EditControls.UIButton();
     this.cmdXoaKham = new Janus.Windows.EditControls.UIButton();
     this.cmdThanhToanKham = new Janus.Windows.EditControls.UIButton();
     this.pnlPrint = new System.Windows.Forms.FlowLayoutPanel();
     this.cmdInhoadon = new Janus.Windows.EditControls.UIButton();
     this.cmdInBienlai = new Janus.Windows.EditControls.UIButton();
     this.lblMsg = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.cboKieuin = new Janus.Windows.EditControls.UIComboBox();
     this.cmdCauhinh = new Janus.Windows.EditControls.UIButton();
     this.chkInsaukhiluu = new System.Windows.Forms.CheckBox();
     this.cboLaserPrinters = new System.Windows.Forms.ComboBox();
     this.cboPrintPreview = new Janus.Windows.EditControls.UIComboBox();
     this.cboA4 = new Janus.Windows.EditControls.UIComboBox();
     this.label26 = new System.Windows.Forms.Label();
     this.plnAddDvuKCB = new System.Windows.Forms.Panel();
     this.txtMyNameEdit = new Janus.Windows.GridEX.EditControls.EditBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.pnlGoMaDvu = new System.Windows.Forms.Panel();
     this.txtExamtypeCode = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.txtIDKieuKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.cboKieuKham = new Janus.Windows.GridEX.EditControls.MultiColumnCombo();
     this.pnlKieuPhongkham = new System.Windows.Forms.Panel();
     this.label35 = new System.Windows.Forms.Label();
     this.txtKieuKham = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtPhongkham = new VNS.HIS.UCs.AutoCompleteTextbox();
     this.txtIDPkham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblDonGia = new System.Windows.Forms.Label();
     this.lblPhuThu = new System.Windows.Forms.Label();
     this.cmdAddDvuKCB = new Janus.Windows.EditControls.UIButton();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuMaDVu = new System.Windows.Forms.ToolStripMenuItem();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.lblTongSo = new System.Windows.Forms.Label();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.radTatCa = new Janus.Windows.EditControls.UIRadioButton();
     this.radNoiTru = new Janus.Windows.EditControls.UIRadioButton();
     this.radNgoaiTru = new Janus.Windows.EditControls.UIRadioButton();
     this.label4 = new System.Windows.Forms.Label();
     this.txtPatientCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dtmTo = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtmFrom = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate = new System.Windows.Forms.CheckBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabChiDinh)).BeginInit();
     this.tabChiDinh.SuspendLayout();
     this.tabPageChiDinh.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).BeginInit();
     this.uiGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdRegExam)).BeginInit();
     this.panel2.SuspendLayout();
     this.pnlnutchucnang.SuspendLayout();
     this.pnlPrint.SuspendLayout();
     this.plnAddDvuKCB.SuspendLayout();
     this.panel3.SuspendLayout();
     this.pnlGoMaDvu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboKieuKham)).BeginInit();
     this.pnlKieuPhongkham.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
     this.uiGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.toolStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemMoiBN,
     this.cmdSuaThongTinBN,
     this.cmdThemLanKham,
     this.cmdXoaBenhNhan,
     this.cmdExit});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1018, 31);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // cmdThemMoiBN
     //
     this.cmdThemMoiBN.BackColor = System.Drawing.SystemColors.Control;
     this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
     this.cmdThemMoiBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemMoiBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemMoiBN.Name = "cmdThemMoiBN";
     this.cmdThemMoiBN.Size = new System.Drawing.Size(92, 28);
     this.cmdThemMoiBN.Text = "&Thêm mới";
     this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để tiếp đón Bệnh nhân mới";
     //
     // cmdSuaThongTinBN
     //
     this.cmdSuaThongTinBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdSuaThongTinBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaThongTinBN.Image")));
     this.cmdSuaThongTinBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSuaThongTinBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSuaThongTinBN.Name = "cmdSuaThongTinBN";
     this.cmdSuaThongTinBN.Size = new System.Drawing.Size(111, 28);
     this.cmdSuaThongTinBN.Text = "&Sửa thông tin ";
     this.cmdSuaThongTinBN.ToolTipText = "Nhấn vào nút này để sửa thông tin Bệnh nhân đang chọn trên lưới";
     //
     // cmdThemLanKham
     //
     this.cmdThemLanKham.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemLanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemLanKham.Image")));
     this.cmdThemLanKham.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemLanKham.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemLanKham.Name = "cmdThemLanKham";
     this.cmdThemLanKham.Size = new System.Drawing.Size(121, 28);
     this.cmdThemLanKham.Text = "&Thêm lần khám";
     this.cmdThemLanKham.ToolTipText = "Nhấn nút này để thêm lần khám cho Bệnh nhân đang chọn trên lưới";
     //
     // cmdXoaBenhNhan
     //
     this.cmdXoaBenhNhan.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdXoaBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaBenhNhan.Image")));
     this.cmdXoaBenhNhan.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdXoaBenhNhan.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXoaBenhNhan.Name = "cmdXoaBenhNhan";
     this.cmdXoaBenhNhan.Size = new System.Drawing.Size(110, 28);
     this.cmdXoaBenhNhan.Text = "&Xóa lần khám";
     this.cmdXoaBenhNhan.ToolTipText = "Nhấn nút này để xóa lần khám của Bệnh nhân đang chọn trên lưới";
     //
     // cmdExit
     //
     this.cmdExit.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(126, 28);
     this.cmdExit.Text = "Đóng chức năng";
     this.cmdExit.ToolTipText = "Nhấn nút này để thoát khỏi chức năng ";
     //
     // tabChiDinh
     //
     this.tabChiDinh.Dock = System.Windows.Forms.DockStyle.Right;
     this.tabChiDinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabChiDinh.Location = new System.Drawing.Point(531, 103);
     this.tabChiDinh.Name = "tabChiDinh";
     this.tabChiDinh.Size = new System.Drawing.Size(487, 610);
     this.tabChiDinh.TabIndex = 0;
     this.tabChiDinh.TabPages.AddRange(new Janus.Windows.UI.Tab.UITabPage[] {
     this.tabPageChiDinh});
     this.tabChiDinh.TabStop = false;
     this.tabChiDinh.VisualStyle = Janus.Windows.UI.Tab.TabVisualStyle.VS2005;
     //
     // tabPageChiDinh
     //
     this.tabPageChiDinh.Controls.Add(this.uiGroupBox4);
     this.tabPageChiDinh.Controls.Add(this.uiGroupBox5);
     this.tabPageChiDinh.Controls.Add(this.uiGroupBox3);
     this.tabPageChiDinh.Location = new System.Drawing.Point(1, 23);
     this.tabPageChiDinh.Name = "tabPageChiDinh";
     this.tabPageChiDinh.Size = new System.Drawing.Size(485, 586);
     this.tabPageChiDinh.TabStop = true;
     this.tabPageChiDinh.Text = "Thông tin chỉ định(Nhấn F2)";
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.grdAssignDetail);
     this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox4.Name = "uiGroupBox4";
     this.uiGroupBox4.Size = new System.Drawing.Size(485, 495);
     this.uiGroupBox4.TabIndex = 1;
     this.uiGroupBox4.Text = "Danh sách các chỉ định CLS Bệnh nhân đã đăng ký";
     //
     // grdAssignDetail
     //
     this.grdAssignDetail.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdAssignDetail.BackColor = System.Drawing.Color.Silver;
     grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
     this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
     this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
     this.grdAssignDetail.GroupByBoxVisible = false;
     this.grdAssignDetail.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdAssignDetail.Location = new System.Drawing.Point(3, 17);
     this.grdAssignDetail.Name = "grdAssignDetail";
     this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.Size = new System.Drawing.Size(479, 475);
     this.grdAssignDetail.TabIndex = 0;
     this.grdAssignDetail.TabStop = false;
     this.grdAssignDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
     this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // uiGroupBox5
     //
     this.uiGroupBox5.Controls.Add(this.label6);
     this.uiGroupBox5.Controls.Add(this.label5);
     this.uiGroupBox5.Controls.Add(this.barcode);
     this.uiGroupBox5.Controls.Add(this.txtTongChiPhi);
     this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox5.Location = new System.Drawing.Point(0, 495);
     this.uiGroupBox5.Name = "uiGroupBox5";
     this.uiGroupBox5.Size = new System.Drawing.Size(485, 0);
     this.uiGroupBox5.TabIndex = 3;
     this.uiGroupBox5.Text = "&Thông tin chi phí";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(258, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(28, 15);
     this.label6.TabIndex = 242;
     this.label6.Text = "Vnđ";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(7, 40);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(45, 15);
     this.label5.TabIndex = 241;
     this.label5.Text = "Chi phí";
     //
     // barcode
     //
     this.barcode.BackColor = System.Drawing.Color.White;
     this.barcode.BarColor = System.Drawing.Color.Black;
     this.barcode.BarRatio = 2F;
     this.barcode.Data = "00000";
     this.barcode.DataExtension = null;
     this.barcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barcode.Location = new System.Drawing.Point(345, 15);
     this.barcode.Name = "barcode";
     this.barcode.Size = new System.Drawing.Size(218, 53);
     this.barcode.Symbology = Mabry.Windows.Forms.Barcode.Barcode.BarcodeSymbologies.Code128;
     this.barcode.TabIndex = 443;
     this.barcode.Text = "000000";
     this.barcode.Visible = false;
     //
     // txtTongChiPhi
     //
     this.txtTongChiPhi.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTongChiPhi.Location = new System.Drawing.Point(68, 37);
     this.txtTongChiPhi.Name = "txtTongChiPhi";
     this.txtTongChiPhi.ReadOnly = true;
     this.txtTongChiPhi.Size = new System.Drawing.Size(183, 23);
     this.txtTongChiPhi.TabIndex = 0;
     this.txtTongChiPhi.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.cmdPrintAssign);
     this.uiGroupBox3.Controls.Add(this.chkIntach);
     this.uiGroupBox3.Controls.Add(this.cboServicePrint);
     this.uiGroupBox3.Controls.Add(this.cmdXoaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdSuaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdThemChiDinh);
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(0, 495);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(485, 91);
     this.uiGroupBox3.TabIndex = 0;
     //
     // cmdPrintAssign
     //
     this.cmdPrintAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPrintAssign.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdPrintAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintAssign.Image")));
     this.cmdPrintAssign.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdPrintAssign.Location = new System.Drawing.Point(312, 56);
     this.cmdPrintAssign.Name = "cmdPrintAssign";
     this.cmdPrintAssign.Size = new System.Drawing.Size(78, 28);
     this.cmdPrintAssign.TabIndex = 706;
     this.cmdPrintAssign.Text = "In";
     this.toolTip1.SetToolTip(this.cmdPrintAssign, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
     //
     // chkIntach
     //
     this.chkIntach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.chkIntach.AutoSize = true;
     this.chkIntach.Location = new System.Drawing.Point(3, 14);
     this.chkIntach.Name = "chkIntach";
     this.chkIntach.Size = new System.Drawing.Size(69, 19);
     this.chkIntach.TabIndex = 705;
     this.chkIntach.Text = "In tách?";
     this.chkIntach.UseVisualStyleBackColor = true;
     //
     // cboServicePrint
     //
     this.cboServicePrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cboServicePrint.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboServicePrint.FormattingEnabled = true;
     this.cboServicePrint.Location = new System.Drawing.Point(78, 11);
     this.cboServicePrint.Name = "cboServicePrint";
     this.cboServicePrint.Size = new System.Drawing.Size(385, 23);
     this.cboServicePrint.TabIndex = 704;
     //
     // cmdXoaChiDinh
     //
     this.cmdXoaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaChiDinh.Image")));
     this.cmdXoaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdXoaChiDinh.Location = new System.Drawing.Point(210, 56);
     this.cmdXoaChiDinh.Name = "cmdXoaChiDinh";
     this.cmdXoaChiDinh.Size = new System.Drawing.Size(93, 29);
     this.cmdXoaChiDinh.TabIndex = 702;
     this.cmdXoaChiDinh.TabStop = false;
     this.cmdXoaChiDinh.Text = "&Xóa";
     //
     // cmdSuaChiDinh
     //
     this.cmdSuaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSuaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSuaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaChiDinh.Image")));
     this.cmdSuaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdSuaChiDinh.Location = new System.Drawing.Point(119, 56);
     this.cmdSuaChiDinh.Name = "cmdSuaChiDinh";
     this.cmdSuaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdSuaChiDinh.TabIndex = 701;
     this.cmdSuaChiDinh.TabStop = false;
     this.cmdSuaChiDinh.Text = "&Sửa";
     //
     // cmdThemChiDinh
     //
     this.cmdThemChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThemChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThemChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemChiDinh.Image")));
     this.cmdThemChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdThemChiDinh.Location = new System.Drawing.Point(10, 56);
     this.cmdThemChiDinh.Name = "cmdThemChiDinh";
     this.cmdThemChiDinh.Size = new System.Drawing.Size(103, 29);
     this.cmdThemChiDinh.TabIndex = 700;
     this.cmdThemChiDinh.TabStop = false;
     this.cmdThemChiDinh.Text = "&Thêm";
     //
     // grdRegExam
     //
     this.grdRegExam.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdRegExam.AlternatingColors = true;
     grdRegExam_DesignTimeLayout.LayoutString = resources.GetString("grdRegExam_DesignTimeLayout.LayoutString");
     this.grdRegExam.DesignTimeLayout = grdRegExam_DesignTimeLayout;
     this.grdRegExam.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdRegExam.Font = new System.Drawing.Font("Arial", 9F);
     this.grdRegExam.GroupByBoxVisible = false;
     this.grdRegExam.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdRegExam.Location = new System.Drawing.Point(0, 44);
     this.grdRegExam.Name = "grdRegExam";
     this.grdRegExam.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdRegExam.SelectedInactiveFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.grdRegExam.Size = new System.Drawing.Size(485, 355);
     this.grdRegExam.TabIndex = 603;
     this.grdRegExam.TabStop = false;
     this.grdRegExam.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdRegExam.TotalRowFormatStyle.BackColor = System.Drawing.SystemColors.Control;
     this.grdRegExam.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdRegExam.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.pnlnutchucnang);
     this.panel2.Controls.Add(this.lblMsg);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.label8);
     this.panel2.Controls.Add(this.cboKieuin);
     this.panel2.Controls.Add(this.cmdCauhinh);
     this.panel2.Controls.Add(this.chkInsaukhiluu);
     this.panel2.Controls.Add(this.cboLaserPrinters);
     this.panel2.Controls.Add(this.cboPrintPreview);
     this.panel2.Controls.Add(this.cboA4);
     this.panel2.Controls.Add(this.label26);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 399);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(485, 187);
     this.panel2.TabIndex = 602;
     //
     // pnlnutchucnang
     //
     this.pnlnutchucnang.Controls.Add(this.cmdInPhieuKham);
     this.pnlnutchucnang.Controls.Add(this.cmdXoaKham);
     this.pnlnutchucnang.Controls.Add(this.cmdThanhToanKham);
     this.pnlnutchucnang.Controls.Add(this.pnlPrint);
     this.pnlnutchucnang.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlnutchucnang.Location = new System.Drawing.Point(0, 154);
     this.pnlnutchucnang.Name = "pnlnutchucnang";
     this.pnlnutchucnang.Size = new System.Drawing.Size(485, 33);
     this.pnlnutchucnang.TabIndex = 704;
     //
     // cmdInPhieuKham
     //
     this.cmdInPhieuKham.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInPhieuKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInPhieuKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdInPhieuKham.Image")));
     this.cmdInPhieuKham.Location = new System.Drawing.Point(307, 2);
     this.cmdInPhieuKham.Name = "cmdInPhieuKham";
     this.cmdInPhieuKham.Size = new System.Drawing.Size(107, 27);
     this.cmdInPhieuKham.TabIndex = 34;
     this.cmdInPhieuKham.TabStop = false;
     this.cmdInPhieuKham.Text = "In phiếu KCB";
     this.cmdInPhieuKham.ToolTipText = "Nhấn vào đây để in phiếu khám chữa bệnh";
     //
     // cmdXoaKham
     //
     this.cmdXoaKham.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaKham.Image")));
     this.cmdXoaKham.Location = new System.Drawing.Point(416, 2);
     this.cmdXoaKham.Name = "cmdXoaKham";
     this.cmdXoaKham.Size = new System.Drawing.Size(66, 27);
     this.cmdXoaKham.TabIndex = 35;
     this.cmdXoaKham.TabStop = false;
     this.cmdXoaKham.Text = "Xóa";
     this.cmdXoaKham.ToolTipText = "Nhấn vào đây để xóa phiếu khám";
     //
     // cmdThanhToanKham
     //
     this.cmdThanhToanKham.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThanhToanKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThanhToanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThanhToanKham.Image")));
     this.cmdThanhToanKham.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdThanhToanKham.Location = new System.Drawing.Point(214, 2);
     this.cmdThanhToanKham.Name = "cmdThanhToanKham";
     this.cmdThanhToanKham.Size = new System.Drawing.Size(92, 27);
     this.cmdThanhToanKham.TabIndex = 33;
     this.cmdThanhToanKham.TabStop = false;
     this.cmdThanhToanKham.Tag = "TT";
     this.cmdThanhToanKham.Text = "T.Toán";
     this.cmdThanhToanKham.ToolTipText = "Nhấn vào đây để thanh toán chi phí KCB đang chọn";
     //
     // pnlPrint
     //
     this.pnlPrint.Controls.Add(this.cmdInhoadon);
     this.pnlPrint.Controls.Add(this.cmdInBienlai);
     this.pnlPrint.Dock = System.Windows.Forms.DockStyle.Left;
     this.pnlPrint.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.pnlPrint.Location = new System.Drawing.Point(0, 0);
     this.pnlPrint.Name = "pnlPrint";
     this.pnlPrint.Size = new System.Drawing.Size(208, 33);
     this.pnlPrint.TabIndex = 0;
     //
     // cmdInhoadon
     //
     this.cmdInhoadon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInhoadon.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInhoadon.Image = ((System.Drawing.Image)(resources.GetObject("cmdInhoadon.Image")));
     this.cmdInhoadon.Location = new System.Drawing.Point(108, 3);
     this.cmdInhoadon.Name = "cmdInhoadon";
     this.cmdInhoadon.Size = new System.Drawing.Size(97, 27);
     this.cmdInhoadon.TabIndex = 37;
     this.cmdInhoadon.TabStop = false;
     this.cmdInhoadon.Text = "In hóa đơn";
     this.cmdInhoadon.ToolTipText = "Nhấn vào đây để in hóa đơn thanh toán";
     //
     // cmdInBienlai
     //
     this.cmdInBienlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdInBienlai.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInBienlai.Image = ((System.Drawing.Image)(resources.GetObject("cmdInBienlai.Image")));
     this.cmdInBienlai.Location = new System.Drawing.Point(5, 3);
     this.cmdInBienlai.Name = "cmdInBienlai";
     this.cmdInBienlai.Size = new System.Drawing.Size(97, 27);
     this.cmdInBienlai.TabIndex = 36;
     this.cmdInBienlai.TabStop = false;
     this.cmdInBienlai.Text = "In biên lai";
     this.cmdInBienlai.ToolTipText = "Nhấn vào đây để in phiếu thu (biên lai)";
     //
     // lblMsg
     //
     this.lblMsg.AutoSize = true;
     this.lblMsg.Location = new System.Drawing.Point(14, 120);
     this.lblMsg.Name = "lblMsg";
     this.lblMsg.Size = new System.Drawing.Size(0, 13);
     this.lblMsg.TabIndex = 703;
     this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(15, 64);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(75, 15);
     this.label9.TabIndex = 702;
     this.label9.Text = "Kiểu in";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(75, 15);
     this.label8.TabIndex = 455;
     this.label8.Text = "Cỡ giấy";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboKieuin
     //
     this.cboKieuin.BackColor = System.Drawing.Color.White;
     this.cboKieuin.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
     this.cboKieuin.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboKieuin.Font = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "In nhiệt";
     uiComboBoxItem1.Value = "0";
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "In laser";
     uiComboBoxItem2.Value = "1";
     this.cboKieuin.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2});
     this.cboKieuin.Location = new System.Drawing.Point(93, 60);
     this.cboKieuin.Name = "cboKieuin";
     this.cboKieuin.Size = new System.Drawing.Size(273, 21);
     this.cboKieuin.TabIndex = 453;
     this.cboKieuin.TabStop = false;
     this.cboKieuin.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // cmdCauhinh
     //
     this.cmdCauhinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdCauhinh.Image")));
     this.cmdCauhinh.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdCauhinh.Location = new System.Drawing.Point(372, 6);
     this.cmdCauhinh.Name = "cmdCauhinh";
     this.cmdCauhinh.Size = new System.Drawing.Size(102, 48);
     this.cmdCauhinh.TabIndex = 546;
     this.cmdCauhinh.TabStop = false;
     this.cmdCauhinh.Text = "Cấu hình thêm";
     //
     // chkInsaukhiluu
     //
     this.chkInsaukhiluu.AutoSize = true;
     this.chkInsaukhiluu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkInsaukhiluu.Location = new System.Drawing.Point(93, 89);
     this.chkInsaukhiluu.Name = "chkInsaukhiluu";
     this.chkInsaukhiluu.Size = new System.Drawing.Size(302, 19);
     this.chkInsaukhiluu.TabIndex = 451;
     this.chkInsaukhiluu.TabStop = false;
     this.chkInsaukhiluu.Text = "In phiếu khám ngay sau khi thêm mới Bệnh nhân?";
     this.chkInsaukhiluu.UseVisualStyleBackColor = true;
     //
     // cboLaserPrinters
     //
     this.cboLaserPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboLaserPrinters.FormattingEnabled = true;
     this.cboLaserPrinters.Location = new System.Drawing.Point(93, 6);
     this.cboLaserPrinters.Name = "cboLaserPrinters";
     this.cboLaserPrinters.Size = new System.Drawing.Size(273, 21);
     this.cboLaserPrinters.TabIndex = 449;
     this.cboLaserPrinters.TabStop = false;
     //
     // cboPrintPreview
     //
     this.cboPrintPreview.BackColor = System.Drawing.Color.White;
     this.cboPrintPreview.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
     this.cboPrintPreview.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboPrintPreview.Font = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator = false;
     uiComboBoxItem3.Text = "Xem trước khi in";
     uiComboBoxItem3.Value = "0";
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator = false;
     uiComboBoxItem4.Text = "In ngay";
     uiComboBoxItem4.Value = "1";
     this.cboPrintPreview.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem3,
     uiComboBoxItem4});
     this.cboPrintPreview.Location = new System.Drawing.Point(150, 33);
     this.cboPrintPreview.Name = "cboPrintPreview";
     this.cboPrintPreview.Size = new System.Drawing.Size(216, 21);
     this.cboPrintPreview.TabIndex = 448;
     this.cboPrintPreview.TabStop = false;
     this.cboPrintPreview.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // cboA4
     //
     this.cboA4.BackColor = System.Drawing.Color.White;
     this.cboA4.BorderStyle = Janus.Windows.UI.BorderStyle.Sunken;
     this.cboA4.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboA4.Font = new System.Drawing.Font("Arial", 9F);
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator = false;
     uiComboBoxItem5.Text = "A4";
     uiComboBoxItem5.Value = "A4";
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator = false;
     uiComboBoxItem6.Text = "A5";
     uiComboBoxItem6.Value = "A5";
     this.cboA4.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem5,
     uiComboBoxItem6});
     this.cboA4.Location = new System.Drawing.Point(93, 33);
     this.cboA4.Name = "cboA4";
     this.cboA4.Size = new System.Drawing.Size(55, 21);
     this.cboA4.TabIndex = 447;
     this.cboA4.TabStop = false;
     this.cboA4.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // label26
     //
     this.label26.Location = new System.Drawing.Point(11, 9);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(75, 15);
     this.label26.TabIndex = 450;
     this.label26.Text = "Chọn máy in";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // plnAddDvuKCB
     //
     this.plnAddDvuKCB.Controls.Add(this.txtMyNameEdit);
     this.plnAddDvuKCB.Controls.Add(this.panel3);
     this.plnAddDvuKCB.Controls.Add(this.lblDonGia);
     this.plnAddDvuKCB.Controls.Add(this.lblPhuThu);
     this.plnAddDvuKCB.Controls.Add(this.cmdAddDvuKCB);
     this.plnAddDvuKCB.Controls.Add(this.txtIDKieuKham);
     this.plnAddDvuKCB.Controls.Add(this.txtIDPkham);
     this.plnAddDvuKCB.Dock = System.Windows.Forms.DockStyle.Top;
     this.plnAddDvuKCB.Location = new System.Drawing.Point(0, 0);
     this.plnAddDvuKCB.Name = "plnAddDvuKCB";
     this.plnAddDvuKCB.Size = new System.Drawing.Size(485, 44);
     this.plnAddDvuKCB.TabIndex = 0;
     this.plnAddDvuKCB.TabStop = true;
     //
     // txtMyNameEdit
     //
     this.txtMyNameEdit.BackColor = System.Drawing.Color.White;
     this.txtMyNameEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMyNameEdit.Location = new System.Drawing.Point(2, 17);
     this.txtMyNameEdit.Name = "txtMyNameEdit";
     this.txtMyNameEdit.Size = new System.Drawing.Size(10, 23);
     this.txtMyNameEdit.TabIndex = 549;
     this.txtMyNameEdit.TabStop = false;
     this.txtMyNameEdit.Visible = false;
     //
     // panel3
     //
     this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel3.Controls.Add(this.pnlGoMaDvu);
     this.panel3.Controls.Add(this.pnlKieuPhongkham);
     this.panel3.Location = new System.Drawing.Point(10, 6);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(434, 34);
     this.panel3.TabIndex = 548;
     //
     // pnlGoMaDvu
     //
     this.pnlGoMaDvu.Controls.Add(this.txtExamtypeCode);
     this.pnlGoMaDvu.Controls.Add(this.cboKieuKham);
     this.pnlGoMaDvu.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlGoMaDvu.Location = new System.Drawing.Point(0, 0);
     this.pnlGoMaDvu.Name = "pnlGoMaDvu";
     this.pnlGoMaDvu.Size = new System.Drawing.Size(434, 34);
     this.pnlGoMaDvu.TabIndex = 549;
     this.pnlGoMaDvu.TabStop = true;
     //
     // txtExamtypeCode
     //
     this.txtExamtypeCode._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtExamtypeCode._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExamtypeCode.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtExamtypeCode.AutoCompleteList")));
     this.txtExamtypeCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtExamtypeCode.CaseSensitive = false;
     this.txtExamtypeCode.CompareNoID = true;
     this.txtExamtypeCode.DefaultCode = "-1";
     this.txtExamtypeCode.DefaultID = "-1";
     this.txtExamtypeCode.Drug_ID = null;
     this.txtExamtypeCode.ExtraWidth = 374;
     this.txtExamtypeCode.FillValueAfterSelect = false;
     this.txtExamtypeCode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExamtypeCode.Location = new System.Drawing.Point(4, 6);
     this.txtExamtypeCode.MaxHeight = 289;
     this.txtExamtypeCode.MinTypedCharacters = 2;
     this.txtExamtypeCode.MyCode = "-1";
     this.txtExamtypeCode.MyID = "-1";
     this.txtExamtypeCode.Name = "txtExamtypeCode";
     this.txtExamtypeCode.RaiseEvent = true;
     this.txtExamtypeCode.RaiseEventEnter = false;
     this.txtExamtypeCode.RaiseEventEnterWhenEmpty = false;
     this.txtExamtypeCode.SelectedIndex = -1;
     this.txtExamtypeCode.Size = new System.Drawing.Size(93, 21);
     this.txtExamtypeCode.splitChar = '@';
     this.txtExamtypeCode.splitCharIDAndCode = '#';
     this.txtExamtypeCode.TabIndex = 9;
     this.txtExamtypeCode.TakeCode = true;
     this.txtExamtypeCode.txtMyCode = null;
     this.txtExamtypeCode.txtMyCode_Edit = null;
     this.txtExamtypeCode.txtMyID = null;
     this.txtExamtypeCode.txtMyID_Edit = this.txtIDKieuKham;
     this.txtExamtypeCode.txtMyName = null;
     this.txtExamtypeCode.txtMyName_Edit = this.txtMyNameEdit;
     this.txtExamtypeCode.txtNext = null;
     //
     // txtIDKieuKham
     //
     this.txtIDKieuKham.BackColor = System.Drawing.Color.White;
     this.txtIDKieuKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtIDKieuKham.Location = new System.Drawing.Point(25, 43);
     this.txtIDKieuKham.Name = "txtIDKieuKham";
     this.txtIDKieuKham.Size = new System.Drawing.Size(12, 23);
     this.txtIDKieuKham.TabIndex = 543;
     this.txtIDKieuKham.TabStop = false;
     this.txtIDKieuKham.Visible = false;
     //
     // cboKieuKham
     //
     this.cboKieuKham.AllowDrop = true;
     this.cboKieuKham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboKieuKham.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     cboKieuKham_DesignTimeLayout.LayoutString = resources.GetString("cboKieuKham_DesignTimeLayout.LayoutString");
     this.cboKieuKham.DesignTimeLayout = cboKieuKham_DesignTimeLayout;
     this.cboKieuKham.DisplayMember = "_name";
     this.cboKieuKham.HoverMode = Janus.Windows.GridEX.HoverMode.Highlight;
     this.cboKieuKham.Location = new System.Drawing.Point(99, 6);
     this.cboKieuKham.Name = "cboKieuKham";
     this.cboKieuKham.SelectedIndex = -1;
     this.cboKieuKham.SelectedItem = null;
     this.cboKieuKham.Size = new System.Drawing.Size(332, 20);
     this.cboKieuKham.TabIndex = 10;
     this.cboKieuKham.Text = "CHỌN DỊCH VỤ KCB";
     this.cboKieuKham.ValueMember = "ID";
     this.cboKieuKham.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // pnlKieuPhongkham
     //
     this.pnlKieuPhongkham.Controls.Add(this.label35);
     this.pnlKieuPhongkham.Controls.Add(this.txtKieuKham);
     this.pnlKieuPhongkham.Controls.Add(this.label23);
     this.pnlKieuPhongkham.Controls.Add(this.txtPhongkham);
     this.pnlKieuPhongkham.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlKieuPhongkham.Location = new System.Drawing.Point(0, 0);
     this.pnlKieuPhongkham.Name = "pnlKieuPhongkham";
     this.pnlKieuPhongkham.Size = new System.Drawing.Size(434, 34);
     this.pnlKieuPhongkham.TabIndex = 547;
     this.pnlKieuPhongkham.TabStop = true;
     //
     // label35
     //
     this.label35.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label35.Location = new System.Drawing.Point(9, 6);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(88, 21);
     this.label35.TabIndex = 541;
     this.label35.Text = "Dịch vụ khám:";
     this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtKieuKham
     //
     this.txtKieuKham._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtKieuKham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKieuKham.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtKieuKham.AutoCompleteList")));
     this.txtKieuKham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtKieuKham.CaseSensitive = false;
     this.txtKieuKham.CompareNoID = true;
     this.txtKieuKham.DefaultCode = "-1";
     this.txtKieuKham.DefaultID = "-1";
     this.txtKieuKham.Drug_ID = null;
     this.txtKieuKham.ExtraWidth = 0;
     this.txtKieuKham.FillValueAfterSelect = false;
     this.txtKieuKham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKieuKham.Location = new System.Drawing.Point(100, 7);
     this.txtKieuKham.MaxHeight = 289;
     this.txtKieuKham.MinTypedCharacters = 2;
     this.txtKieuKham.MyCode = "-1";
     this.txtKieuKham.MyID = "-1";
     this.txtKieuKham.Name = "txtKieuKham";
     this.txtKieuKham.RaiseEvent = true;
     this.txtKieuKham.RaiseEventEnter = false;
     this.txtKieuKham.RaiseEventEnterWhenEmpty = false;
     this.txtKieuKham.SelectedIndex = -1;
     this.txtKieuKham.Size = new System.Drawing.Size(188, 21);
     this.txtKieuKham.splitChar = '@';
     this.txtKieuKham.splitCharIDAndCode = '#';
     this.txtKieuKham.TabIndex = 7;
     this.txtKieuKham.TakeCode = false;
     this.txtKieuKham.txtMyCode = null;
     this.txtKieuKham.txtMyCode_Edit = null;
     this.txtKieuKham.txtMyID = null;
     this.txtKieuKham.txtMyID_Edit = this.txtIDKieuKham;
     this.txtKieuKham.txtMyName = null;
     this.txtKieuKham.txtMyName_Edit = null;
     this.txtKieuKham.txtNext = null;
     //
     // label23
     //
     this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label23.Location = new System.Drawing.Point(277, 6);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(98, 21);
     this.label23.TabIndex = 542;
     this.label23.Text = "Phòng khám:";
     this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPhongkham
     //
     this.txtPhongkham._backcolor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.txtPhongkham._Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhongkham.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPhongkham.AutoCompleteList = ((System.Collections.Generic.List<string>)(resources.GetObject("txtPhongkham.AutoCompleteList")));
     this.txtPhongkham.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtPhongkham.CaseSensitive = false;
     this.txtPhongkham.CompareNoID = true;
     this.txtPhongkham.DefaultCode = "-1";
     this.txtPhongkham.DefaultID = "-1";
     this.txtPhongkham.Drug_ID = null;
     this.txtPhongkham.ExtraWidth = 0;
     this.txtPhongkham.FillValueAfterSelect = false;
     this.txtPhongkham.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhongkham.Location = new System.Drawing.Point(381, 6);
     this.txtPhongkham.MaxHeight = 289;
     this.txtPhongkham.MinTypedCharacters = 2;
     this.txtPhongkham.MyCode = "-1";
     this.txtPhongkham.MyID = "-1";
     this.txtPhongkham.Name = "txtPhongkham";
     this.txtPhongkham.RaiseEvent = true;
     this.txtPhongkham.RaiseEventEnter = false;
     this.txtPhongkham.RaiseEventEnterWhenEmpty = false;
     this.txtPhongkham.SelectedIndex = -1;
     this.txtPhongkham.Size = new System.Drawing.Size(50, 21);
     this.txtPhongkham.splitChar = '@';
     this.txtPhongkham.splitCharIDAndCode = '#';
     this.txtPhongkham.TabIndex = 8;
     this.txtPhongkham.TakeCode = false;
     this.txtPhongkham.txtMyCode = null;
     this.txtPhongkham.txtMyCode_Edit = null;
     this.txtPhongkham.txtMyID = null;
     this.txtPhongkham.txtMyID_Edit = this.txtIDPkham;
     this.txtPhongkham.txtMyName = null;
     this.txtPhongkham.txtMyName_Edit = null;
     this.txtPhongkham.txtNext = null;
     //
     // txtIDPkham
     //
     this.txtIDPkham.BackColor = System.Drawing.Color.White;
     this.txtIDPkham.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtIDPkham.Location = new System.Drawing.Point(43, 43);
     this.txtIDPkham.Name = "txtIDPkham";
     this.txtIDPkham.Size = new System.Drawing.Size(10, 23);
     this.txtIDPkham.TabIndex = 544;
     this.txtIDPkham.TabStop = false;
     this.txtIDPkham.Visible = false;
     //
     // lblDonGia
     //
     this.lblDonGia.AutoSize = true;
     this.lblDonGia.Location = new System.Drawing.Point(264, 49);
     this.lblDonGia.Name = "lblDonGia";
     this.lblDonGia.Size = new System.Drawing.Size(13, 13);
     this.lblDonGia.TabIndex = 546;
     this.lblDonGia.Text = "0";
     //
     // lblPhuThu
     //
     this.lblPhuThu.AutoSize = true;
     this.lblPhuThu.Location = new System.Drawing.Point(111, 49);
     this.lblPhuThu.Name = "lblPhuThu";
     this.lblPhuThu.Size = new System.Drawing.Size(13, 13);
     this.lblPhuThu.TabIndex = 545;
     this.lblPhuThu.Text = "0";
     //
     // cmdAddDvuKCB
     //
     this.cmdAddDvuKCB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdAddDvuKCB.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdAddDvuKCB.Image = ((System.Drawing.Image)(resources.GetObject("cmdAddDvuKCB.Image")));
     this.cmdAddDvuKCB.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdAddDvuKCB.Location = new System.Drawing.Point(450, 7);
     this.cmdAddDvuKCB.Name = "cmdAddDvuKCB";
     this.cmdAddDvuKCB.Size = new System.Drawing.Size(29, 27);
     this.cmdAddDvuKCB.TabIndex = 11;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuMaDVu});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(280, 26);
     //
     // mnuMaDVu
     //
     this.mnuMaDVu.CheckOnClick = true;
     this.mnuMaDVu.Name = "mnuMaDVu";
     this.mnuMaDVu.Size = new System.Drawing.Size(279, 22);
     this.mnuMaDVu.Text = "Đăng ký dịch vụ KCB bằng cách gõ mã";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 713);
     this.uiStatusBar1.Name = "uiStatusBar1";
     uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel1.Key = "";
     uiStatusBarPanel1.ProgressBarValue = 0;
     uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới";
     uiStatusBarPanel1.Width = 113;
     uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel2.Key = "";
     uiStatusBarPanel2.ProgressBarValue = 0;
     uiStatusBarPanel2.Text = "Ctrl+U: Cập nhật";
     uiStatusBarPanel2.Width = 106;
     uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel3.Key = "";
     uiStatusBarPanel3.ProgressBarValue = 0;
     uiStatusBarPanel3.Text = "Ctrl+D: Xóa";
     uiStatusBarPanel3.Width = 77;
     uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel4.Key = "";
     uiStatusBarPanel4.ProgressBarValue = 0;
     uiStatusBarPanel4.Text = "Ctrl+K: Thêm khám";
     uiStatusBarPanel4.Width = 121;
     uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel5.Key = "";
     uiStatusBarPanel5.ProgressBarValue = 0;
     uiStatusBarPanel5.Text = "Esc: Thoát Form";
     uiStatusBarPanel5.Width = 105;
     this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
     uiStatusBarPanel1,
     uiStatusBarPanel2,
     uiStatusBarPanel3,
     uiStatusBarPanel4,
     uiStatusBarPanel5});
     this.uiStatusBar1.Size = new System.Drawing.Size(1018, 27);
     this.uiStatusBar1.TabIndex = 7;
     this.uiStatusBar1.TabStop = false;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.lblTongSo);
     this.uiGroupBox1.Controls.Add(this.cboObjectType);
     this.uiGroupBox1.Controls.Add(this.radTatCa);
     this.uiGroupBox1.Controls.Add(this.radNoiTru);
     this.uiGroupBox1.Controls.Add(this.radNgoaiTru);
     this.uiGroupBox1.Controls.Add(this.label4);
     this.uiGroupBox1.Controls.Add(this.txtPatientCode);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtPatient_ID);
     this.uiGroupBox1.Controls.Add(this.Label7);
     this.uiGroupBox1.Controls.Add(this.txtPatientName);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.dtmTo);
     this.uiGroupBox1.Controls.Add(this.dtmFrom);
     this.uiGroupBox1.Controls.Add(this.chkByDate);
     this.uiGroupBox1.Controls.Add(this.Label1);
     this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(1018, 72);
     this.uiGroupBox1.TabIndex = 1;
     //
     // lblTongSo
     //
     this.lblTongSo.AutoSize = true;
     this.lblTongSo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTongSo.Location = new System.Drawing.Point(12, 95);
     this.lblTongSo.Name = "lblTongSo";
     this.lblTongSo.Size = new System.Drawing.Size(127, 17);
     this.lblTongSo.TabIndex = 1;
     this.lblTongSo.Text = "&Tổng số bản ghi :0";
     //
     // cboObjectType
     //
     this.cboObjectType.Location = new System.Drawing.Point(482, 42);
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.Size = new System.Drawing.Size(327, 21);
     this.cboObjectType.TabIndex = 5;
     this.cboObjectType.TabStop = false;
     this.cboObjectType.Text = "Đối tượng";
     //
     // radTatCa
     //
     this.radTatCa.Checked = true;
     this.radTatCa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radTatCa.ForeColor = System.Drawing.Color.Navy;
     this.radTatCa.Location = new System.Drawing.Point(94, 73);
     this.radTatCa.Name = "radTatCa";
     this.radTatCa.Size = new System.Drawing.Size(59, 27);
     this.radTatCa.TabIndex = 521;
     this.radTatCa.TabStop = true;
     this.radTatCa.Text = "&Tất cả";
     //
     // radNoiTru
     //
     this.radNoiTru.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radNoiTru.ForeColor = System.Drawing.Color.Navy;
     this.radNoiTru.Location = new System.Drawing.Point(248, 73);
     this.radNoiTru.Name = "radNoiTru";
     this.radNoiTru.Size = new System.Drawing.Size(80, 27);
     this.radNoiTru.TabIndex = 520;
     this.radNoiTru.Text = "&Nội trú";
     //
     // radNgoaiTru
     //
     this.radNgoaiTru.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radNgoaiTru.ForeColor = System.Drawing.Color.Navy;
     this.radNgoaiTru.Location = new System.Drawing.Point(159, 73);
     this.radNgoaiTru.Name = "radNgoaiTru";
     this.radNgoaiTru.Size = new System.Drawing.Size(78, 27);
     this.radNgoaiTru.TabIndex = 519;
     this.radNgoaiTru.Text = "&Ngoại trú";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(588, 17);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 15);
     this.label4.TabIndex = 518;
     this.label4.Text = "Mã lần khám";
     //
     // txtPatientCode
     //
     this.txtPatientCode.BackColor = System.Drawing.Color.White;
     this.txtPatientCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientCode.Location = new System.Drawing.Point(671, 13);
     this.txtPatientCode.Name = "txtPatientCode";
     this.txtPatientCode.Size = new System.Drawing.Size(138, 21);
     this.txtPatientCode.TabIndex = 3;
     this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(414, 17);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 15);
     this.label2.TabIndex = 516;
     this.label2.Text = "Mã BN";
     //
     // txtPatient_ID
     //
     this.txtPatient_ID.BackColor = System.Drawing.Color.White;
     this.txtPatient_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatient_ID.Location = new System.Drawing.Point(482, 13);
     this.txtPatient_ID.Name = "txtPatient_ID";
     this.txtPatient_ID.Numeric = true;
     this.txtPatient_ID.Size = new System.Drawing.Size(102, 21);
     this.txtPatient_ID.TabIndex = 2;
     this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(414, 47);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(62, 15);
     this.Label7.TabIndex = 514;
     this.Label7.Text = "Đối tượng";
     //
     // txtPatientName
     //
     this.txtPatientName.BackColor = System.Drawing.Color.White;
     this.txtPatientName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientName.Location = new System.Drawing.Point(94, 41);
     this.txtPatientName.Name = "txtPatientName";
     this.txtPatientName.Size = new System.Drawing.Size(313, 23);
     this.txtPatientName.TabIndex = 4;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(23, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(54, 15);
     this.label3.TabIndex = 511;
     this.label3.Text = "Tên BN :";
     this.label3.Click += new System.EventHandler(this.label3_Click);
     //
     // dtmTo
     //
     this.dtmTo.CustomFormat = "dd/MM/yyyy";
     this.dtmTo.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmTo.DropDownCalendar.Name = "";
     this.dtmTo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmTo.Location = new System.Drawing.Point(277, 14);
     this.dtmTo.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmTo.Name = "dtmTo";
     this.dtmTo.ShowUpDown = true;
     this.dtmTo.Size = new System.Drawing.Size(130, 21);
     this.dtmTo.TabIndex = 1;
     this.dtmTo.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // dtmFrom
     //
     this.dtmFrom.CustomFormat = "dd/MM/yyyy";
     this.dtmFrom.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmFrom.DropDownCalendar.Name = "";
     this.dtmFrom.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmFrom.Location = new System.Drawing.Point(94, 14);
     this.dtmFrom.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmFrom.Name = "dtmFrom";
     this.dtmFrom.ShowUpDown = true;
     this.dtmFrom.Size = new System.Drawing.Size(117, 21);
     this.dtmFrom.TabIndex = 0;
     this.dtmFrom.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.AutoSize = true;
     this.chkByDate.Checked = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location = new System.Drawing.Point(15, 15);
     this.chkByDate.Name = "chkByDate";
     this.chkByDate.Size = new System.Drawing.Size(76, 19);
     this.chkByDate.TabIndex = 241;
     this.chkByDate.Text = "Từ ngày :";
     this.chkByDate.UseVisualStyleBackColor = true;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.Black;
     this.Label1.Location = new System.Drawing.Point(217, 19);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(59, 15);
     this.Label1.TabIndex = 240;
     this.Label1.Text = "Đến ngày";
     //
     // cmdTimKiem
     //
     this.cmdTimKiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdTimKiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiem.Image")));
     this.cmdTimKiem.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdTimKiem.Location = new System.Drawing.Point(844, 20);
     this.cmdTimKiem.Name = "cmdTimKiem";
     this.cmdTimKiem.Size = new System.Drawing.Size(162, 40);
     this.cmdTimKiem.TabIndex = 6;
     this.cmdTimKiem.Text = "&Tìm kiếm (F3)";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // uiGroupBox2
     //
     this.uiGroupBox2.Controls.Add(this.grdList);
     this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.uiGroupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.uiGroupBox2.Name = "uiGroupBox2";
     this.uiGroupBox2.Size = new System.Drawing.Size(531, 610);
     this.uiGroupBox2.TabIndex = 2;
     this.uiGroupBox2.Text = "Danh sách Bệnh nhân đăng ký KCB";
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.BackColor = System.Drawing.Color.Silver;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
     " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.DynamicFiltering = true;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.FrozenColumns = 3;
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location = new System.Drawing.Point(3, 17);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdList.Size = new System.Drawing.Size(525, 590);
     this.grdList.TabIndex = 0;
     this.grdList.TabStop = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.uiGroupBox2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 103);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(531, 610);
     this.panel1.TabIndex = 547;
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
     //
     // frm_TimKiemBN
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1018, 740);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.tabChiDinh);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_TimKiemBN";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thông tin tiếp đón bệnh nhân";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frm_TimKiemBN_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabChiDinh)).EndInit();
     this.tabChiDinh.ResumeLayout(false);
     this.tabPageChiDinh.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox5)).EndInit();
     this.uiGroupBox5.ResumeLayout(false);
     this.uiGroupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdRegExam)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.pnlnutchucnang.ResumeLayout(false);
     this.pnlPrint.ResumeLayout(false);
     this.plnAddDvuKCB.ResumeLayout(false);
     this.plnAddDvuKCB.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.pnlGoMaDvu.ResumeLayout(false);
     this.pnlGoMaDvu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboKieuKham)).EndInit();
     this.pnlKieuPhongkham.ResumeLayout(false);
     this.pnlKieuPhongkham.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
     this.uiGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_BENHAN_N0ITRU));
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem4 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem5 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem6 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.GridEX.GridEXLayout grdQLNBKhoa_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.grpThongTinBenhNhan = new Janus.Windows.EditControls.UIGroupBox();
     this.txtPhong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label94 = new System.Windows.Forms.Label();
     this.txtID = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtMaKhoaThucHien = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtGiuong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label93 = new System.Windows.Forms.Label();
     this.txtKhoa = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label87 = new System.Windows.Forms.Label();
     this.cboTTBNDanToc = new Janus.Windows.EditControls.UIComboBox();
     this.txtSoBaoHiemYte = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label16 = new System.Windows.Forms.Label();
     this.dtInsToDate = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtDienThoai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label13 = new System.Windows.Forms.Label();
     this.txtMaBenhAn = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtMaLanKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtThongTinLienHe = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.txtDoiTuong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtNoiLamViec = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label1 = new System.Windows.Forms.Label();
     this.chkNgoaiKieu = new Janus.Windows.EditControls.UICheckBox();
     this.lblDanToc = new System.Windows.Forms.Label();
     this.lblNgheNghiep = new System.Windows.Forms.Label();
     this.cboGioiTinh = new Janus.Windows.EditControls.UIComboBox();
     this.txtNgheNghiep = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblGioiTinh = new System.Windows.Forms.Label();
     this.txtNamSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtThangSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNgaySinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblNgaySinh = new System.Windows.Forms.Label();
     this.lblTenBn = new System.Windows.Forms.Label();
     this.txtHoTen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.uiGroupBox4 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtTKBAHuongDieuTri = new System.Windows.Forms.RichTextBox();
     this.label92 = new System.Windows.Forms.Label();
     this.txtTKBATinhTrangRaVien = new System.Windows.Forms.RichTextBox();
     this.txtTKBAPhuongPhapDieuTri = new System.Windows.Forms.RichTextBox();
     this.label91 = new System.Windows.Forms.Label();
     this.txtTKBATTomTatKetQua = new System.Windows.Forms.RichTextBox();
     this.label90 = new System.Windows.Forms.Label();
     this.label89 = new System.Windows.Forms.Label();
     this.txtTKBAQuaTrinhBenhLy = new System.Windows.Forms.RichTextBox();
     this.label88 = new System.Windows.Forms.Label();
     this.grpBenhAn = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBenhAnPhanBiet = new System.Windows.Forms.TextBox();
     this.txtBenhAnBenhKemTheo = new System.Windows.Forms.TextBox();
     this.txtBenhAnBenhChinh = new System.Windows.Forms.TextBox();
     this.txtBenhAnHuongDieuTri = new System.Windows.Forms.RichTextBox();
     this.label86 = new System.Windows.Forms.Label();
     this.txtBenhAnTienLuong = new System.Windows.Forms.RichTextBox();
     this.label85 = new System.Windows.Forms.Label();
     this.label84 = new System.Windows.Forms.Label();
     this.label68 = new System.Windows.Forms.Label();
     this.label67 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.txtBenhAnTomTatBenhAn = new System.Windows.Forms.RichTextBox();
     this.txtBenhAnCacXetNghiem = new System.Windows.Forms.RichTextBox();
     this.label64 = new System.Windows.Forms.Label();
     this.txtBenhAnNoiTiet = new System.Windows.Forms.RichTextBox();
     this.label63 = new System.Windows.Forms.Label();
     this.txtBenhAnMat = new System.Windows.Forms.RichTextBox();
     this.label62 = new System.Windows.Forms.Label();
     this.txtBenhAnRangHamMat = new System.Windows.Forms.RichTextBox();
     this.label61 = new System.Windows.Forms.Label();
     this.txtBenhAnTaiMuiHong = new System.Windows.Forms.RichTextBox();
     this.label60 = new System.Windows.Forms.Label();
     this.txtBenhAnCoXuongKhop = new System.Windows.Forms.RichTextBox();
     this.label59 = new System.Windows.Forms.Label();
     this.txtBenhAnThanKinh = new System.Windows.Forms.RichTextBox();
     this.txtBenhAnThanTietNieuSinhDuc = new System.Windows.Forms.RichTextBox();
     this.label58 = new System.Windows.Forms.Label();
     this.label57 = new System.Windows.Forms.Label();
     this.txtBenhAnTieuHoa = new System.Windows.Forms.RichTextBox();
     this.label56 = new System.Windows.Forms.Label();
     this.txtBenhAnHoHap = new System.Windows.Forms.RichTextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.txtBenhAnTuanHoan = new System.Windows.Forms.RichTextBox();
     this.label54 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtCanNang = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhipTho = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label83 = new System.Windows.Forms.Label();
     this.txtHuyetApDen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtHuyetApTu = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhietDo = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label82 = new System.Windows.Forms.Label();
     this.label81 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.label79 = new System.Windows.Forms.Label();
     this.label78 = new System.Windows.Forms.Label();
     this.label77 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.txtMach = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label75 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.label72 = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.label69 = new System.Windows.Forms.Label();
     this.txtBenhAnToanThan = new System.Windows.Forms.RichTextBox();
     this.label52 = new System.Windows.Forms.Label();
     this.label51 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.txtBenhAnGiaDinh = new System.Windows.Forms.RichTextBox();
     this.label49 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.txtKhac = new System.Windows.Forms.TextBox();
     this.txtThuocLao = new System.Windows.Forms.TextBox();
     this.txtThuocLa = new System.Windows.Forms.TextBox();
     this.txtRuouBia = new System.Windows.Forms.TextBox();
     this.txtMaTuy = new System.Windows.Forms.TextBox();
     this.txtDiUng = new System.Windows.Forms.TextBox();
     this.chkKhac = new System.Windows.Forms.CheckBox();
     this.chkThuocLao = new System.Windows.Forms.CheckBox();
     this.chkThuocLa = new System.Windows.Forms.CheckBox();
     this.chkRuouBia = new System.Windows.Forms.CheckBox();
     this.chkMaTuy = new System.Windows.Forms.CheckBox();
     this.chkDiUng = new System.Windows.Forms.CheckBox();
     this.label46 = new System.Windows.Forms.Label();
     this.txtBenhAnTienSuBenh = new System.Windows.Forms.RichTextBox();
     this.label45 = new System.Windows.Forms.Label();
     this.label44 = new System.Windows.Forms.Label();
     this.txtBenhAnQuaTrinhBenhLy = new System.Windows.Forms.RichTextBox();
     this.label43 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.txtBenhAnVaoNgayThu = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.txtBenhAnLyDoNhapVien = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.grpTinhTrangRaVien = new Janus.Windows.EditControls.UIGroupBox();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.chkTTRVAcTinh = new System.Windows.Forms.CheckBox();
     this.chkTTRVNghiNgo = new System.Windows.Forms.CheckBox();
     this.chkTTRVLanhTinh = new System.Windows.Forms.CheckBox();
     this.chkTTRVTuVong = new System.Windows.Forms.CheckBox();
     this.chkTTRVNangHon = new System.Windows.Forms.CheckBox();
     this.chkTTRVKhongThayDoi = new System.Windows.Forms.CheckBox();
     this.chkTTRVDoGiam = new System.Windows.Forms.CheckBox();
     this.chkTTRVKhoi = new System.Windows.Forms.CheckBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.chkttrvKhac = new System.Windows.Forms.CheckBox();
     this.chkttrvTrong24GioVaoVien = new System.Windows.Forms.CheckBox();
     this.chkttrvSau24Gio = new System.Windows.Forms.CheckBox();
     this.chkttrvDoTaiBien = new System.Windows.Forms.CheckBox();
     this.chkttrvDoBenh = new System.Windows.Forms.CheckBox();
     this.txtTTRVChuanDoanGiaiPhau = new System.Windows.Forms.TextBox();
     this.chkTTRVKhamNgiemTuThi = new System.Windows.Forms.CheckBox();
     this.txtTTRVNguyenNhanChinhTuVong = new System.Windows.Forms.TextBox();
     this.txtTTRVNgayTuVong = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.grpChanDoan = new Janus.Windows.EditControls.UIGroupBox();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.txtCDKhiVaoDieuTri = new System.Windows.Forms.RichTextBox();
     this.txtCDKKBCapCuu = new System.Windows.Forms.RichTextBox();
     this.chkCDPhauThuat = new System.Windows.Forms.CheckBox();
     this.chkCDThuThuat = new System.Windows.Forms.CheckBox();
     this.txtCDMaKhiVaoDieuTri = new System.Windows.Forms.TextBox();
     this.txtCDMaKKBCapCuu = new System.Windows.Forms.TextBox();
     this.txtCDMaNoiChuyenDen = new System.Windows.Forms.TextBox();
     this.txtCDNoiChuyenDen = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtCDBenhKemTheo = new System.Windows.Forms.RichTextBox();
     this.txtCDBenhChinh = new System.Windows.Forms.RichTextBox();
     this.txtCDMaBenhKemTheo = new System.Windows.Forms.TextBox();
     this.txtCDMaBenhChinh = new System.Windows.Forms.TextBox();
     this.chkCDBienChung = new System.Windows.Forms.CheckBox();
     this.chkCDTaiBien = new System.Windows.Forms.CheckBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.grpQuanLyNguoiBenh = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.chkQLNBKhoaDieuTri = new System.Windows.Forms.CheckBox();
     this.chkQLNBKKB = new System.Windows.Forms.CheckBox();
     this.chkQLNBCapCuu = new System.Windows.Forms.CheckBox();
     this.label21 = new System.Windows.Forms.Label();
     this.grdQLNBKhoa = new Janus.Windows.GridEX.GridEX();
     this.label14 = new System.Windows.Forms.Label();
     this.dtQLNBVaoVien = new System.Windows.Forms.DateTimePicker();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.dtQLNBRaVien = new System.Windows.Forms.TextBox();
     this.chkQLNBDuaVe = new System.Windows.Forms.CheckBox();
     this.chkQLNBBoVe = new System.Windows.Forms.CheckBox();
     this.chkQLNBXinVe = new System.Windows.Forms.CheckBox();
     this.chkQLNBRaVien = new System.Windows.Forms.CheckBox();
     this.chkQLNBCK = new System.Windows.Forms.CheckBox();
     this.chkQLNBTuyenDuoi = new System.Windows.Forms.CheckBox();
     this.chkQLNBTuyenTren = new System.Windows.Forms.CheckBox();
     this.chkQLNBKhac = new System.Windows.Forms.CheckBox();
     this.chkQLNBTuDen = new System.Windows.Forms.CheckBox();
     this.chkQLNBCoQuanYTe = new System.Windows.Forms.CheckBox();
     this.txtQLNBTongSoNgayDieuTri = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.txtQLNBChuyenDen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.txtQLNBLanVaoVien = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.panel2 = new System.Windows.Forms.Panel();
     this.lblMess = new System.Windows.Forms.Label();
     this.cmdDelete = new System.Windows.Forms.Button();
     this.cmdSave = new Janus.Windows.EditControls.UIButton();
     this.cmdInBenhAn = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).BeginInit();
     this.grpThongTinBenhNhan.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).BeginInit();
     this.uiGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpBenhAn)).BeginInit();
     this.grpBenhAn.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpTinhTrangRaVien)).BeginInit();
     this.grpTinhTrangRaVien.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpChanDoan)).BeginInit();
     this.grpChanDoan.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.grpQuanLyNguoiBenh.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdQLNBKhoa)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // grpThongTinBenhNhan
     //
     this.grpThongTinBenhNhan.Controls.Add(this.txtPhong);
     this.grpThongTinBenhNhan.Controls.Add(this.label94);
     this.grpThongTinBenhNhan.Controls.Add(this.txtID);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaKhoaThucHien);
     this.grpThongTinBenhNhan.Controls.Add(this.txtGiuong);
     this.grpThongTinBenhNhan.Controls.Add(this.label93);
     this.grpThongTinBenhNhan.Controls.Add(this.txtKhoa);
     this.grpThongTinBenhNhan.Controls.Add(this.label87);
     this.grpThongTinBenhNhan.Controls.Add(this.cboTTBNDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.txtSoBaoHiemYte);
     this.grpThongTinBenhNhan.Controls.Add(this.label16);
     this.grpThongTinBenhNhan.Controls.Add(this.dtInsToDate);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDienThoai);
     this.grpThongTinBenhNhan.Controls.Add(this.label13);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBenhAn);
     this.grpThongTinBenhNhan.Controls.Add(this.label10);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaLanKham);
     this.grpThongTinBenhNhan.Controls.Add(this.label9);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBN);
     this.grpThongTinBenhNhan.Controls.Add(this.label8);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThongTinLienHe);
     this.grpThongTinBenhNhan.Controls.Add(this.label5);
     this.grpThongTinBenhNhan.Controls.Add(this.label4);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDoiTuong);
     this.grpThongTinBenhNhan.Controls.Add(this.label3);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNoiLamViec);
     this.grpThongTinBenhNhan.Controls.Add(this.label2);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDiaChi);
     this.grpThongTinBenhNhan.Controls.Add(this.label1);
     this.grpThongTinBenhNhan.Controls.Add(this.chkNgoaiKieu);
     this.grpThongTinBenhNhan.Controls.Add(this.lblDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.cboGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.lblGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNamSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThangSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblTenBn);
     this.grpThongTinBenhNhan.Controls.Add(this.txtHoTen);
     this.grpThongTinBenhNhan.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpThongTinBenhNhan.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpThongTinBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("grpThongTinBenhNhan.Image")));
     this.grpThongTinBenhNhan.Location = new System.Drawing.Point(0, 0);
     this.grpThongTinBenhNhan.Name = "grpThongTinBenhNhan";
     this.grpThongTinBenhNhan.Size = new System.Drawing.Size(895, 278);
     this.grpThongTinBenhNhan.TabIndex = 0;
     this.grpThongTinBenhNhan.Text = "I.THÔNG TIN BỆNH NHÂN";
     //
     // txtPhong
     //
     this.txtPhong.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPhong.Location = new System.Drawing.Point(613, 26);
     this.txtPhong.Name = "txtPhong";
     this.txtPhong.Size = new System.Drawing.Size(82, 31);
     this.txtPhong.TabIndex = 464;
     this.txtPhong.TabStop = false;
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label94.Location = new System.Drawing.Point(522, 35);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(56, 16);
     this.label94.TabIndex = 463;
     this.label94.Text = "Phòng:";
     //
     // txtID
     //
     this.txtID.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtID.Location = new System.Drawing.Point(784, 25);
     this.txtID.Name = "txtID";
     this.txtID.Size = new System.Drawing.Size(98, 31);
     this.txtID.TabIndex = 462;
     this.txtID.TabStop = false;
     this.txtID.Visible = false;
     //
     // txtMaKhoaThucHien
     //
     this.txtMaKhoaThucHien.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaKhoaThucHien.Location = new System.Drawing.Point(784, 25);
     this.txtMaKhoaThucHien.Name = "txtMaKhoaThucHien";
     this.txtMaKhoaThucHien.Size = new System.Drawing.Size(98, 31);
     this.txtMaKhoaThucHien.TabIndex = 461;
     this.txtMaKhoaThucHien.TabStop = false;
     this.txtMaKhoaThucHien.Visible = false;
     //
     // txtGiuong
     //
     this.txtGiuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGiuong.Location = new System.Drawing.Point(800, 26);
     this.txtGiuong.Name = "txtGiuong";
     this.txtGiuong.Size = new System.Drawing.Size(82, 31);
     this.txtGiuong.TabIndex = 460;
     this.txtGiuong.TabStop = false;
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label93.Location = new System.Drawing.Point(709, 35);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(61, 16);
     this.label93.TabIndex = 459;
     this.label93.Text = "Giường:";
     //
     // txtKhoa
     //
     this.txtKhoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtKhoa.Location = new System.Drawing.Point(123, 25);
     this.txtKhoa.Name = "txtKhoa";
     this.txtKhoa.Size = new System.Drawing.Size(378, 31);
     this.txtKhoa.TabIndex = 458;
     this.txtKhoa.TabStop = false;
     //
     // label87
     //
     this.label87.AutoSize = true;
     this.label87.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label87.Location = new System.Drawing.Point(17, 35);
     this.label87.Name = "label87";
     this.label87.Size = new System.Drawing.Size(47, 16);
     this.label87.TabIndex = 457;
     this.label87.Text = "Khoa:";
     //
     // cboTTBNDanToc
     //
     this.cboTTBNDanToc.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboTTBNDanToc.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "Nữ";
     uiComboBoxItem1.Value = 1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "Nam";
     uiComboBoxItem2.Value = 0;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator = false;
     uiComboBoxItem3.Text = "Khác";
     uiComboBoxItem3.Value = 2;
     this.cboTTBNDanToc.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2,
     uiComboBoxItem3});
     this.cboTTBNDanToc.Location = new System.Drawing.Point(609, 147);
     this.cboTTBNDanToc.Name = "cboTTBNDanToc";
     this.cboTTBNDanToc.Size = new System.Drawing.Size(127, 21);
     this.cboTTBNDanToc.TabIndex = 456;
     this.cboTTBNDanToc.TabStop = false;
     this.cboTTBNDanToc.Text = "Chọn Dân Tộc";
     //
     // txtSoBaoHiemYte
     //
     this.txtSoBaoHiemYte.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoBaoHiemYte.Location = new System.Drawing.Point(609, 209);
     this.txtSoBaoHiemYte.Name = "txtSoBaoHiemYte";
     this.txtSoBaoHiemYte.Size = new System.Drawing.Size(273, 20);
     this.txtSoBaoHiemYte.TabIndex = 455;
     this.txtSoBaoHiemYte.TabStop = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(518, 216);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(52, 13);
     this.label16.TabIndex = 454;
     this.label16.Text = "&Số BHYT";
     //
     // dtInsToDate
     //
     this.dtInsToDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtInsToDate.Location = new System.Drawing.Point(333, 209);
     this.dtInsToDate.Name = "dtInsToDate";
     this.dtInsToDate.Size = new System.Drawing.Size(168, 20);
     this.dtInsToDate.TabIndex = 453;
     this.dtInsToDate.TabStop = false;
     //
     // txtDienThoai
     //
     this.txtDienThoai.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDienThoai.Location = new System.Drawing.Point(609, 237);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(273, 20);
     this.txtDienThoai.TabIndex = 6;
     this.txtDienThoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(518, 241);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 449;
     this.label13.Text = "Số điện thoại";
     //
     // txtMaBenhAn
     //
     this.txtMaBenhAn.BackColor = System.Drawing.Color.Turquoise;
     this.txtMaBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBenhAn.Location = new System.Drawing.Point(609, 64);
     this.txtMaBenhAn.Name = "txtMaBenhAn";
     this.txtMaBenhAn.ReadOnly = true;
     this.txtMaBenhAn.Size = new System.Drawing.Size(273, 31);
     this.txtMaBenhAn.TabIndex = 13;
     this.txtMaBenhAn.TabStop = false;
     this.txtMaBenhAn.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(518, 71);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 16);
     this.label10.TabIndex = 443;
     this.label10.Text = "Mã Bệnh Án";
     //
     // txtMaLanKham
     //
     this.txtMaLanKham.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.txtMaLanKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaLanKham.Location = new System.Drawing.Point(327, 66);
     this.txtMaLanKham.Name = "txtMaLanKham";
     this.txtMaLanKham.Size = new System.Drawing.Size(174, 31);
     this.txtMaLanKham.TabIndex = 442;
     this.txtMaLanKham.TabStop = false;
     this.txtMaLanKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaLanKham.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaLanKham_KeyDown);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(226, 71);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(100, 16);
     this.label9.TabIndex = 441;
     this.label9.Text = "Mã Lần Khám";
     //
     // txtMaBN
     //
     this.txtMaBN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.txtMaBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBN.Location = new System.Drawing.Point(123, 65);
     this.txtMaBN.Name = "txtMaBN";
     this.txtMaBN.Size = new System.Drawing.Size(97, 31);
     this.txtMaBN.TabIndex = 0;
     this.txtMaBN.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtMaBN.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMaBN_KeyDown);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(16, 73);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(108, 16);
     this.label8.TabIndex = 439;
     this.label8.Text = "Mã Bệnh Nhân";
     //
     // txtThongTinLienHe
     //
     this.txtThongTinLienHe.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThongTinLienHe.Location = new System.Drawing.Point(185, 238);
     this.txtThongTinLienHe.Name = "txtThongTinLienHe";
     this.txtThongTinLienHe.Size = new System.Drawing.Size(316, 20);
     this.txtThongTinLienHe.TabIndex = 5;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(17, 242);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(131, 13);
     this.label5.TabIndex = 431;
     this.label5.Text = "Họ Tên, địa chỉ người nhà";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(215, 211);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(89, 13);
     this.label4.TabIndex = 20;
     this.label4.Text = "BHYT:giá trị đến ";
     //
     // txtDoiTuong
     //
     this.txtDoiTuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDoiTuong.Location = new System.Drawing.Point(123, 210);
     this.txtDoiTuong.Name = "txtDoiTuong";
     this.txtDoiTuong.Size = new System.Drawing.Size(75, 20);
     this.txtDoiTuong.TabIndex = 19;
     this.txtDoiTuong.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 213);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(57, 13);
     this.label3.TabIndex = 18;
     this.label3.Text = "Đối Tượng";
     //
     // txtNoiLamViec
     //
     this.txtNoiLamViec.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNoiLamViec.Location = new System.Drawing.Point(609, 181);
     this.txtNoiLamViec.Name = "txtNoiLamViec";
     this.txtNoiLamViec.Size = new System.Drawing.Size(273, 20);
     this.txtNoiLamViec.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(518, 184);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(70, 13);
     this.label2.TabIndex = 16;
     this.label2.Text = "Nơi Làm Việc";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiaChi.Location = new System.Drawing.Point(66, 180);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.ReadOnly = true;
     this.txtDiaChi.Size = new System.Drawing.Size(378, 20);
     this.txtDiaChi.TabIndex = 15;
     this.txtDiaChi.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(17, 184);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 13);
     this.label1.TabIndex = 14;
     this.label1.Text = "Địa Chỉ";
     //
     // chkNgoaiKieu
     //
     this.chkNgoaiKieu.Location = new System.Drawing.Point(753, 147);
     this.chkNgoaiKieu.Name = "chkNgoaiKieu";
     this.chkNgoaiKieu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkNgoaiKieu.Size = new System.Drawing.Size(129, 23);
     this.chkNgoaiKieu.TabIndex = 3;
     this.chkNgoaiKieu.TabStop = false;
     this.chkNgoaiKieu.Text = "Ngoại kiểu";
     //
     // lblDanToc
     //
     this.lblDanToc.AutoSize = true;
     this.lblDanToc.Location = new System.Drawing.Point(518, 153);
     this.lblDanToc.Name = "lblDanToc";
     this.lblDanToc.Size = new System.Drawing.Size(49, 13);
     this.lblDanToc.TabIndex = 10;
     this.lblDanToc.Text = "Dân Tộc";
     //
     // lblNgheNghiep
     //
     this.lblNgheNghiep.AutoSize = true;
     this.lblNgheNghiep.Location = new System.Drawing.Point(215, 153);
     this.lblNgheNghiep.Name = "lblNgheNghiep";
     this.lblNgheNghiep.Size = new System.Drawing.Size(70, 13);
     this.lblNgheNghiep.TabIndex = 9;
     this.lblNgheNghiep.Text = "Nghề Nghiệp";
     //
     // cboGioiTinh
     //
     this.cboGioiTinh.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboGioiTinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem4.FormatStyle.Alpha = 0;
     uiComboBoxItem4.IsSeparator = false;
     uiComboBoxItem4.Text = "Nữ";
     uiComboBoxItem4.Value = 1;
     uiComboBoxItem5.FormatStyle.Alpha = 0;
     uiComboBoxItem5.IsSeparator = false;
     uiComboBoxItem5.Text = "Nam";
     uiComboBoxItem5.Value = 0;
     uiComboBoxItem6.FormatStyle.Alpha = 0;
     uiComboBoxItem6.IsSeparator = false;
     uiComboBoxItem6.Text = "Khác";
     uiComboBoxItem6.Value = 2;
     this.cboGioiTinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem4,
     uiComboBoxItem5,
     uiComboBoxItem6});
     this.cboGioiTinh.Location = new System.Drawing.Point(123, 148);
     this.cboGioiTinh.Name = "cboGioiTinh";
     this.cboGioiTinh.Size = new System.Drawing.Size(75, 21);
     this.cboGioiTinh.TabIndex = 8;
     this.cboGioiTinh.TabStop = false;
     this.cboGioiTinh.Text = "Giới tính";
     //
     // txtNgheNghiep
     //
     this.txtNgheNghiep.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgheNghiep.Location = new System.Drawing.Point(327, 150);
     this.txtNgheNghiep.Name = "txtNgheNghiep";
     this.txtNgheNghiep.ReadOnly = true;
     this.txtNgheNghiep.Size = new System.Drawing.Size(174, 20);
     this.txtNgheNghiep.TabIndex = 7;
     this.txtNgheNghiep.TabStop = false;
     //
     // lblGioiTinh
     //
     this.lblGioiTinh.AutoSize = true;
     this.lblGioiTinh.Location = new System.Drawing.Point(17, 153);
     this.lblGioiTinh.Name = "lblGioiTinh";
     this.lblGioiTinh.Size = new System.Drawing.Size(54, 13);
     this.lblGioiTinh.TabIndex = 6;
     this.lblGioiTinh.Text = "Giới Tính ";
     //
     // txtNamSinh
     //
     this.txtNamSinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNamSinh.Location = new System.Drawing.Point(732, 106);
     this.txtNamSinh.Name = "txtNamSinh";
     this.txtNamSinh.Size = new System.Drawing.Size(150, 31);
     this.txtNamSinh.TabIndex = 5;
     this.txtNamSinh.TabStop = false;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     //
     // txtThangSinh
     //
     this.txtThangSinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThangSinh.Location = new System.Drawing.Point(668, 106);
     this.txtThangSinh.Name = "txtThangSinh";
     this.txtThangSinh.Size = new System.Drawing.Size(40, 31);
     this.txtThangSinh.TabIndex = 1;
     this.txtThangSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgaySinh.Location = new System.Drawing.Point(609, 106);
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Size = new System.Drawing.Size(40, 31);
     this.txtNgaySinh.TabIndex = 0;
     this.txtNgaySinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     //
     // lblNgaySinh
     //
     this.lblNgaySinh.AutoSize = true;
     this.lblNgaySinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNgaySinh.Location = new System.Drawing.Point(518, 111);
     this.lblNgaySinh.Name = "lblNgaySinh";
     this.lblNgaySinh.Size = new System.Drawing.Size(79, 16);
     this.lblNgaySinh.TabIndex = 2;
     this.lblNgaySinh.Text = "Ngày Sinh";
     //
     // lblTenBn
     //
     this.lblTenBn.AutoSize = true;
     this.lblTenBn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTenBn.Location = new System.Drawing.Point(16, 111);
     this.lblTenBn.Name = "lblTenBn";
     this.lblTenBn.Size = new System.Drawing.Size(59, 16);
     this.lblTenBn.TabIndex = 1;
     this.lblTenBn.Text = "Họ Tên";
     //
     // txtHoTen
     //
     this.txtHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHoTen.Location = new System.Drawing.Point(123, 107);
     this.txtHoTen.Name = "txtHoTen";
     this.txtHoTen.Size = new System.Drawing.Size(378, 31);
     this.txtHoTen.TabIndex = 0;
     this.txtHoTen.TabStop = false;
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.uiGroupBox4);
     this.panel1.Controls.Add(this.grpBenhAn);
     this.panel1.Controls.Add(this.grpTinhTrangRaVien);
     this.panel1.Controls.Add(this.grpChanDoan);
     this.panel1.Controls.Add(this.grpQuanLyNguoiBenh);
     this.panel1.Controls.Add(this.grpThongTinBenhNhan);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(912, 585);
     this.panel1.TabIndex = 4;
     //
     // uiGroupBox4
     //
     this.uiGroupBox4.Controls.Add(this.txtTKBAHuongDieuTri);
     this.uiGroupBox4.Controls.Add(this.label92);
     this.uiGroupBox4.Controls.Add(this.txtTKBATinhTrangRaVien);
     this.uiGroupBox4.Controls.Add(this.txtTKBAPhuongPhapDieuTri);
     this.uiGroupBox4.Controls.Add(this.label91);
     this.uiGroupBox4.Controls.Add(this.txtTKBATTomTatKetQua);
     this.uiGroupBox4.Controls.Add(this.label90);
     this.uiGroupBox4.Controls.Add(this.label89);
     this.uiGroupBox4.Controls.Add(this.txtTKBAQuaTrinhBenhLy);
     this.uiGroupBox4.Controls.Add(this.label88);
     this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox4.Location = new System.Drawing.Point(0, 2916);
     this.uiGroupBox4.Name = "uiGroupBox4";
     this.uiGroupBox4.Size = new System.Drawing.Size(895, 412);
     this.uiGroupBox4.TabIndex = 5;
     this.uiGroupBox4.Text = "B - TỔNG KẾT BỆNH ÁN ";
     //
     // txtTKBAHuongDieuTri
     //
     this.txtTKBAHuongDieuTri.Location = new System.Drawing.Point(31, 339);
     this.txtTKBAHuongDieuTri.Name = "txtTKBAHuongDieuTri";
     this.txtTKBAHuongDieuTri.Size = new System.Drawing.Size(847, 48);
     this.txtTKBAHuongDieuTri.TabIndex = 613;
     this.txtTKBAHuongDieuTri.Text = "";
     //
     // label92
     //
     this.label92.AutoSize = true;
     this.label92.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label92.Location = new System.Drawing.Point(16, 323);
     this.label92.Name = "label92";
     this.label92.Size = new System.Drawing.Size(248, 13);
     this.label92.TabIndex = 611;
     this.label92.Text = "5. Hướng điều trị và các chế độ tiếp theo:";
     //
     // txtTKBATinhTrangRaVien
     //
     this.txtTKBATinhTrangRaVien.Location = new System.Drawing.Point(31, 264);
     this.txtTKBATinhTrangRaVien.Name = "txtTKBATinhTrangRaVien";
     this.txtTKBATinhTrangRaVien.Size = new System.Drawing.Size(847, 48);
     this.txtTKBATinhTrangRaVien.TabIndex = 615;
     this.txtTKBATinhTrangRaVien.Text = "";
     //
     // txtTKBAPhuongPhapDieuTri
     //
     this.txtTKBAPhuongPhapDieuTri.Location = new System.Drawing.Point(31, 191);
     this.txtTKBAPhuongPhapDieuTri.Name = "txtTKBAPhuongPhapDieuTri";
     this.txtTKBAPhuongPhapDieuTri.Size = new System.Drawing.Size(847, 48);
     this.txtTKBAPhuongPhapDieuTri.TabIndex = 614;
     this.txtTKBAPhuongPhapDieuTri.Text = "";
     //
     // label91
     //
     this.label91.AutoSize = true;
     this.label91.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label91.Location = new System.Drawing.Point(16, 248);
     this.label91.Name = "label91";
     this.label91.Size = new System.Drawing.Size(194, 13);
     this.label91.TabIndex = 612;
     this.label91.Text = "4. Tình trạng người bệnh ra viện:";
     //
     // txtTKBATTomTatKetQua
     //
     this.txtTKBATTomTatKetQua.Location = new System.Drawing.Point(31, 116);
     this.txtTKBATTomTatKetQua.Name = "txtTKBATTomTatKetQua";
     this.txtTKBATTomTatKetQua.Size = new System.Drawing.Size(847, 48);
     this.txtTKBATTomTatKetQua.TabIndex = 609;
     this.txtTKBATTomTatKetQua.Text = "";
     //
     // label90
     //
     this.label90.AutoSize = true;
     this.label90.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label90.Location = new System.Drawing.Point(16, 174);
     this.label90.Name = "label90";
     this.label90.Size = new System.Drawing.Size(145, 13);
     this.label90.TabIndex = 610;
     this.label90.Text = "3. Phương pháp điều trị:";
     //
     // label89
     //
     this.label89.AutoSize = true;
     this.label89.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label89.Location = new System.Drawing.Point(16, 100);
     this.label89.Name = "label89";
     this.label89.Size = new System.Drawing.Size(379, 13);
     this.label89.TabIndex = 608;
     this.label89.Text = "2. Tóm tắt kết quả xét nghiệm cận lâm sàng có giá trị chẩn đoán:";
     //
     // txtTKBAQuaTrinhBenhLy
     //
     this.txtTKBAQuaTrinhBenhLy.Location = new System.Drawing.Point(31, 42);
     this.txtTKBAQuaTrinhBenhLy.Name = "txtTKBAQuaTrinhBenhLy";
     this.txtTKBAQuaTrinhBenhLy.Size = new System.Drawing.Size(847, 48);
     this.txtTKBAQuaTrinhBenhLy.TabIndex = 607;
     this.txtTKBAQuaTrinhBenhLy.Text = "";
     //
     // label88
     //
     this.label88.AutoSize = true;
     this.label88.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label88.Location = new System.Drawing.Point(16, 26);
     this.label88.Name = "label88";
     this.label88.Size = new System.Drawing.Size(251, 13);
     this.label88.TabIndex = 606;
     this.label88.Text = "1. Quá trình bệnh lý và diễn biến lâm sàng:";
     //
     // grpBenhAn
     //
     this.grpBenhAn.Controls.Add(this.txtBenhAnPhanBiet);
     this.grpBenhAn.Controls.Add(this.txtBenhAnBenhKemTheo);
     this.grpBenhAn.Controls.Add(this.txtBenhAnBenhChinh);
     this.grpBenhAn.Controls.Add(this.txtBenhAnHuongDieuTri);
     this.grpBenhAn.Controls.Add(this.label86);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTienLuong);
     this.grpBenhAn.Controls.Add(this.label85);
     this.grpBenhAn.Controls.Add(this.label84);
     this.grpBenhAn.Controls.Add(this.label68);
     this.grpBenhAn.Controls.Add(this.label67);
     this.grpBenhAn.Controls.Add(this.label66);
     this.grpBenhAn.Controls.Add(this.label65);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTomTatBenhAn);
     this.grpBenhAn.Controls.Add(this.txtBenhAnCacXetNghiem);
     this.grpBenhAn.Controls.Add(this.label64);
     this.grpBenhAn.Controls.Add(this.txtBenhAnNoiTiet);
     this.grpBenhAn.Controls.Add(this.label63);
     this.grpBenhAn.Controls.Add(this.txtBenhAnMat);
     this.grpBenhAn.Controls.Add(this.label62);
     this.grpBenhAn.Controls.Add(this.txtBenhAnRangHamMat);
     this.grpBenhAn.Controls.Add(this.label61);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTaiMuiHong);
     this.grpBenhAn.Controls.Add(this.label60);
     this.grpBenhAn.Controls.Add(this.txtBenhAnCoXuongKhop);
     this.grpBenhAn.Controls.Add(this.label59);
     this.grpBenhAn.Controls.Add(this.txtBenhAnThanKinh);
     this.grpBenhAn.Controls.Add(this.txtBenhAnThanTietNieuSinhDuc);
     this.grpBenhAn.Controls.Add(this.label58);
     this.grpBenhAn.Controls.Add(this.label57);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTieuHoa);
     this.grpBenhAn.Controls.Add(this.label56);
     this.grpBenhAn.Controls.Add(this.txtBenhAnHoHap);
     this.grpBenhAn.Controls.Add(this.label55);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTuanHoan);
     this.grpBenhAn.Controls.Add(this.label54);
     this.grpBenhAn.Controls.Add(this.label53);
     this.grpBenhAn.Controls.Add(this.uiGroupBox3);
     this.grpBenhAn.Controls.Add(this.txtBenhAnToanThan);
     this.grpBenhAn.Controls.Add(this.label52);
     this.grpBenhAn.Controls.Add(this.label51);
     this.grpBenhAn.Controls.Add(this.label50);
     this.grpBenhAn.Controls.Add(this.txtBenhAnGiaDinh);
     this.grpBenhAn.Controls.Add(this.label49);
     this.grpBenhAn.Controls.Add(this.label48);
     this.grpBenhAn.Controls.Add(this.label47);
     this.grpBenhAn.Controls.Add(this.txtKhac);
     this.grpBenhAn.Controls.Add(this.txtThuocLao);
     this.grpBenhAn.Controls.Add(this.txtThuocLa);
     this.grpBenhAn.Controls.Add(this.txtRuouBia);
     this.grpBenhAn.Controls.Add(this.txtMaTuy);
     this.grpBenhAn.Controls.Add(this.txtDiUng);
     this.grpBenhAn.Controls.Add(this.chkKhac);
     this.grpBenhAn.Controls.Add(this.chkThuocLao);
     this.grpBenhAn.Controls.Add(this.chkThuocLa);
     this.grpBenhAn.Controls.Add(this.chkRuouBia);
     this.grpBenhAn.Controls.Add(this.chkMaTuy);
     this.grpBenhAn.Controls.Add(this.chkDiUng);
     this.grpBenhAn.Controls.Add(this.label46);
     this.grpBenhAn.Controls.Add(this.txtBenhAnTienSuBenh);
     this.grpBenhAn.Controls.Add(this.label45);
     this.grpBenhAn.Controls.Add(this.label44);
     this.grpBenhAn.Controls.Add(this.txtBenhAnQuaTrinhBenhLy);
     this.grpBenhAn.Controls.Add(this.label43);
     this.grpBenhAn.Controls.Add(this.label42);
     this.grpBenhAn.Controls.Add(this.label41);
     this.grpBenhAn.Controls.Add(this.txtBenhAnVaoNgayThu);
     this.grpBenhAn.Controls.Add(this.label40);
     this.grpBenhAn.Controls.Add(this.label39);
     this.grpBenhAn.Controls.Add(this.txtBenhAnLyDoNhapVien);
     this.grpBenhAn.Controls.Add(this.label38);
     this.grpBenhAn.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpBenhAn.Location = new System.Drawing.Point(0, 922);
     this.grpBenhAn.Name = "grpBenhAn";
     this.grpBenhAn.Size = new System.Drawing.Size(895, 1994);
     this.grpBenhAn.TabIndex = 4;
     this.grpBenhAn.Text = "A- BỆNH ÁN";
     //
     // txtBenhAnPhanBiet
     //
     this.txtBenhAnPhanBiet.Location = new System.Drawing.Point(163, 1780);
     this.txtBenhAnPhanBiet.Name = "txtBenhAnPhanBiet";
     this.txtBenhAnPhanBiet.Size = new System.Drawing.Size(719, 20);
     this.txtBenhAnPhanBiet.TabIndex = 607;
     //
     // txtBenhAnBenhKemTheo
     //
     this.txtBenhAnBenhKemTheo.Location = new System.Drawing.Point(163, 1752);
     this.txtBenhAnBenhKemTheo.Name = "txtBenhAnBenhKemTheo";
     this.txtBenhAnBenhKemTheo.Size = new System.Drawing.Size(719, 20);
     this.txtBenhAnBenhKemTheo.TabIndex = 607;
     //
     // txtBenhAnBenhChinh
     //
     this.txtBenhAnBenhChinh.Location = new System.Drawing.Point(163, 1727);
     this.txtBenhAnBenhChinh.Name = "txtBenhAnBenhChinh";
     this.txtBenhAnBenhChinh.Size = new System.Drawing.Size(719, 20);
     this.txtBenhAnBenhChinh.TabIndex = 606;
     //
     // txtBenhAnHuongDieuTri
     //
     this.txtBenhAnHuongDieuTri.Location = new System.Drawing.Point(35, 1908);
     this.txtBenhAnHuongDieuTri.Name = "txtBenhAnHuongDieuTri";
     this.txtBenhAnHuongDieuTri.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnHuongDieuTri.TabIndex = 600;
     this.txtBenhAnHuongDieuTri.Text = "";
     //
     // label86
     //
     this.label86.AutoSize = true;
     this.label86.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label86.Location = new System.Drawing.Point(20, 1886);
     this.label86.Name = "label86";
     this.label86.Size = new System.Drawing.Size(112, 13);
     this.label86.TabIndex = 592;
     this.label86.Text = "VI. Hướng điều trị:";
     //
     // txtBenhAnTienLuong
     //
     this.txtBenhAnTienLuong.Location = new System.Drawing.Point(35, 1831);
     this.txtBenhAnTienLuong.Name = "txtBenhAnTienLuong";
     this.txtBenhAnTienLuong.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTienLuong.TabIndex = 599;
     this.txtBenhAnTienLuong.Text = "";
     //
     // label85
     //
     this.label85.AutoSize = true;
     this.label85.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label85.Location = new System.Drawing.Point(20, 1806);
     this.label85.Name = "label85";
     this.label85.Size = new System.Drawing.Size(87, 13);
     this.label85.TabIndex = 591;
     this.label85.Text = "V. Tiên lượng:";
     //
     // label84
     //
     this.label84.AutoSize = true;
     this.label84.Location = new System.Drawing.Point(35, 1781);
     this.label84.Name = "label84";
     this.label84.Size = new System.Drawing.Size(64, 13);
     this.label84.TabIndex = 599;
     this.label84.Text = "+ Phân biệt:";
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Location = new System.Drawing.Point(32, 1756);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(133, 13);
     this.label68.TabIndex = 598;
     this.label68.Text = "+ Bệnh kèm theo( nếu có):";
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Location = new System.Drawing.Point(32, 1730);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(75, 13);
     this.label67.TabIndex = 597;
     this.label67.Text = "+ Bệnh chính:";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label66.Location = new System.Drawing.Point(20, 1702);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(222, 13);
     this.label66.TabIndex = 590;
     this.label66.Text = "IV. Chuẩn đoán khi váo khoa điều trị:";
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label65.Location = new System.Drawing.Point(20, 1615);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(119, 13);
     this.label65.TabIndex = 599;
     this.label65.Text = "4. Tóm tắt bệnh án:";
     //
     // txtBenhAnTomTatBenhAn
     //
     this.txtBenhAnTomTatBenhAn.Location = new System.Drawing.Point(35, 1641);
     this.txtBenhAnTomTatBenhAn.Name = "txtBenhAnTomTatBenhAn";
     this.txtBenhAnTomTatBenhAn.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTomTatBenhAn.TabIndex = 598;
     this.txtBenhAnTomTatBenhAn.Text = "";
     //
     // txtBenhAnCacXetNghiem
     //
     this.txtBenhAnCacXetNghiem.Location = new System.Drawing.Point(35, 1554);
     this.txtBenhAnCacXetNghiem.Name = "txtBenhAnCacXetNghiem";
     this.txtBenhAnCacXetNghiem.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnCacXetNghiem.TabIndex = 598;
     this.txtBenhAnCacXetNghiem.Text = "";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label64.Location = new System.Drawing.Point(22, 1534);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(240, 13);
     this.label64.TabIndex = 598;
     this.label64.Text = "3. Các xét nghiệm cận lâm sàng cần làm:";
     //
     // txtBenhAnNoiTiet
     //
     this.txtBenhAnNoiTiet.Location = new System.Drawing.Point(35, 1474);
     this.txtBenhAnNoiTiet.Name = "txtBenhAnNoiTiet";
     this.txtBenhAnNoiTiet.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnNoiTiet.TabIndex = 597;
     this.txtBenhAnNoiTiet.Text = "";
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(55, 1448);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(215, 13);
     this.label63.TabIndex = 596;
     this.label63.Text = "+ Nội Tiết, dinh dưỡng và các bệnh lý khác:";
     //
     // txtBenhAnMat
     //
     this.txtBenhAnMat.Location = new System.Drawing.Point(35, 1391);
     this.txtBenhAnMat.Name = "txtBenhAnMat";
     this.txtBenhAnMat.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnMat.TabIndex = 597;
     this.txtBenhAnMat.Text = "";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(55, 1365);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(37, 13);
     this.label62.TabIndex = 596;
     this.label62.Text = "+ Mắt:";
     //
     // txtBenhAnRangHamMat
     //
     this.txtBenhAnRangHamMat.Location = new System.Drawing.Point(35, 1310);
     this.txtBenhAnRangHamMat.Name = "txtBenhAnRangHamMat";
     this.txtBenhAnRangHamMat.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnRangHamMat.TabIndex = 595;
     this.txtBenhAnRangHamMat.Text = "";
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Location = new System.Drawing.Point(55, 1284);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(106, 13);
     this.label61.TabIndex = 594;
     this.label61.Text = "+ Răng - Hàm -  Mặt:";
     //
     // txtBenhAnTaiMuiHong
     //
     this.txtBenhAnTaiMuiHong.Location = new System.Drawing.Point(35, 1221);
     this.txtBenhAnTaiMuiHong.Name = "txtBenhAnTaiMuiHong";
     this.txtBenhAnTaiMuiHong.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTaiMuiHong.TabIndex = 593;
     this.txtBenhAnTaiMuiHong.Text = "";
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Location = new System.Drawing.Point(50, 1197);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(95, 13);
     this.label60.TabIndex = 592;
     this.label60.Text = "+ Tai - Mũi - Họng:";
     //
     // txtBenhAnCoXuongKhop
     //
     this.txtBenhAnCoXuongKhop.Location = new System.Drawing.Point(35, 1141);
     this.txtBenhAnCoXuongKhop.Name = "txtBenhAnCoXuongKhop";
     this.txtBenhAnCoXuongKhop.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnCoXuongKhop.TabIndex = 591;
     this.txtBenhAnCoXuongKhop.Text = "";
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Location = new System.Drawing.Point(50, 1117);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(106, 13);
     this.label59.TabIndex = 590;
     this.label59.Text = "+ Cơ - Xương - Khớp:";
     //
     // txtBenhAnThanKinh
     //
     this.txtBenhAnThanKinh.Location = new System.Drawing.Point(35, 1056);
     this.txtBenhAnThanKinh.Name = "txtBenhAnThanKinh";
     this.txtBenhAnThanKinh.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnThanKinh.TabIndex = 591;
     this.txtBenhAnThanKinh.Text = "";
     //
     // txtBenhAnThanTietNieuSinhDuc
     //
     this.txtBenhAnThanTietNieuSinhDuc.Location = new System.Drawing.Point(35, 976);
     this.txtBenhAnThanTietNieuSinhDuc.Name = "txtBenhAnThanTietNieuSinhDuc";
     this.txtBenhAnThanTietNieuSinhDuc.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnThanTietNieuSinhDuc.TabIndex = 571;
     this.txtBenhAnThanTietNieuSinhDuc.Text = "";
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Location = new System.Drawing.Point(50, 1032);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(67, 13);
     this.label58.TabIndex = 590;
     this.label58.Text = "+ Thần kinh:";
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Location = new System.Drawing.Point(50, 952);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(145, 13);
     this.label57.TabIndex = 570;
     this.label57.Text = "+ Thận - Tiết niệu - Sinh dục:";
     //
     // txtBenhAnTieuHoa
     //
     this.txtBenhAnTieuHoa.Location = new System.Drawing.Point(35, 899);
     this.txtBenhAnTieuHoa.Name = "txtBenhAnTieuHoa";
     this.txtBenhAnTieuHoa.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTieuHoa.TabIndex = 569;
     this.txtBenhAnTieuHoa.Text = "";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Location = new System.Drawing.Point(50, 875);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(61, 13);
     this.label56.TabIndex = 568;
     this.label56.Text = "+ Tiêu hóa:";
     //
     // txtBenhAnHoHap
     //
     this.txtBenhAnHoHap.Location = new System.Drawing.Point(35, 818);
     this.txtBenhAnHoHap.Name = "txtBenhAnHoHap";
     this.txtBenhAnHoHap.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnHoHap.TabIndex = 567;
     this.txtBenhAnHoHap.Text = "";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Location = new System.Drawing.Point(50, 800);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(54, 13);
     this.label55.TabIndex = 566;
     this.label55.Text = "+ Hô hấp:";
     //
     // txtBenhAnTuanHoan
     //
     this.txtBenhAnTuanHoan.Location = new System.Drawing.Point(35, 747);
     this.txtBenhAnTuanHoan.Name = "txtBenhAnTuanHoan";
     this.txtBenhAnTuanHoan.Size = new System.Drawing.Size(847, 48);
     this.txtBenhAnTuanHoan.TabIndex = 565;
     this.txtBenhAnTuanHoan.Text = "";
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Location = new System.Drawing.Point(50, 733);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(71, 13);
     this.label54.TabIndex = 564;
     this.label54.Text = "+ Tuần hoàn:";
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label53.Location = new System.Drawing.Point(40, 710);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(98, 13);
     this.label53.TabIndex = 563;
     this.label53.Text = "2. Các cơ quan:";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.txtCanNang);
     this.uiGroupBox3.Controls.Add(this.txtNhipTho);
     this.uiGroupBox3.Controls.Add(this.label83);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApDen);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApTu);
     this.uiGroupBox3.Controls.Add(this.txtNhietDo);
     this.uiGroupBox3.Controls.Add(this.label82);
     this.uiGroupBox3.Controls.Add(this.label81);
     this.uiGroupBox3.Controls.Add(this.label80);
     this.uiGroupBox3.Controls.Add(this.label79);
     this.uiGroupBox3.Controls.Add(this.label78);
     this.uiGroupBox3.Controls.Add(this.label77);
     this.uiGroupBox3.Controls.Add(this.label76);
     this.uiGroupBox3.Controls.Add(this.txtMach);
     this.uiGroupBox3.Controls.Add(this.label75);
     this.uiGroupBox3.Controls.Add(this.label74);
     this.uiGroupBox3.Controls.Add(this.label73);
     this.uiGroupBox3.Controls.Add(this.label72);
     this.uiGroupBox3.Controls.Add(this.label71);
     this.uiGroupBox3.Controls.Add(this.label70);
     this.uiGroupBox3.Controls.Add(this.label69);
     this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(646, 555);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(225, 168);
     this.uiGroupBox3.TabIndex = 561;
     //
     // txtCanNang
     //
     this.txtCanNang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCanNang.Location = new System.Drawing.Point(75, 139);
     this.txtCanNang.Name = "txtCanNang";
     this.txtCanNang.Size = new System.Drawing.Size(80, 20);
     this.txtCanNang.TabIndex = 77;
     this.txtCanNang.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhipTho
     //
     this.txtNhipTho.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhipTho.Location = new System.Drawing.Point(66, 113);
     this.txtNhipTho.Name = "txtNhipTho";
     this.txtNhipTho.Size = new System.Drawing.Size(74, 20);
     this.txtNhipTho.TabIndex = 76;
     this.txtNhipTho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(104, 87);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(12, 16);
     this.label83.TabIndex = 578;
     this.label83.Text = "/";
     this.label83.Visible = false;
     //
     // txtHuyetApDen
     //
     this.txtHuyetApDen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApDen.Location = new System.Drawing.Point(120, 85);
     this.txtHuyetApDen.Name = "txtHuyetApDen";
     this.txtHuyetApDen.Size = new System.Drawing.Size(35, 20);
     this.txtHuyetApDen.TabIndex = 76;
     this.txtHuyetApDen.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtHuyetApDen.Visible = false;
     //
     // txtHuyetApTu
     //
     this.txtHuyetApTu.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApTu.Location = new System.Drawing.Point(71, 85);
     this.txtHuyetApTu.Name = "txtHuyetApTu";
     this.txtHuyetApTu.Size = new System.Drawing.Size(84, 20);
     this.txtHuyetApTu.TabIndex = 75;
     this.txtHuyetApTu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhietDo
     //
     this.txtNhietDo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhietDo.Location = new System.Drawing.Point(66, 55);
     this.txtNhietDo.Name = "txtNhietDo";
     this.txtNhietDo.Size = new System.Drawing.Size(89, 20);
     this.txtNhietDo.TabIndex = 74;
     this.txtNhietDo.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(146, 192);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(0, 16);
     this.label82.TabIndex = 574;
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(174, 165);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(0, 16);
     this.label81.TabIndex = 573;
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label80.Location = new System.Drawing.Point(174, 140);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(22, 15);
     this.label80.TabIndex = 572;
     this.label80.Text = "Kg";
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label79.Location = new System.Drawing.Point(146, 115);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(51, 15);
     this.label79.TabIndex = 571;
     this.label79.Text = "lần/phút";
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label78.Location = new System.Drawing.Point(158, 87);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(45, 15);
     this.label78.TabIndex = 570;
     this.label78.Text = "mmHg";
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label77.Location = new System.Drawing.Point(163, 57);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(34, 15);
     this.label77.TabIndex = 569;
     this.label77.Text = "Độ C";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label76.Location = new System.Drawing.Point(145, 26);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(51, 15);
     this.label76.TabIndex = 568;
     this.label76.Text = "lần/phút";
     //
     // txtMach
     //
     this.txtMach.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMach.Location = new System.Drawing.Point(58, 25);
     this.txtMach.Name = "txtMach";
     this.txtMach.Size = new System.Drawing.Size(82, 20);
     this.txtMach.TabIndex = 73;
     this.txtMach.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(5, 192);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(0, 16);
     this.label75.TabIndex = 567;
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(5, 165);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(0, 16);
     this.label74.TabIndex = 566;
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label73.Location = new System.Drawing.Point(5, 140);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(63, 15);
     this.label73.TabIndex = 565;
     this.label73.Text = "Cân nặng:";
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label72.Location = new System.Drawing.Point(4, 114);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(59, 15);
     this.label72.TabIndex = 564;
     this.label72.Text = "Nhịp thở: ";
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label71.Location = new System.Drawing.Point(4, 87);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(61, 15);
     this.label71.TabIndex = 563;
     this.label71.Text = "Huyết áp: ";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label70.Location = new System.Drawing.Point(3, 57);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(56, 15);
     this.label70.TabIndex = 562;
     this.label70.Text = "Nhiệt độ:";
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label69.Location = new System.Drawing.Point(4, 29);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(41, 15);
     this.label69.TabIndex = 561;
     this.label69.Text = "Mạch:";
     //
     // txtBenhAnToanThan
     //
     this.txtBenhAnToanThan.Location = new System.Drawing.Point(35, 613);
     this.txtBenhAnToanThan.Name = "txtBenhAnToanThan";
     this.txtBenhAnToanThan.Size = new System.Drawing.Size(575, 82);
     this.txtBenhAnToanThan.TabIndex = 514;
     this.txtBenhAnToanThan.Text = "";
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Location = new System.Drawing.Point(123, 585);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(436, 13);
     this.label52.TabIndex = 513;
     this.label52.Text = "(ý thức, da niên mạc, hệ thống hạch, tuyến giáp, vị trí, kích thước, " +
         "số lượng, di động v.v...)";
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label51.Location = new System.Drawing.Point(40, 585);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(84, 13);
     this.label51.TabIndex = 512;
     this.label51.Text = "1. Toàn thân:";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label50.Location = new System.Drawing.Point(32, 561);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(90, 13);
     this.label50.TabIndex = 511;
     this.label50.Text = "III.Khám bệnh:";
     //
     // txtBenhAnGiaDinh
     //
     this.txtBenhAnGiaDinh.Location = new System.Drawing.Point(35, 467);
     this.txtBenhAnGiaDinh.Name = "txtBenhAnGiaDinh";
     this.txtBenhAnGiaDinh.Size = new System.Drawing.Size(847, 82);
     this.txtBenhAnGiaDinh.TabIndex = 510;
     this.txtBenhAnGiaDinh.Text = "";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(50, 451);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(432, 13);
     this.label49.TabIndex = 509;
     this.label49.Text = "+ Gia đình (Những người trong gia đình: bệnh đã mắc, đời sống, tinh thầ" +
         "n, vật chất v.v....)\r\n";
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(619, 356);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(130, 13);
     this.label48.TabIndex = 508;
     this.label48.Text = "Thời gian(tính theo tháng)";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(196, 356);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(130, 13);
     this.label47.TabIndex = 507;
     this.label47.Text = "Thời gian(tính theo tháng)";
     //
     // txtKhac
     //
     this.txtKhac.Location = new System.Drawing.Point(592, 430);
     this.txtKhac.Name = "txtKhac";
     this.txtKhac.Size = new System.Drawing.Size(275, 20);
     this.txtKhac.TabIndex = 506;
     //
     // txtThuocLao
     //
     this.txtThuocLao.Location = new System.Drawing.Point(592, 407);
     this.txtThuocLao.Name = "txtThuocLao";
     this.txtThuocLao.Size = new System.Drawing.Size(275, 20);
     this.txtThuocLao.TabIndex = 505;
     //
     // txtThuocLa
     //
     this.txtThuocLa.Location = new System.Drawing.Point(592, 381);
     this.txtThuocLa.Name = "txtThuocLa";
     this.txtThuocLa.Size = new System.Drawing.Size(275, 20);
     this.txtThuocLa.TabIndex = 504;
     //
     // txtRuouBia
     //
     this.txtRuouBia.Location = new System.Drawing.Point(174, 428);
     this.txtRuouBia.Name = "txtRuouBia";
     this.txtRuouBia.Size = new System.Drawing.Size(278, 20);
     this.txtRuouBia.TabIndex = 503;
     //
     // txtMaTuy
     //
     this.txtMaTuy.Location = new System.Drawing.Point(174, 404);
     this.txtMaTuy.Name = "txtMaTuy";
     this.txtMaTuy.Size = new System.Drawing.Size(278, 20);
     this.txtMaTuy.TabIndex = 502;
     //
     // txtDiUng
     //
     this.txtDiUng.Location = new System.Drawing.Point(174, 381);
     this.txtDiUng.Name = "txtDiUng";
     this.txtDiUng.Size = new System.Drawing.Size(278, 20);
     this.txtDiUng.TabIndex = 501;
     //
     // chkKhac
     //
     this.chkKhac.AutoSize = true;
     this.chkKhac.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkKhac.Location = new System.Drawing.Point(481, 430);
     this.chkKhac.Name = "chkKhac";
     this.chkKhac.Size = new System.Drawing.Size(87, 17);
     this.chkKhac.TabIndex = 500;
     this.chkKhac.Text = "6. Khác        ";
     this.chkKhac.UseVisualStyleBackColor = true;
     //
     // chkThuocLao
     //
     this.chkThuocLao.AutoSize = true;
     this.chkThuocLao.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkThuocLao.Location = new System.Drawing.Point(481, 407);
     this.chkThuocLao.Name = "chkThuocLao";
     this.chkThuocLao.Size = new System.Drawing.Size(86, 17);
     this.chkThuocLao.TabIndex = 499;
     this.chkThuocLao.Text = "5. Thuốc lào";
     this.chkThuocLao.UseVisualStyleBackColor = true;
     //
     // chkThuocLa
     //
     this.chkThuocLa.AutoSize = true;
     this.chkThuocLa.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkThuocLa.Location = new System.Drawing.Point(481, 384);
     this.chkThuocLa.Name = "chkThuocLa";
     this.chkThuocLa.Size = new System.Drawing.Size(86, 17);
     this.chkThuocLa.TabIndex = 498;
     this.chkThuocLa.Text = "4. Thuốc lá  ";
     this.chkThuocLa.UseVisualStyleBackColor = true;
     //
     // chkRuouBia
     //
     this.chkRuouBia.AutoSize = true;
     this.chkRuouBia.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkRuouBia.Location = new System.Drawing.Point(58, 430);
     this.chkRuouBia.Name = "chkRuouBia";
     this.chkRuouBia.Size = new System.Drawing.Size(81, 17);
     this.chkRuouBia.TabIndex = 497;
     this.chkRuouBia.Text = "3. Rượu bia";
     this.chkRuouBia.UseVisualStyleBackColor = true;
     //
     // chkMaTuy
     //
     this.chkMaTuy.AutoSize = true;
     this.chkMaTuy.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkMaTuy.Location = new System.Drawing.Point(58, 407);
     this.chkMaTuy.Name = "chkMaTuy";
     this.chkMaTuy.Size = new System.Drawing.Size(82, 17);
     this.chkMaTuy.TabIndex = 496;
     this.chkMaTuy.Text = "2. Ma túy    ";
     this.chkMaTuy.UseVisualStyleBackColor = true;
     //
     // chkDiUng
     //
     this.chkDiUng.AutoSize = true;
     this.chkDiUng.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkDiUng.Location = new System.Drawing.Point(58, 384);
     this.chkDiUng.Name = "chkDiUng";
     this.chkDiUng.Size = new System.Drawing.Size(83, 17);
     this.chkDiUng.TabIndex = 495;
     this.chkDiUng.Text = "1. Dị Ứng    ";
     this.chkDiUng.UseVisualStyleBackColor = true;
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(32, 330);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(129, 13);
     this.label46.TabIndex = 494;
     this.label46.Text = "Đặc điểm liên quan bệnh:";
     //
     // txtBenhAnTienSuBenh
     //
     this.txtBenhAnTienSuBenh.Location = new System.Drawing.Point(35, 235);
     this.txtBenhAnTienSuBenh.Name = "txtBenhAnTienSuBenh";
     this.txtBenhAnTienSuBenh.Size = new System.Drawing.Size(847, 82);
     this.txtBenhAnTienSuBenh.TabIndex = 493;
     this.txtBenhAnTienSuBenh.Text = "";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Location = new System.Drawing.Point(50, 219);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(590, 13);
     this.label45.TabIndex = 492;
     this.label45.Text = "+ Bản thân:(phát triển thể lực từ nhỏ đến lớn, những bệnh đã mắc, ph" +
         "ương pháp ĐTr, tiêm phòng, ăn uống, sinh hoạt v.v...)";
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label44.Location = new System.Drawing.Point(32, 195);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(96, 13);
     this.label44.TabIndex = 491;
     this.label44.Text = "2.Tiền sử bệnh:";
     //
     // txtBenhAnQuaTrinhBenhLy
     //
     this.txtBenhAnQuaTrinhBenhLy.Location = new System.Drawing.Point(35, 103);
     this.txtBenhAnQuaTrinhBenhLy.Name = "txtBenhAnQuaTrinhBenhLy";
     this.txtBenhAnQuaTrinhBenhLy.Size = new System.Drawing.Size(847, 82);
     this.txtBenhAnQuaTrinhBenhLy.TabIndex = 490;
     this.txtBenhAnQuaTrinhBenhLy.Text = "";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(160, 77);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(299, 13);
     this.label43.TabIndex = 489;
     this.label43.Text = "(khởi phát, diễn biến, chẩn đoán, điều trị các tuyến dưới vv...)";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Location = new System.Drawing.Point(32, 77);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(123, 13);
     this.label42.TabIndex = 46;
     this.label42.Text = "1. Quá trình bệnh lý:";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.Location = new System.Drawing.Point(13, 55);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(74, 13);
     this.label41.TabIndex = 45;
     this.label41.Text = "II.Hỏi bệnh:";
     //
     // txtBenhAnVaoNgayThu
     //
     this.txtBenhAnVaoNgayThu.Location = new System.Drawing.Point(634, 21);
     this.txtBenhAnVaoNgayThu.Name = "txtBenhAnVaoNgayThu";
     this.txtBenhAnVaoNgayThu.Size = new System.Drawing.Size(138, 20);
     this.txtBenhAnVaoNgayThu.TabIndex = 44;
     this.txtBenhAnVaoNgayThu.Text = " ";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(797, 28);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(52, 13);
     this.label40.TabIndex = 43;
     this.label40.Text = "của bệnh";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(558, 28);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(70, 13);
     this.label39.TabIndex = 42;
     this.label39.Text = "Vào ngày thứ";
     //
     // txtBenhAnLyDoNhapVien
     //
     this.txtBenhAnLyDoNhapVien.Location = new System.Drawing.Point(122, 21);
     this.txtBenhAnLyDoNhapVien.Name = "txtBenhAnLyDoNhapVien";
     this.txtBenhAnLyDoNhapVien.Size = new System.Drawing.Size(422, 20);
     this.txtBenhAnLyDoNhapVien.TabIndex = 41;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(13, 28);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(103, 13);
     this.label38.TabIndex = 34;
     this.label38.Text = "I.Lý do vào viện:";
     //
     // grpTinhTrangRaVien
     //
     this.grpTinhTrangRaVien.Controls.Add(this.splitContainer3);
     this.grpTinhTrangRaVien.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpTinhTrangRaVien.Location = new System.Drawing.Point(0, 740);
     this.grpTinhTrangRaVien.Name = "grpTinhTrangRaVien";
     this.grpTinhTrangRaVien.Size = new System.Drawing.Size(895, 182);
     this.grpTinhTrangRaVien.TabIndex = 3;
     this.grpTinhTrangRaVien.Text = "IV. TÌNH TRẠNG RA VIỆN";
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(3, 16);
     this.splitContainer3.Name = "splitContainer3";
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.groupBox3);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvKhac);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvTrong24GioVaoVien);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvSau24Gio);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvDoTaiBien);
     this.splitContainer3.Panel2.Controls.Add(this.chkttrvDoBenh);
     this.splitContainer3.Panel2.Controls.Add(this.txtTTRVChuanDoanGiaiPhau);
     this.splitContainer3.Panel2.Controls.Add(this.chkTTRVKhamNgiemTuThi);
     this.splitContainer3.Panel2.Controls.Add(this.txtTTRVNguyenNhanChinhTuVong);
     this.splitContainer3.Panel2.Controls.Add(this.txtTTRVNgayTuVong);
     this.splitContainer3.Panel2.Controls.Add(this.label37);
     this.splitContainer3.Panel2.Controls.Add(this.label36);
     this.splitContainer3.Panel2.Controls.Add(this.label35);
     this.splitContainer3.Panel2.Controls.Add(this.label34);
     this.splitContainer3.Size = new System.Drawing.Size(889, 163);
     this.splitContainer3.SplitterDistance = 328;
     this.splitContainer3.TabIndex = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.chkTTRVAcTinh);
     this.groupBox3.Controls.Add(this.chkTTRVNghiNgo);
     this.groupBox3.Controls.Add(this.chkTTRVLanhTinh);
     this.groupBox3.Controls.Add(this.chkTTRVTuVong);
     this.groupBox3.Controls.Add(this.chkTTRVNangHon);
     this.groupBox3.Controls.Add(this.chkTTRVKhongThayDoi);
     this.groupBox3.Controls.Add(this.chkTTRVDoGiam);
     this.groupBox3.Controls.Add(this.chkTTRVKhoi);
     this.groupBox3.Controls.Add(this.label32);
     this.groupBox3.Controls.Add(this.label33);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(328, 163);
     this.groupBox3.TabIndex = 489;
     this.groupBox3.TabStop = false;
     //
     // chkTTRVAcTinh
     //
     this.chkTTRVAcTinh.AutoSize = true;
     this.chkTTRVAcTinh.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVAcTinh.Location = new System.Drawing.Point(211, 132);
     this.chkTTRVAcTinh.Name = "chkTTRVAcTinh";
     this.chkTTRVAcTinh.Size = new System.Drawing.Size(70, 17);
     this.chkTTRVAcTinh.TabIndex = 493;
     this.chkTTRVAcTinh.Text = "3.Ác tính";
     this.chkTTRVAcTinh.UseVisualStyleBackColor = true;
     this.chkTTRVAcTinh.CheckedChanged += new System.EventHandler(this.chkTTRVAcTinh_CheckedChanged);
     //
     // chkTTRVNghiNgo
     //
     this.chkTTRVNghiNgo.AutoSize = true;
     this.chkTTRVNghiNgo.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVNghiNgo.Location = new System.Drawing.Point(110, 132);
     this.chkTTRVNghiNgo.Name = "chkTTRVNghiNgo";
     this.chkTTRVNghiNgo.Size = new System.Drawing.Size(81, 17);
     this.chkTTRVNghiNgo.TabIndex = 492;
     this.chkTTRVNghiNgo.Text = "2.Nghi ngờ ";
     this.chkTTRVNghiNgo.UseVisualStyleBackColor = true;
     this.chkTTRVNghiNgo.CheckedChanged += new System.EventHandler(this.chkTTRVNghiNgo_CheckedChanged);
     //
     // chkTTRVLanhTinh
     //
     this.chkTTRVLanhTinh.AutoSize = true;
     this.chkTTRVLanhTinh.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVLanhTinh.Location = new System.Drawing.Point(17, 132);
     this.chkTTRVLanhTinh.Name = "chkTTRVLanhTinh";
     this.chkTTRVLanhTinh.Size = new System.Drawing.Size(81, 17);
     this.chkTTRVLanhTinh.TabIndex = 491;
     this.chkTTRVLanhTinh.Text = "1.Lành tính";
     this.chkTTRVLanhTinh.UseVisualStyleBackColor = true;
     this.chkTTRVLanhTinh.CheckedChanged += new System.EventHandler(this.chkTTRVLanhTinh_CheckedChanged);
     //
     // chkTTRVTuVong
     //
     this.chkTTRVTuVong.AutoSize = true;
     this.chkTTRVTuVong.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVTuVong.Location = new System.Drawing.Point(203, 61);
     this.chkTTRVTuVong.Name = "chkTTRVTuVong";
     this.chkTTRVTuVong.Size = new System.Drawing.Size(81, 17);
     this.chkTTRVTuVong.TabIndex = 490;
     this.chkTTRVTuVong.Text = "5.Tử vong  ";
     this.chkTTRVTuVong.UseVisualStyleBackColor = true;
     this.chkTTRVTuVong.CheckedChanged += new System.EventHandler(this.chkTTRVTuVong_CheckedChanged);
     //
     // chkTTRVNangHon
     //
     this.chkTTRVNangHon.AutoSize = true;
     this.chkTTRVNangHon.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVNangHon.Location = new System.Drawing.Point(203, 38);
     this.chkTTRVNangHon.Name = "chkTTRVNangHon";
     this.chkTTRVNangHon.Size = new System.Drawing.Size(82, 17);
     this.chkTTRVNangHon.TabIndex = 489;
     this.chkTTRVNangHon.Text = "4.Nặng hơn";
     this.chkTTRVNangHon.UseVisualStyleBackColor = true;
     this.chkTTRVNangHon.CheckedChanged += new System.EventHandler(this.chkTTRVNangHon_CheckedChanged);
     //
     // chkTTRVKhongThayDoi
     //
     this.chkTTRVKhongThayDoi.AutoSize = true;
     this.chkTTRVKhongThayDoi.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVKhongThayDoi.Location = new System.Drawing.Point(13, 84);
     this.chkTTRVKhongThayDoi.Name = "chkTTRVKhongThayDoi";
     this.chkTTRVKhongThayDoi.Size = new System.Drawing.Size(107, 17);
     this.chkTTRVKhongThayDoi.TabIndex = 488;
     this.chkTTRVKhongThayDoi.Text = "3.Không thay đổi";
     this.chkTTRVKhongThayDoi.UseVisualStyleBackColor = true;
     this.chkTTRVKhongThayDoi.CheckedChanged += new System.EventHandler(this.chkTTRVKhongThayDoi_CheckedChanged);
     //
     // chkTTRVDoGiam
     //
     this.chkTTRVDoGiam.AutoSize = true;
     this.chkTTRVDoGiam.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVDoGiam.Location = new System.Drawing.Point(13, 61);
     this.chkTTRVDoGiam.Name = "chkTTRVDoGiam";
     this.chkTTRVDoGiam.Size = new System.Drawing.Size(107, 17);
     this.chkTTRVDoGiam.TabIndex = 487;
     this.chkTTRVDoGiam.Text = "2.Đỡ, giảm          ";
     this.chkTTRVDoGiam.UseVisualStyleBackColor = true;
     this.chkTTRVDoGiam.CheckedChanged += new System.EventHandler(this.chkTTRVDoGiam_CheckedChanged);
     //
     // chkTTRVKhoi
     //
     this.chkTTRVKhoi.AutoSize = true;
     this.chkTTRVKhoi.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkTTRVKhoi.Location = new System.Drawing.Point(13, 38);
     this.chkTTRVKhoi.Name = "chkTTRVKhoi";
     this.chkTTRVKhoi.Size = new System.Drawing.Size(107, 17);
     this.chkTTRVKhoi.TabIndex = 486;
     this.chkTTRVKhoi.Text = "1.Khỏi                 ";
     this.chkTTRVKhoi.UseVisualStyleBackColor = true;
     this.chkTTRVKhoi.CheckedChanged += new System.EventHandler(this.chkTTRVKhoi_CheckedChanged);
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(10, 13);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(82, 13);
     this.label32.TabIndex = 484;
     this.label32.Text = "Kết quả điều trị:";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(10, 106);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(162, 13);
     this.label33.TabIndex = 485;
     this.label33.Text = "Giải phẫu bệnh:(khi có sinh thiết)";
     //
     // chkttrvKhac
     //
     this.chkttrvKhac.AutoSize = true;
     this.chkttrvKhac.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvKhac.Location = new System.Drawing.Point(420, 40);
     this.chkttrvKhac.Name = "chkttrvKhac";
     this.chkttrvKhac.Size = new System.Drawing.Size(60, 17);
     this.chkttrvKhac.TabIndex = 488;
     this.chkttrvKhac.Text = "5.Khác";
     this.chkttrvKhac.UseVisualStyleBackColor = true;
     this.chkttrvKhac.CheckedChanged += new System.EventHandler(this.chkttrvKhac_CheckedChanged);
     //
     // chkttrvTrong24GioVaoVien
     //
     this.chkttrvTrong24GioVaoVien.AutoSize = true;
     this.chkttrvTrong24GioVaoVien.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvTrong24GioVaoVien.Location = new System.Drawing.Point(27, 62);
     this.chkttrvTrong24GioVaoVien.Name = "chkttrvTrong24GioVaoVien";
     this.chkttrvTrong24GioVaoVien.Size = new System.Drawing.Size(139, 17);
     this.chkttrvTrong24GioVaoVien.TabIndex = 487;
     this.chkttrvTrong24GioVaoVien.Text = "2.Trong 24 giờ vào viện";
     this.chkttrvTrong24GioVaoVien.UseVisualStyleBackColor = true;
     this.chkttrvTrong24GioVaoVien.CheckedChanged += new System.EventHandler(this.chkttrvTrong24GioVaoVien_CheckedChanged);
     //
     // chkttrvSau24Gio
     //
     this.chkttrvSau24Gio.AutoSize = true;
     this.chkttrvSau24Gio.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvSau24Gio.Location = new System.Drawing.Point(221, 63);
     this.chkttrvSau24Gio.Name = "chkttrvSau24Gio";
     this.chkttrvSau24Gio.Size = new System.Drawing.Size(130, 17);
     this.chkttrvSau24Gio.TabIndex = 486;
     this.chkttrvSau24Gio.Text = "4.Sau 24 giờ vào viện";
     this.chkttrvSau24Gio.UseVisualStyleBackColor = true;
     this.chkttrvSau24Gio.CheckedChanged += new System.EventHandler(this.chkttrvSau24Gio_CheckedChanged);
     //
     // chkttrvDoTaiBien
     //
     this.chkttrvDoTaiBien.AutoSize = true;
     this.chkttrvDoTaiBien.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvDoTaiBien.Location = new System.Drawing.Point(221, 40);
     this.chkttrvDoTaiBien.Name = "chkttrvDoTaiBien";
     this.chkttrvDoTaiBien.Size = new System.Drawing.Size(130, 17);
     this.chkttrvDoTaiBien.TabIndex = 485;
     this.chkttrvDoTaiBien.Text = "3.Do tai biến điều trị   ";
     this.chkttrvDoTaiBien.UseVisualStyleBackColor = true;
     this.chkttrvDoTaiBien.CheckedChanged += new System.EventHandler(this.chkttrvDoTaiBien_CheckedChanged);
     //
     // chkttrvDoBenh
     //
     this.chkttrvDoBenh.AutoSize = true;
     this.chkttrvDoBenh.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkttrvDoBenh.Location = new System.Drawing.Point(27, 39);
     this.chkttrvDoBenh.Name = "chkttrvDoBenh";
     this.chkttrvDoBenh.Size = new System.Drawing.Size(140, 17);
     this.chkttrvDoBenh.TabIndex = 484;
     this.chkttrvDoBenh.Text = "1.Do Bệnh                     ";
     this.chkttrvDoBenh.UseVisualStyleBackColor = true;
     this.chkttrvDoBenh.CheckedChanged += new System.EventHandler(this.chkttrvDoBenh_CheckedChanged);
     //
     // txtTTRVChuanDoanGiaiPhau
     //
     this.txtTTRVChuanDoanGiaiPhau.Location = new System.Drawing.Point(311, 127);
     this.txtTTRVChuanDoanGiaiPhau.Name = "txtTTRVChuanDoanGiaiPhau";
     this.txtTTRVChuanDoanGiaiPhau.Size = new System.Drawing.Size(236, 20);
     this.txtTTRVChuanDoanGiaiPhau.TabIndex = 40;
     //
     // chkTTRVKhamNgiemTuThi
     //
     this.chkTTRVKhamNgiemTuThi.AutoSize = true;
     this.chkTTRVKhamNgiemTuThi.Location = new System.Drawing.Point(132, 130);
     this.chkTTRVKhamNgiemTuThi.Name = "chkTTRVKhamNgiemTuThi";
     this.chkTTRVKhamNgiemTuThi.Size = new System.Drawing.Size(15, 14);
     this.chkTTRVKhamNgiemTuThi.TabIndex = 27;
     this.chkTTRVKhamNgiemTuThi.UseVisualStyleBackColor = true;
     //
     // txtTTRVNguyenNhanChinhTuVong
     //
     this.txtTTRVNguyenNhanChinhTuVong.Location = new System.Drawing.Point(170, 95);
     this.txtTTRVNguyenNhanChinhTuVong.Name = "txtTTRVNguyenNhanChinhTuVong";
     this.txtTTRVNguyenNhanChinhTuVong.Size = new System.Drawing.Size(377, 20);
     this.txtTTRVNguyenNhanChinhTuVong.TabIndex = 39;
     //
     // txtTTRVNgayTuVong
     //
     this.txtTTRVNgayTuVong.Location = new System.Drawing.Point(118, 11);
     this.txtTTRVNgayTuVong.Name = "txtTTRVNgayTuVong";
     this.txtTTRVNgayTuVong.Size = new System.Drawing.Size(190, 20);
     this.txtTTRVNgayTuVong.TabIndex = 33;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(164, 130);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(141, 13);
     this.label37.TabIndex = 38;
     this.label37.Text = "Chuẩn đoán giải phẫu tử thi:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(24, 130);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(100, 13);
     this.label36.TabIndex = 37;
     this.label36.Text = "Khám nghiệm tử thi:";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(24, 96);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(144, 13);
     this.label35.TabIndex = 36;
     this.label35.Text = "Nguyên nhân chính tử vong:";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(24, 15);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(93, 13);
     this.label34.TabIndex = 35;
     this.label34.Text = "Tình hình tử vong:";
     //
     // grpChanDoan
     //
     this.grpChanDoan.Controls.Add(this.splitContainer2);
     this.grpChanDoan.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpChanDoan.Location = new System.Drawing.Point(0, 521);
     this.grpChanDoan.Name = "grpChanDoan";
     this.grpChanDoan.Size = new System.Drawing.Size(895, 219);
     this.grpChanDoan.TabIndex = 2;
     this.grpChanDoan.Text = "III. CHẨN ĐOÁN";
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 16);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.txtCDKhiVaoDieuTri);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDKKBCapCuu);
     this.splitContainer2.Panel1.Controls.Add(this.chkCDPhauThuat);
     this.splitContainer2.Panel1.Controls.Add(this.chkCDThuThuat);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDMaKhiVaoDieuTri);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDMaKKBCapCuu);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDMaNoiChuyenDen);
     this.splitContainer2.Panel1.Controls.Add(this.txtCDNoiChuyenDen);
     this.splitContainer2.Panel1.Controls.Add(this.label26);
     this.splitContainer2.Panel1.Controls.Add(this.label25);
     this.splitContainer2.Panel1.Controls.Add(this.label24);
     this.splitContainer2.Panel1.Controls.Add(this.label23);
     this.splitContainer2.Panel1.Controls.Add(this.label22);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.groupBox1);
     this.splitContainer2.Size = new System.Drawing.Size(889, 200);
     this.splitContainer2.SplitterDistance = 550;
     this.splitContainer2.TabIndex = 0;
     //
     // txtCDKhiVaoDieuTri
     //
     this.txtCDKhiVaoDieuTri.Location = new System.Drawing.Point(109, 108);
     this.txtCDKhiVaoDieuTri.Name = "txtCDKhiVaoDieuTri";
     this.txtCDKhiVaoDieuTri.Size = new System.Drawing.Size(298, 53);
     this.txtCDKhiVaoDieuTri.TabIndex = 591;
     this.txtCDKhiVaoDieuTri.Text = "";
     //
     // txtCDKKBCapCuu
     //
     this.txtCDKKBCapCuu.Location = new System.Drawing.Point(109, 44);
     this.txtCDKKBCapCuu.Name = "txtCDKKBCapCuu";
     this.txtCDKKBCapCuu.Size = new System.Drawing.Size(298, 55);
     this.txtCDKKBCapCuu.TabIndex = 590;
     this.txtCDKKBCapCuu.Text = "";
     //
     // chkCDPhauThuat
     //
     this.chkCDPhauThuat.AutoSize = true;
     this.chkCDPhauThuat.Location = new System.Drawing.Point(348, 167);
     this.chkCDPhauThuat.Name = "chkCDPhauThuat";
     this.chkCDPhauThuat.Size = new System.Drawing.Size(15, 14);
     this.chkCDPhauThuat.TabIndex = 26;
     this.chkCDPhauThuat.UseVisualStyleBackColor = true;
     //
     // chkCDThuThuat
     //
     this.chkCDThuThuat.AutoSize = true;
     this.chkCDThuThuat.Location = new System.Drawing.Point(164, 167);
     this.chkCDThuThuat.Name = "chkCDThuThuat";
     this.chkCDThuThuat.Size = new System.Drawing.Size(15, 14);
     this.chkCDThuThuat.TabIndex = 25;
     this.chkCDThuThuat.UseVisualStyleBackColor = true;
     //
     // txtCDMaKhiVaoDieuTri
     //
     this.txtCDMaKhiVaoDieuTri.Location = new System.Drawing.Point(413, 123);
     this.txtCDMaKhiVaoDieuTri.Name = "txtCDMaKhiVaoDieuTri";
     this.txtCDMaKhiVaoDieuTri.Size = new System.Drawing.Size(130, 20);
     this.txtCDMaKhiVaoDieuTri.TabIndex = 24;
     //
     // txtCDMaKKBCapCuu
     //
     this.txtCDMaKKBCapCuu.Location = new System.Drawing.Point(413, 60);
     this.txtCDMaKKBCapCuu.Name = "txtCDMaKKBCapCuu";
     this.txtCDMaKKBCapCuu.Size = new System.Drawing.Size(130, 20);
     this.txtCDMaKKBCapCuu.TabIndex = 22;
     //
     // txtCDMaNoiChuyenDen
     //
     this.txtCDMaNoiChuyenDen.Location = new System.Drawing.Point(413, 18);
     this.txtCDMaNoiChuyenDen.Name = "txtCDMaNoiChuyenDen";
     this.txtCDMaNoiChuyenDen.Size = new System.Drawing.Size(130, 20);
     this.txtCDMaNoiChuyenDen.TabIndex = 20;
     //
     // txtCDNoiChuyenDen
     //
     this.txtCDNoiChuyenDen.Location = new System.Drawing.Point(109, 18);
     this.txtCDNoiChuyenDen.Name = "txtCDNoiChuyenDen";
     this.txtCDNoiChuyenDen.Size = new System.Drawing.Size(298, 20);
     this.txtCDNoiChuyenDen.TabIndex = 19;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(274, 168);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(68, 13);
     this.label26.TabIndex = 18;
     this.label26.Text = "+ Phẫu thuật";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(99, 168);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(59, 13);
     this.label25.TabIndex = 17;
     this.label25.Text = "+Thủ thuât";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(4, 123);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(108, 13);
     this.label24.TabIndex = 16;
     this.label24.Text = "Khi vào khoa điều trị:";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(4, 68);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(77, 13);
     this.label23.TabIndex = 15;
     this.label23.Text = "KKB. Cấp cứu:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(4, 21);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(86, 13);
     this.label22.TabIndex = 14;
     this.label22.Text = "Nơi chuyển đến:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtCDBenhKemTheo);
     this.groupBox1.Controls.Add(this.txtCDBenhChinh);
     this.groupBox1.Controls.Add(this.txtCDMaBenhKemTheo);
     this.groupBox1.Controls.Add(this.txtCDMaBenhChinh);
     this.groupBox1.Controls.Add(this.chkCDBienChung);
     this.groupBox1.Controls.Add(this.chkCDTaiBien);
     this.groupBox1.Controls.Add(this.label27);
     this.groupBox1.Controls.Add(this.label31);
     this.groupBox1.Controls.Add(this.label28);
     this.groupBox1.Controls.Add(this.label30);
     this.groupBox1.Controls.Add(this.label29);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(335, 200);
     this.groupBox1.TabIndex = 27;
     this.groupBox1.TabStop = false;
     //
     // txtCDBenhKemTheo
     //
     this.txtCDBenhKemTheo.Location = new System.Drawing.Point(92, 103);
     this.txtCDBenhKemTheo.Name = "txtCDBenhKemTheo";
     this.txtCDBenhKemTheo.Size = new System.Drawing.Size(185, 53);
     this.txtCDBenhKemTheo.TabIndex = 593;
     this.txtCDBenhKemTheo.Text = "";
     //
     // txtCDBenhChinh
     //
     this.txtCDBenhChinh.Location = new System.Drawing.Point(92, 44);
     this.txtCDBenhChinh.Name = "txtCDBenhChinh";
     this.txtCDBenhChinh.Size = new System.Drawing.Size(185, 53);
     this.txtCDBenhChinh.TabIndex = 592;
     this.txtCDBenhChinh.Text = "";
     //
     // txtCDMaBenhKemTheo
     //
     this.txtCDMaBenhKemTheo.Location = new System.Drawing.Point(284, 123);
     this.txtCDMaBenhKemTheo.Name = "txtCDMaBenhKemTheo";
     this.txtCDMaBenhKemTheo.Size = new System.Drawing.Size(45, 20);
     this.txtCDMaBenhKemTheo.TabIndex = 43;
     //
     // txtCDMaBenhChinh
     //
     this.txtCDMaBenhChinh.Location = new System.Drawing.Point(282, 61);
     this.txtCDMaBenhChinh.Name = "txtCDMaBenhChinh";
     this.txtCDMaBenhChinh.Size = new System.Drawing.Size(45, 20);
     this.txtCDMaBenhChinh.TabIndex = 41;
     //
     // chkCDBienChung
     //
     this.chkCDBienChung.AutoSize = true;
     this.chkCDBienChung.Location = new System.Drawing.Point(287, 169);
     this.chkCDBienChung.Name = "chkCDBienChung";
     this.chkCDBienChung.Size = new System.Drawing.Size(15, 14);
     this.chkCDBienChung.TabIndex = 39;
     this.chkCDBienChung.UseVisualStyleBackColor = true;
     //
     // chkCDTaiBien
     //
     this.chkCDTaiBien.AutoSize = true;
     this.chkCDTaiBien.Location = new System.Drawing.Point(93, 169);
     this.chkCDTaiBien.Name = "chkCDTaiBien";
     this.chkCDTaiBien.Size = new System.Drawing.Size(15, 14);
     this.chkCDTaiBien.TabIndex = 38;
     this.chkCDTaiBien.UseVisualStyleBackColor = true;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(211, 170);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(70, 13);
     this.label27.TabIndex = 37;
     this.label27.Text = "+ Biến chứng";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(16, 23);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(47, 13);
     this.label31.TabIndex = 33;
     this.label31.Text = "Ra viện:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(36, 170);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(51, 13);
     this.label28.TabIndex = 36;
     this.label28.Text = "+Tai biến";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(7, 64);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(72, 13);
     this.label30.TabIndex = 34;
     this.label30.Text = "+Bệnh chính:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(7, 123);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(88, 13);
     this.label29.TabIndex = 35;
     this.label29.Text = "+Bệnh kèm theo:";
     //
     // grpQuanLyNguoiBenh
     //
     this.grpQuanLyNguoiBenh.Controls.Add(this.splitContainer1);
     this.grpQuanLyNguoiBenh.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpQuanLyNguoiBenh.Location = new System.Drawing.Point(0, 278);
     this.grpQuanLyNguoiBenh.Name = "grpQuanLyNguoiBenh";
     this.grpQuanLyNguoiBenh.Size = new System.Drawing.Size(895, 243);
     this.grpQuanLyNguoiBenh.TabIndex = 1;
     this.grpQuanLyNguoiBenh.TabStop = false;
     this.grpQuanLyNguoiBenh.Text = "II. QUẢN LÝ NGƯỜI BỆNH";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.chkQLNBKhoaDieuTri);
     this.splitContainer1.Panel1.Controls.Add(this.chkQLNBKKB);
     this.splitContainer1.Panel1.Controls.Add(this.chkQLNBCapCuu);
     this.splitContainer1.Panel1.Controls.Add(this.label21);
     this.splitContainer1.Panel1.Controls.Add(this.grdQLNBKhoa);
     this.splitContainer1.Panel1.Controls.Add(this.label14);
     this.splitContainer1.Panel1.Controls.Add(this.dtQLNBVaoVien);
     this.splitContainer1.Panel1.Controls.Add(this.label7);
     this.splitContainer1.Panel1.Controls.Add(this.label6);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer1.Size = new System.Drawing.Size(889, 224);
     this.splitContainer1.SplitterDistance = 465;
     this.splitContainer1.TabIndex = 0;
     //
     // chkQLNBKhoaDieuTri
     //
     this.chkQLNBKhoaDieuTri.AutoSize = true;
     this.chkQLNBKhoaDieuTri.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBKhoaDieuTri.Location = new System.Drawing.Point(363, 40);
     this.chkQLNBKhoaDieuTri.Name = "chkQLNBKhoaDieuTri";
     this.chkQLNBKhoaDieuTri.Size = new System.Drawing.Size(95, 17);
     this.chkQLNBKhoaDieuTri.TabIndex = 16;
     this.chkQLNBKhoaDieuTri.Text = "3.Khoa điều trị";
     this.chkQLNBKhoaDieuTri.UseVisualStyleBackColor = true;
     this.chkQLNBKhoaDieuTri.CheckedChanged += new System.EventHandler(this.chkQLNBKhoaDieuTri_CheckedChanged);
     //
     // chkQLNBKKB
     //
     this.chkQLNBKKB.AutoSize = true;
     this.chkQLNBKKB.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBKKB.Location = new System.Drawing.Point(242, 40);
     this.chkQLNBKKB.Name = "chkQLNBKKB";
     this.chkQLNBKKB.Size = new System.Drawing.Size(59, 17);
     this.chkQLNBKKB.TabIndex = 15;
     this.chkQLNBKKB.Text = "2. KKB";
     this.chkQLNBKKB.UseVisualStyleBackColor = true;
     this.chkQLNBKKB.CheckedChanged += new System.EventHandler(this.chkQLNBKKB_CheckedChanged);
     //
     // chkQLNBCapCuu
     //
     this.chkQLNBCapCuu.AutoSize = true;
     this.chkQLNBCapCuu.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBCapCuu.Location = new System.Drawing.Point(90, 40);
     this.chkQLNBCapCuu.Name = "chkQLNBCapCuu";
     this.chkQLNBCapCuu.Size = new System.Drawing.Size(75, 17);
     this.chkQLNBCapCuu.TabIndex = 14;
     this.chkQLNBCapCuu.Text = "1.Cấp cứu";
     this.chkQLNBCapCuu.UseVisualStyleBackColor = true;
     this.chkQLNBCapCuu.CheckedChanged += new System.EventHandler(this.chkQLNBCapCuu_CheckedChanged);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(13, 103);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(73, 13);
     this.label21.TabIndex = 13;
     this.label21.Text = "Chuyển khoa:";
     //
     // grdQLNBKhoa
     //
     this.grdQLNBKhoa.ColumnAutoResize = true;
     grdQLNBKhoa_DesignTimeLayout.LayoutString = resources.GetString("grdQLNBKhoa_DesignTimeLayout.LayoutString");
     this.grdQLNBKhoa.DesignTimeLayout = grdQLNBKhoa_DesignTimeLayout;
     this.grdQLNBKhoa.GroupByBoxVisible = false;
     this.grdQLNBKhoa.Location = new System.Drawing.Point(91, 64);
     this.grdQLNBKhoa.Name = "grdQLNBKhoa";
     this.grdQLNBKhoa.Size = new System.Drawing.Size(367, 138);
     this.grdQLNBKhoa.TabIndex = 12;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(14, 85);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(56, 13);
     this.label14.TabIndex = 11;
     this.label14.Text = "Vào khoa:";
     //
     // dtQLNBVaoVien
     //
     this.dtQLNBVaoVien.CustomFormat = "dd/MM/yyyy hh:mm";
     this.dtQLNBVaoVien.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtQLNBVaoVien.Location = new System.Drawing.Point(91, 8);
     this.dtQLNBVaoVien.Name = "dtQLNBVaoVien";
     this.dtQLNBVaoVien.Size = new System.Drawing.Size(189, 20);
     this.dtQLNBVaoVien.TabIndex = 10;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(13, 37);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(73, 13);
     this.label7.TabIndex = 8;
     this.label7.Text = "Trực tiếp vào:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(14, 10);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 13);
     this.label6.TabIndex = 7;
     this.label6.Text = "Vào Viên:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.dtQLNBRaVien);
     this.groupBox2.Controls.Add(this.chkQLNBDuaVe);
     this.groupBox2.Controls.Add(this.chkQLNBBoVe);
     this.groupBox2.Controls.Add(this.chkQLNBXinVe);
     this.groupBox2.Controls.Add(this.chkQLNBRaVien);
     this.groupBox2.Controls.Add(this.chkQLNBCK);
     this.groupBox2.Controls.Add(this.chkQLNBTuyenDuoi);
     this.groupBox2.Controls.Add(this.chkQLNBTuyenTren);
     this.groupBox2.Controls.Add(this.chkQLNBKhac);
     this.groupBox2.Controls.Add(this.chkQLNBTuDen);
     this.groupBox2.Controls.Add(this.chkQLNBCoQuanYTe);
     this.groupBox2.Controls.Add(this.txtQLNBTongSoNgayDieuTri);
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.txtQLNBChuyenDen);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.label15);
     this.groupBox2.Controls.Add(this.txtQLNBLanVaoVien);
     this.groupBox2.Controls.Add(this.label12);
     this.groupBox2.Controls.Add(this.label11);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(420, 224);
     this.groupBox2.TabIndex = 17;
     this.groupBox2.TabStop = false;
     //
     // dtQLNBRaVien
     //
     this.dtQLNBRaVien.Location = new System.Drawing.Point(120, 121);
     this.dtQLNBRaVien.Name = "dtQLNBRaVien";
     this.dtQLNBRaVien.Size = new System.Drawing.Size(275, 20);
     this.dtQLNBRaVien.TabIndex = 497;
     //
     // chkQLNBDuaVe
     //
     this.chkQLNBDuaVe.AutoSize = true;
     this.chkQLNBDuaVe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBDuaVe.Location = new System.Drawing.Point(336, 155);
     this.chkQLNBDuaVe.Name = "chkQLNBDuaVe";
     this.chkQLNBDuaVe.Size = new System.Drawing.Size(70, 17);
     this.chkQLNBDuaVe.TabIndex = 496;
     this.chkQLNBDuaVe.Text = "4.Đưa về";
     this.chkQLNBDuaVe.UseVisualStyleBackColor = true;
     this.chkQLNBDuaVe.CheckedChanged += new System.EventHandler(this.chkQLNBDuaVe_CheckedChanged);
     //
     // chkQLNBBoVe
     //
     this.chkQLNBBoVe.AutoSize = true;
     this.chkQLNBBoVe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBBoVe.Location = new System.Drawing.Point(269, 155);
     this.chkQLNBBoVe.Name = "chkQLNBBoVe";
     this.chkQLNBBoVe.Size = new System.Drawing.Size(63, 17);
     this.chkQLNBBoVe.TabIndex = 495;
     this.chkQLNBBoVe.Text = "3.Bỏ về";
     this.chkQLNBBoVe.UseVisualStyleBackColor = true;
     this.chkQLNBBoVe.CheckedChanged += new System.EventHandler(this.chkQLNBBoVe_CheckedChanged);
     //
     // chkQLNBXinVe
     //
     this.chkQLNBXinVe.AutoSize = true;
     this.chkQLNBXinVe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBXinVe.Location = new System.Drawing.Point(195, 155);
     this.chkQLNBXinVe.Name = "chkQLNBXinVe";
     this.chkQLNBXinVe.Size = new System.Drawing.Size(65, 17);
     this.chkQLNBXinVe.TabIndex = 494;
     this.chkQLNBXinVe.Text = "2.Xin về";
     this.chkQLNBXinVe.UseVisualStyleBackColor = true;
     this.chkQLNBXinVe.CheckedChanged += new System.EventHandler(this.chkQLNBXinVe_CheckedChanged);
     //
     // chkQLNBRaVien
     //
     this.chkQLNBRaVien.AutoSize = true;
     this.chkQLNBRaVien.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBRaVien.Location = new System.Drawing.Point(113, 155);
     this.chkQLNBRaVien.Name = "chkQLNBRaVien";
     this.chkQLNBRaVien.Size = new System.Drawing.Size(72, 17);
     this.chkQLNBRaVien.TabIndex = 493;
     this.chkQLNBRaVien.Text = "1.Ra viện";
     this.chkQLNBRaVien.UseVisualStyleBackColor = true;
     this.chkQLNBRaVien.CheckedChanged += new System.EventHandler(this.chkQLNBRaVien_CheckedChanged);
     //
     // chkQLNBCK
     //
     this.chkQLNBCK.AutoSize = true;
     this.chkQLNBCK.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBCK.Location = new System.Drawing.Point(357, 70);
     this.chkQLNBCK.Name = "chkQLNBCK";
     this.chkQLNBCK.Size = new System.Drawing.Size(49, 17);
     this.chkQLNBCK.TabIndex = 492;
     this.chkQLNBCK.Text = "3.CK";
     this.chkQLNBCK.UseVisualStyleBackColor = true;
     this.chkQLNBCK.CheckedChanged += new System.EventHandler(this.chkQLNBCK_CheckedChanged);
     //
     // chkQLNBTuyenDuoi
     //
     this.chkQLNBTuyenDuoi.AutoSize = true;
     this.chkQLNBTuyenDuoi.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBTuyenDuoi.Location = new System.Drawing.Point(233, 70);
     this.chkQLNBTuyenDuoi.Name = "chkQLNBTuyenDuoi";
     this.chkQLNBTuyenDuoi.Size = new System.Drawing.Size(88, 17);
     this.chkQLNBTuyenDuoi.TabIndex = 491;
     this.chkQLNBTuyenDuoi.Text = "2.Tuyến dưới";
     this.chkQLNBTuyenDuoi.UseVisualStyleBackColor = true;
     this.chkQLNBTuyenDuoi.CheckedChanged += new System.EventHandler(this.chkQLNBTuyenDuoi_CheckedChanged);
     //
     // chkQLNBTuyenTren
     //
     this.chkQLNBTuyenTren.AutoSize = true;
     this.chkQLNBTuyenTren.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBTuyenTren.Location = new System.Drawing.Point(120, 72);
     this.chkQLNBTuyenTren.Name = "chkQLNBTuyenTren";
     this.chkQLNBTuyenTren.Size = new System.Drawing.Size(86, 17);
     this.chkQLNBTuyenTren.TabIndex = 490;
     this.chkQLNBTuyenTren.Text = "1.Tuyến trên";
     this.chkQLNBTuyenTren.UseVisualStyleBackColor = true;
     this.chkQLNBTuyenTren.CheckedChanged += new System.EventHandler(this.chkQLNBTuyenTren_CheckedChanged);
     //
     // chkQLNBKhac
     //
     this.chkQLNBKhac.AutoSize = true;
     this.chkQLNBKhac.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBKhac.Location = new System.Drawing.Point(343, 14);
     this.chkQLNBKhac.Name = "chkQLNBKhac";
     this.chkQLNBKhac.Size = new System.Drawing.Size(63, 17);
     this.chkQLNBKhac.TabIndex = 489;
     this.chkQLNBKhac.Text = "3. Khác";
     this.chkQLNBKhac.UseVisualStyleBackColor = true;
     this.chkQLNBKhac.CheckedChanged += new System.EventHandler(this.chkQLNBKhac_CheckedChanged);
     //
     // chkQLNBTuDen
     //
     this.chkQLNBTuDen.AutoSize = true;
     this.chkQLNBTuDen.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBTuDen.Location = new System.Drawing.Point(244, 14);
     this.chkQLNBTuDen.Name = "chkQLNBTuDen";
     this.chkQLNBTuDen.Size = new System.Drawing.Size(74, 17);
     this.chkQLNBTuDen.TabIndex = 488;
     this.chkQLNBTuDen.Text = "2. Tự Đến";
     this.chkQLNBTuDen.UseVisualStyleBackColor = true;
     this.chkQLNBTuDen.CheckedChanged += new System.EventHandler(this.chkQLNBTuDen_CheckedChanged);
     //
     // chkQLNBCoQuanYTe
     //
     this.chkQLNBCoQuanYTe.AutoSize = true;
     this.chkQLNBCoQuanYTe.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkQLNBCoQuanYTe.Location = new System.Drawing.Point(120, 14);
     this.chkQLNBCoQuanYTe.Name = "chkQLNBCoQuanYTe";
     this.chkQLNBCoQuanYTe.Size = new System.Drawing.Size(103, 17);
     this.chkQLNBCoQuanYTe.TabIndex = 487;
     this.chkQLNBCoQuanYTe.Text = "1.Cơ Quan Y Tế";
     this.chkQLNBCoQuanYTe.UseVisualStyleBackColor = true;
     this.chkQLNBCoQuanYTe.CheckedChanged += new System.EventHandler(this.chkQLNBCoQuanYTe_CheckedChanged);
     //
     // txtQLNBTongSoNgayDieuTri
     //
     this.txtQLNBTongSoNgayDieuTri.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQLNBTongSoNgayDieuTri.Location = new System.Drawing.Point(120, 181);
     this.txtQLNBTongSoNgayDieuTri.Name = "txtQLNBTongSoNgayDieuTri";
     this.txtQLNBTongSoNgayDieuTri.Size = new System.Drawing.Size(103, 20);
     this.txtQLNBTongSoNgayDieuTri.TabIndex = 486;
     this.txtQLNBTongSoNgayDieuTri.TabStop = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(6, 184);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(110, 13);
     this.label20.TabIndex = 485;
     this.label20.Text = "Tổng số ngày điều trị:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(6, 156);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(71, 13);
     this.label19.TabIndex = 484;
     this.label19.Text = "Lý do ra viện:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(6, 127);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(47, 13);
     this.label18.TabIndex = 483;
     this.label18.Text = "Ra viện:";
     //
     // txtQLNBChuyenDen
     //
     this.txtQLNBChuyenDen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQLNBChuyenDen.Location = new System.Drawing.Point(120, 95);
     this.txtQLNBChuyenDen.Name = "txtQLNBChuyenDen";
     this.txtQLNBChuyenDen.Size = new System.Drawing.Size(275, 20);
     this.txtQLNBChuyenDen.TabIndex = 482;
     this.txtQLNBChuyenDen.TabStop = false;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(6, 99);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(68, 13);
     this.label17.TabIndex = 481;
     this.label17.Text = "Chuyển đến:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(6, 71);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(69, 13);
     this.label15.TabIndex = 480;
     this.label15.Text = "Chuyển viện:";
     //
     // txtQLNBLanVaoVien
     //
     this.txtQLNBLanVaoVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtQLNBLanVaoVien.Location = new System.Drawing.Point(120, 40);
     this.txtQLNBLanVaoVien.Name = "txtQLNBLanVaoVien";
     this.txtQLNBLanVaoVien.Size = new System.Drawing.Size(103, 20);
     this.txtQLNBLanVaoVien.TabIndex = 479;
     this.txtQLNBLanVaoVien.TabStop = false;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(6, 43);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(87, 13);
     this.label12.TabIndex = 478;
     this.label12.Text = "Vào viện lần thứ:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(6, 16);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(71, 13);
     this.label11.TabIndex = 477;
     this.label11.Text = "Nơi giới thiệu:";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Latha", 8.25F);
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 644);
     this.uiStatusBar1.Name = "uiStatusBar1";
     this.uiStatusBar1.Size = new System.Drawing.Size(912, 25);
     this.uiStatusBar1.TabIndex = 584;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.lblMess);
     this.panel2.Controls.Add(this.cmdDelete);
     this.panel2.Controls.Add(this.cmdSave);
     this.panel2.Controls.Add(this.cmdInBenhAn);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 585);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(912, 59);
     this.panel2.TabIndex = 585;
     //
     // lblMess
     //
     this.lblMess.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lblMess.BackColor = System.Drawing.SystemColors.Control;
     this.lblMess.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMess.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblMess.Location = new System.Drawing.Point(12, 29);
     this.lblMess.Name = "lblMess";
     this.lblMess.Size = new System.Drawing.Size(236, 20);
     this.lblMess.TabIndex = 590;
     this.lblMess.Text = "label94";
     this.lblMess.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmdDelete
     //
     this.cmdDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdDelete.Location = new System.Drawing.Point(591, 13);
     this.cmdDelete.Name = "cmdDelete";
     this.cmdDelete.Size = new System.Drawing.Size(126, 40);
     this.cmdDelete.TabIndex = 589;
     this.cmdDelete.Text = "&Xóa Bệnh Án";
     this.cmdDelete.UseVisualStyleBackColor = true;
     this.cmdDelete.Click += new System.EventHandler(this.cmdDelete_Click);
     //
     // cmdSave
     //
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Location = new System.Drawing.Point(267, 15);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(123, 38);
     this.cmdSave.TabIndex = 587;
     this.cmdSave.Text = "&Lưu (Ctrl+S)";
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // cmdInBenhAn
     //
     this.cmdInBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInBenhAn.Location = new System.Drawing.Point(432, 13);
     this.cmdInBenhAn.Name = "cmdInBenhAn";
     this.cmdInBenhAn.Size = new System.Drawing.Size(126, 40);
     this.cmdInBenhAn.TabIndex = 588;
     this.cmdInBenhAn.Text = "&In Bệnh Án(F4)";
     this.cmdInBenhAn.UseVisualStyleBackColor = true;
     this.cmdInBenhAn.Click += new System.EventHandler(this.cmdInBenhAn_Click);
     //
     // frm_BENHAN_N0ITRU
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 669);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.panel1);
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_BENHAN_N0ITRU";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Bệnh Án Nội Khoa";
     this.Load += new System.EventHandler(this.frm_BENHAN_NOITRU_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_BENHAN_N0ITRU_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).EndInit();
     this.grpThongTinBenhNhan.ResumeLayout(false);
     this.grpThongTinBenhNhan.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox4)).EndInit();
     this.uiGroupBox4.ResumeLayout(false);
     this.uiGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpBenhAn)).EndInit();
     this.grpBenhAn.ResumeLayout(false);
     this.grpBenhAn.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpTinhTrangRaVien)).EndInit();
     this.grpTinhTrangRaVien.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.Panel2.PerformLayout();
     this.splitContainer3.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpChanDoan)).EndInit();
     this.grpChanDoan.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.grpQuanLyNguoiBenh.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdQLNBKhoa)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_BENHAN_NGOAITRU_TG));
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem1 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem2 = new Janus.Windows.EditControls.UIComboBoxItem();
     Janus.Windows.EditControls.UIComboBoxItem uiComboBoxItem3 = new Janus.Windows.EditControls.UIComboBoxItem();
     this.grpThongTinBenhNhan = new Janus.Windows.EditControls.UIGroupBox();
     this.uiButton1 = new Janus.Windows.EditControls.UIButton();
     this.txtID_BA = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtSoKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label87 = new System.Windows.Forms.Label();
     this.dtInsToDate = new Janus.Windows.GridEX.EditControls.EditBox();
     this.dtThoiDiemDkKham = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.txtSoBaoHiemYte = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtDienThoai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label13 = new System.Windows.Forms.Label();
     this.chkTuDen = new Janus.Windows.EditControls.UICheckBox();
     this.chkYTe = new Janus.Windows.EditControls.UICheckBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.txtMaBenhAn = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txtMaLanKham = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label9 = new System.Windows.Forms.Label();
     this.txtMaBN = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label8 = new System.Windows.Forms.Label();
     this.txtChanDoanBanDau = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtThongTinLienHe = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtClinicCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtInsObject_CodeTP = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtOThu6 = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtOThu5 = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtOThuTu = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtInsCodeTP = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.txtInsNumber = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label16 = new System.Windows.Forms.Label();
     this.txtInsObjectCode = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtDoiTuong = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtNoiLamViec = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtDiaChi = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label1 = new System.Windows.Forms.Label();
     this.chkNgoaiKieu = new Janus.Windows.EditControls.UICheckBox();
     this.txtDanToc = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblDanToc = new System.Windows.Forms.Label();
     this.lblNgheNghiep = new System.Windows.Forms.Label();
     this.cboGioiTinh = new Janus.Windows.EditControls.UIComboBox();
     this.txtNgheNghiep = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblGioiTinh = new System.Windows.Forms.Label();
     this.txtNamSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtThangSinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNgaySinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.lblNgaySinh = new System.Windows.Forms.Label();
     this.lblTenBn = new System.Windows.Forms.Label();
     this.txtHoTen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.KHAMBENH = new Janus.Windows.EditControls.UIGroupBox();
     this.txtkbHoHap = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label50 = new System.Windows.Forms.Label();
     this.chkbhLTThuyT = new Janus.Windows.EditControls.UICheckBox();
     this.chkhbLTThuyP = new Janus.Windows.EditControls.UICheckBox();
     this.label36 = new System.Windows.Forms.Label();
     this.chkThuyT = new Janus.Windows.EditControls.UICheckBox();
     this.chkhbThuyP = new Janus.Windows.EditControls.UICheckBox();
     this.label35 = new System.Windows.Forms.Label();
     this.chkhbBuouNhan2thuy = new Janus.Windows.EditControls.UICheckBox();
     this.chkhbBuouNhanThuyT = new Janus.Windows.EditControls.UICheckBox();
     this.chkbhBuouNhanThuyP = new Janus.Windows.EditControls.UICheckBox();
     this.chkkbBuouLanToa = new Janus.Windows.EditControls.UICheckBox();
     this.chkMatDoChac = new Janus.Windows.EditControls.UICheckBox();
     this.chkMatDoMem = new Janus.Windows.EditControls.UICheckBox();
     this.chklll = new Janus.Windows.EditControls.UICheckBox();
     this.chkll = new Janus.Windows.EditControls.UICheckBox();
     this.chklb = new Janus.Windows.EditControls.UICheckBox();
     this.chkla = new Janus.Windows.EditControls.UICheckBox();
     this.txtkbTomTatKQCLSC = new System.Windows.Forms.RichTextBox();
     this.txtkbMa = new System.Windows.Forms.RichTextBox();
     this.txtkbChanDoanRaVien = new System.Windows.Forms.RichTextBox();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.txtBMI = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtChieuCao = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtCanNang = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhipTho = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label83 = new System.Windows.Forms.Label();
     this.txtHuyetApDen = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtHuyetApTu = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtNhietDo = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label82 = new System.Windows.Forms.Label();
     this.label81 = new System.Windows.Forms.Label();
     this.label80 = new System.Windows.Forms.Label();
     this.label79 = new System.Windows.Forms.Label();
     this.label78 = new System.Windows.Forms.Label();
     this.label77 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.txtMach = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label75 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.label72 = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.label69 = new System.Windows.Forms.Label();
     this.dtDieuTriNgoaiTruDen = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label68 = new System.Windows.Forms.Label();
     this.dtDieuTriNgoaiTruTu = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.label67 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.TXTKBDaXuLy = new Janus.Windows.GridEX.EditControls.EditBox();
     this.TXTKBChanDoanBD = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label63 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.label61 = new System.Windows.Forms.Label();
     this.label60 = new System.Windows.Forms.Label();
     this.txtkbThanKinh = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label59 = new System.Windows.Forms.Label();
     this.txtkbBung = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label58 = new System.Windows.Forms.Label();
     this.txtkbMatTrai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label57 = new System.Windows.Forms.Label();
     this.txtkbMatPhai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label56 = new System.Windows.Forms.Label();
     this.label49 = new System.Windows.Forms.Label();
     this.txtkbTiengTim = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label48 = new System.Windows.Forms.Label();
     this.chkkbNhipTimKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chkkbNhipTimDeu = new Janus.Windows.EditControls.UICheckBox();
     this.label47 = new System.Windows.Forms.Label();
     this.txtkbNhipTim = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label46 = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.txtkbKhac = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label44 = new System.Windows.Forms.Label();
     this.chkkbRunTayKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chkkbRunTayCo = new Janus.Windows.EditControls.UICheckBox();
     this.label43 = new System.Windows.Forms.Label();
     this.chkkbCungMacMatVangKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chkkbCungMacMatVangCo = new Janus.Windows.EditControls.UICheckBox();
     this.label42 = new System.Windows.Forms.Label();
     this.chkkbDaNongAmKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chkkbDaNongAmCo = new Janus.Windows.EditControls.UICheckBox();
     this.label41 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.HOIBENH = new Janus.Windows.EditControls.UIGroupBox();
     this.label34 = new System.Windows.Forms.Label();
     this.chkKinhNguyetKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chkKinhNguyetDeu = new Janus.Windows.EditControls.UICheckBox();
     this.label33 = new System.Windows.Forms.Label();
     this.chkBenhLyDaDayKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chkBenhLyDaDayCo = new Janus.Windows.EditControls.UICheckBox();
     this.label97 = new System.Windows.Forms.Label();
     this.chktsbHenPheQuanKhong = new Janus.Windows.EditControls.UICheckBox();
     this.chktsbHenPheQuanCo = new Janus.Windows.EditControls.UICheckBox();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.txthbKhac = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtSoLanDiNgoai = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label27 = new System.Windows.Forms.Label();
     this.txtTinhChatPhan = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label24 = new System.Windows.Forms.Label();
     this.chkRoiLoanTieuHoa = new Janus.Windows.EditControls.UICheckBox();
     this.chkNguoiNongBung = new Janus.Windows.EditControls.UICheckBox();
     this.label23 = new System.Windows.Forms.Label();
     this.txtThuocDieuTri5 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtThuocDieuTri3 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txtThuocDieuTri4 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label96 = new System.Windows.Forms.Label();
     this.txtThuocDieuTri1 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.txttsgdKhac = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label64 = new System.Windows.Forms.Label();
     this.chktsgdBuouCo = new Janus.Windows.EditControls.UICheckBox();
     this.chktsgdBasedow = new Janus.Windows.EditControls.UICheckBox();
     this.label39 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.txttsbKhac = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.chkhbMatLoi = new Janus.Windows.EditControls.UICheckBox();
     this.label30 = new System.Windows.Forms.Label();
     this.chkhbVungTGto = new Janus.Windows.EditControls.UICheckBox();
     this.txthbKgSau = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label26 = new System.Windows.Forms.Label();
     this.txthbKgDau = new Janus.Windows.GridEX.EditControls.EditBox();
     this.chkhbRunchantay = new Janus.Windows.EditControls.UICheckBox();
     this.chkhbGaySutCan = new Janus.Windows.EditControls.UICheckBox();
     this.chkhbMetMoi = new Janus.Windows.EditControls.UICheckBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txtThuocDieuTri2 = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.chkhbKhongDeu = new Janus.Windows.EditControls.UICheckBox();
     this.chkhbDeu = new Janus.Windows.EditControls.UICheckBox();
     this.label18 = new System.Windows.Forms.Label();
     this.txtNoiChanDoanBasedow = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label17 = new System.Windows.Forms.Label();
     this.TG_txtNamChanDoanBasedow = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.LDVV = new Janus.Windows.EditControls.UIGroupBox();
     this.TG_ldvvMatLoi = new Janus.Windows.EditControls.UICheckBox();
     this.TG_chkldvvKhac = new Janus.Windows.EditControls.UICheckBox();
     this.TG_chkldvvCoTo = new Janus.Windows.EditControls.UICheckBox();
     this.TG_chkldvvRCT = new Janus.Windows.EditControls.UICheckBox();
     this.TG_chkldvvGay = new Janus.Windows.EditControls.UICheckBox();
     this.TG_chkldvvMetMoi = new Janus.Windows.EditControls.UICheckBox();
     this.cmdSave = new Janus.Windows.EditControls.UIButton();
     this.chkDongSauKhiLuu = new System.Windows.Forms.CheckBox();
     this.cmdInBenhAn = new System.Windows.Forms.Button();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.label93 = new System.Windows.Forms.Label();
     this.cmdDelete = new System.Windows.Forms.Button();
     this.chkInNgay = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.label94 = new System.Windows.Forms.Label();
     this.label95 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).BeginInit();
     this.grpThongTinBenhNhan.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KHAMBENH)).BeginInit();
     this.KHAMBENH.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.HOIBENH)).BeginInit();
     this.HOIBENH.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LDVV)).BeginInit();
     this.LDVV.SuspendLayout();
     this.SuspendLayout();
     //
     // grpThongTinBenhNhan
     //
     this.grpThongTinBenhNhan.Controls.Add(this.uiButton1);
     this.grpThongTinBenhNhan.Controls.Add(this.txtID_BA);
     this.grpThongTinBenhNhan.Controls.Add(this.txtSoKham);
     this.grpThongTinBenhNhan.Controls.Add(this.label87);
     this.grpThongTinBenhNhan.Controls.Add(this.dtInsToDate);
     this.grpThongTinBenhNhan.Controls.Add(this.dtThoiDiemDkKham);
     this.grpThongTinBenhNhan.Controls.Add(this.txtSoBaoHiemYte);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDienThoai);
     this.grpThongTinBenhNhan.Controls.Add(this.label13);
     this.grpThongTinBenhNhan.Controls.Add(this.chkTuDen);
     this.grpThongTinBenhNhan.Controls.Add(this.chkYTe);
     this.grpThongTinBenhNhan.Controls.Add(this.label12);
     this.grpThongTinBenhNhan.Controls.Add(this.label11);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBenhAn);
     this.grpThongTinBenhNhan.Controls.Add(this.label10);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaLanKham);
     this.grpThongTinBenhNhan.Controls.Add(this.label9);
     this.grpThongTinBenhNhan.Controls.Add(this.txtMaBN);
     this.grpThongTinBenhNhan.Controls.Add(this.label8);
     this.grpThongTinBenhNhan.Controls.Add(this.txtChanDoanBanDau);
     this.grpThongTinBenhNhan.Controls.Add(this.label7);
     this.grpThongTinBenhNhan.Controls.Add(this.label6);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThongTinLienHe);
     this.grpThongTinBenhNhan.Controls.Add(this.label5);
     this.grpThongTinBenhNhan.Controls.Add(this.txtClinicCode);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsObject_CodeTP);
     this.grpThongTinBenhNhan.Controls.Add(this.txtOThu6);
     this.grpThongTinBenhNhan.Controls.Add(this.txtOThu5);
     this.grpThongTinBenhNhan.Controls.Add(this.txtOThuTu);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsCodeTP);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsNumber);
     this.grpThongTinBenhNhan.Controls.Add(this.label16);
     this.grpThongTinBenhNhan.Controls.Add(this.txtInsObjectCode);
     this.grpThongTinBenhNhan.Controls.Add(this.label4);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDoiTuong);
     this.grpThongTinBenhNhan.Controls.Add(this.label3);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNoiLamViec);
     this.grpThongTinBenhNhan.Controls.Add(this.label2);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDiaChi);
     this.grpThongTinBenhNhan.Controls.Add(this.label1);
     this.grpThongTinBenhNhan.Controls.Add(this.chkNgoaiKieu);
     this.grpThongTinBenhNhan.Controls.Add(this.txtDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.lblDanToc);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.cboGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgheNghiep);
     this.grpThongTinBenhNhan.Controls.Add(this.lblGioiTinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNamSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtThangSinh);
     this.grpThongTinBenhNhan.Controls.Add(this.txtNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblNgaySinh);
     this.grpThongTinBenhNhan.Controls.Add(this.lblTenBn);
     this.grpThongTinBenhNhan.Controls.Add(this.txtHoTen);
     this.grpThongTinBenhNhan.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpThongTinBenhNhan.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpThongTinBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("grpThongTinBenhNhan.Image")));
     this.grpThongTinBenhNhan.Location = new System.Drawing.Point(0, 0);
     this.grpThongTinBenhNhan.Name = "grpThongTinBenhNhan";
     this.grpThongTinBenhNhan.Size = new System.Drawing.Size(871, 322);
     this.grpThongTinBenhNhan.TabIndex = 0;
     this.grpThongTinBenhNhan.Text = "I.THÔNG TIN BỆNH NHÂN";
     //
     // uiButton1
     //
     this.uiButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiButton1.Location = new System.Drawing.Point(771, 21);
     this.uiButton1.Name = "uiButton1";
     this.uiButton1.Size = new System.Drawing.Size(63, 31);
     this.uiButton1.TabIndex = 582;
     this.uiButton1.TabStop = false;
     this.uiButton1.Text = "Tìm";
     //
     // txtID_BA
     //
     this.txtID_BA.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtID_BA.Location = new System.Drawing.Point(815, 191);
     this.txtID_BA.Name = "txtID_BA";
     this.txtID_BA.ReadOnly = true;
     this.txtID_BA.Size = new System.Drawing.Size(51, 20);
     this.txtID_BA.TabIndex = 456;
     this.txtID_BA.TabStop = false;
     this.txtID_BA.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtID_BA.Visible = false;
     //
     // txtSoKham
     //
     this.txtSoKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoKham.Location = new System.Drawing.Point(817, 169);
     this.txtSoKham.Name = "txtSoKham";
     this.txtSoKham.ReadOnly = true;
     this.txtSoKham.Size = new System.Drawing.Size(51, 20);
     this.txtSoKham.TabIndex = 455;
     this.txtSoKham.TabStop = false;
     this.txtSoKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtSoKham.Visible = false;
     //
     // label87
     //
     this.label87.AutoSize = true;
     this.label87.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label87.Location = new System.Drawing.Point(754, 175);
     this.label87.Name = "label87";
     this.label87.Size = new System.Drawing.Size(57, 13);
     this.label87.TabIndex = 454;
     this.label87.Text = "Số Khám";
     this.label87.Visible = false;
     //
     // dtInsToDate
     //
     this.dtInsToDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtInsToDate.Location = new System.Drawing.Point(333, 167);
     this.dtInsToDate.Name = "dtInsToDate";
     this.dtInsToDate.Size = new System.Drawing.Size(168, 20);
     this.dtInsToDate.TabIndex = 453;
     this.dtInsToDate.TabStop = false;
     //
     // dtThoiDiemDkKham
     //
     this.dtThoiDiemDkKham.CustomFormat = "dd/MM/yyyy";
     this.dtThoiDiemDkKham.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtThoiDiemDkKham.DropDownCalendar.FirstMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dtThoiDiemDkKham.DropDownCalendar.Name = "";
     this.dtThoiDiemDkKham.Location = new System.Drawing.Point(185, 222);
     this.dtThoiDiemDkKham.Name = "dtThoiDiemDkKham";
     this.dtThoiDiemDkKham.ShowUpDown = true;
     this.dtThoiDiemDkKham.Size = new System.Drawing.Size(192, 20);
     this.dtThoiDiemDkKham.TabIndex = 452;
     this.dtThoiDiemDkKham.TabStop = false;
     this.dtThoiDiemDkKham.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
     //
     // txtSoBaoHiemYte
     //
     this.txtSoBaoHiemYte.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoBaoHiemYte.Location = new System.Drawing.Point(185, 193);
     this.txtSoBaoHiemYte.Name = "txtSoBaoHiemYte";
     this.txtSoBaoHiemYte.Size = new System.Drawing.Size(192, 20);
     this.txtSoBaoHiemYte.TabIndex = 451;
     this.txtSoBaoHiemYte.TabStop = false;
     //
     // txtDienThoai
     //
     this.txtDienThoai.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDienThoai.Location = new System.Drawing.Point(600, 247);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(225, 20);
     this.txtDienThoai.TabIndex = 6;
     this.txtDienThoai.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtDienThoai.TextChanged += new System.EventHandler(this.txtDienThoai_TextChanged);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(518, 250);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(83, 13);
     this.label13.TabIndex = 449;
     this.label13.Text = "Số điện thoại";
     //
     // chkTuDen
     //
     this.chkTuDen.ImageAlignment = Janus.Windows.EditControls.ImageHorizontalAlignment.AfterText;
     this.chkTuDen.Location = new System.Drawing.Point(745, 273);
     this.chkTuDen.Name = "chkTuDen";
     this.chkTuDen.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkTuDen.Size = new System.Drawing.Size(76, 23);
     this.chkTuDen.TabIndex = 448;
     this.chkTuDen.TabStop = false;
     this.chkTuDen.Text = "Tự đến";
     //
     // chkYTe
     //
     this.chkYTe.Location = new System.Drawing.Point(696, 273);
     this.chkYTe.Name = "chkYTe";
     this.chkYTe.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkYTe.Size = new System.Drawing.Size(47, 23);
     this.chkYTe.TabIndex = 447;
     this.chkYTe.TabStop = false;
     this.chkYTe.Text = "Y tế";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(709, 66);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(32, 13);
     this.label12.TabIndex = 446;
     this.label12.Text = "Năm";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(636, 66);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(43, 13);
     this.label11.TabIndex = 445;
     this.label11.Text = "Tháng";
     //
     // txtMaBenhAn
     //
     this.txtMaBenhAn.BackColor = System.Drawing.Color.Turquoise;
     this.txtMaBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBenhAn.Location = new System.Drawing.Point(609, 21);
     this.txtMaBenhAn.Name = "txtMaBenhAn";
     this.txtMaBenhAn.Size = new System.Drawing.Size(130, 31);
     this.txtMaBenhAn.TabIndex = 13;
     this.txtMaBenhAn.TabStop = false;
     this.txtMaBenhAn.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(518, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 16);
     this.label10.TabIndex = 443;
     this.label10.Text = "Mã Bệnh Án";
     //
     // txtMaLanKham
     //
     this.txtMaLanKham.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.txtMaLanKham.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaLanKham.Location = new System.Drawing.Point(353, 22);
     this.txtMaLanKham.Name = "txtMaLanKham";
     this.txtMaLanKham.Size = new System.Drawing.Size(148, 31);
     this.txtMaLanKham.TabIndex = 442;
     this.txtMaLanKham.TabStop = false;
     this.txtMaLanKham.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(227, 28);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(100, 16);
     this.label9.TabIndex = 441;
     this.label9.Text = "Mã Lần Khám";
     //
     // txtMaBN
     //
     this.txtMaBN.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.txtMaBN.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMaBN.Location = new System.Drawing.Point(123, 22);
     this.txtMaBN.Name = "txtMaBN";
     this.txtMaBN.Size = new System.Drawing.Size(88, 31);
     this.txtMaBN.TabIndex = 0;
     this.txtMaBN.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(16, 30);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(108, 16);
     this.label8.TabIndex = 439;
     this.label8.Text = "Mã Bệnh Nhân";
     //
     // txtChanDoanBanDau
     //
     this.txtChanDoanBanDau.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChanDoanBanDau.Location = new System.Drawing.Point(185, 274);
     this.txtChanDoanBanDau.Name = "txtChanDoanBanDau";
     this.txtChanDoanBanDau.Size = new System.Drawing.Size(505, 20);
     this.txtChanDoanBanDau.TabIndex = 7;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(17, 279);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(146, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Chẩn đoán nơi giới thiệu";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(17, 224);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(118, 13);
     this.label6.TabIndex = 433;
     this.label6.Text = "Đến Khám bệnh lúc";
     //
     // txtThongTinLienHe
     //
     this.txtThongTinLienHe.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThongTinLienHe.Location = new System.Drawing.Point(185, 247);
     this.txtThongTinLienHe.Name = "txtThongTinLienHe";
     this.txtThongTinLienHe.Size = new System.Drawing.Size(310, 20);
     this.txtThongTinLienHe.TabIndex = 5;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(17, 251);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(156, 13);
     this.label5.TabIndex = 431;
     this.label5.Text = "Họ Tên, địa chỉ người nhà";
     //
     // txtClinicCode
     //
     this.txtClinicCode.BackColor = System.Drawing.Color.White;
     this.txtClinicCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtClinicCode.Location = new System.Drawing.Point(765, 191);
     this.txtClinicCode.MaxLength = 5;
     this.txtClinicCode.Name = "txtClinicCode";
     this.txtClinicCode.Size = new System.Drawing.Size(44, 23);
     this.txtClinicCode.TabIndex = 429;
     this.txtClinicCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtClinicCode.Visible = false;
     //
     // txtInsObject_CodeTP
     //
     this.txtInsObject_CodeTP.BackColor = System.Drawing.Color.White;
     this.txtInsObject_CodeTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsObject_CodeTP.Location = new System.Drawing.Point(711, 191);
     this.txtInsObject_CodeTP.MaxLength = 2;
     this.txtInsObject_CodeTP.Name = "txtInsObject_CodeTP";
     this.txtInsObject_CodeTP.Numeric = true;
     this.txtInsObject_CodeTP.Size = new System.Drawing.Size(55, 23);
     this.txtInsObject_CodeTP.TabIndex = 428;
     this.txtInsObject_CodeTP.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsObject_CodeTP.Visible = false;
     //
     // txtOThu6
     //
     this.txtOThu6.BackColor = System.Drawing.Color.White;
     this.txtOThu6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOThu6.Location = new System.Drawing.Point(650, 191);
     this.txtOThu6.MaxLength = 5;
     this.txtOThu6.Name = "txtOThu6";
     this.txtOThu6.Numeric = true;
     this.txtOThu6.Size = new System.Drawing.Size(63, 23);
     this.txtOThu6.TabIndex = 427;
     this.txtOThu6.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtOThu6.Visible = false;
     //
     // txtOThu5
     //
     this.txtOThu5.BackColor = System.Drawing.Color.White;
     this.txtOThu5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOThu5.Location = new System.Drawing.Point(613, 191);
     this.txtOThu5.MaxLength = 3;
     this.txtOThu5.Name = "txtOThu5";
     this.txtOThu5.Numeric = true;
     this.txtOThu5.Size = new System.Drawing.Size(38, 23);
     this.txtOThu5.TabIndex = 426;
     this.txtOThu5.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtOThu5.Visible = false;
     //
     // txtOThuTu
     //
     this.txtOThuTu.BackColor = System.Drawing.Color.White;
     this.txtOThuTu.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOThuTu.Location = new System.Drawing.Point(586, 191);
     this.txtOThuTu.MaxLength = 2;
     this.txtOThuTu.Name = "txtOThuTu";
     this.txtOThuTu.Numeric = true;
     this.txtOThuTu.Size = new System.Drawing.Size(28, 23);
     this.txtOThuTu.TabIndex = 425;
     this.txtOThuTu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtOThuTu.Visible = false;
     //
     // txtInsCodeTP
     //
     this.txtInsCodeTP.BackColor = System.Drawing.Color.White;
     this.txtInsCodeTP.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsCodeTP.Location = new System.Drawing.Point(559, 191);
     this.txtInsCodeTP.MaxLength = 2;
     this.txtInsCodeTP.Name = "txtInsCodeTP";
     this.txtInsCodeTP.Numeric = true;
     this.txtInsCodeTP.Size = new System.Drawing.Size(28, 23);
     this.txtInsCodeTP.TabIndex = 424;
     this.txtInsCodeTP.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsCodeTP.Visible = false;
     //
     // txtInsNumber
     //
     this.txtInsNumber.BackColor = System.Drawing.Color.White;
     this.txtInsNumber.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsNumber.Location = new System.Drawing.Point(536, 191);
     this.txtInsNumber.MaxLength = 1;
     this.txtInsNumber.Name = "txtInsNumber";
     this.txtInsNumber.Numeric = true;
     this.txtInsNumber.Size = new System.Drawing.Size(24, 23);
     this.txtInsNumber.TabIndex = 423;
     this.txtInsNumber.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsNumber.Visible = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(16, 198);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(59, 13);
     this.label16.TabIndex = 430;
     this.label16.Text = "&Số BHYT";
     //
     // txtInsObjectCode
     //
     this.txtInsObjectCode.BackColor = System.Drawing.Color.White;
     this.txtInsObjectCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtInsObjectCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInsObjectCode.Location = new System.Drawing.Point(491, 191);
     this.txtInsObjectCode.MaxLength = 2;
     this.txtInsObjectCode.Name = "txtInsObjectCode";
     this.txtInsObjectCode.Size = new System.Drawing.Size(46, 23);
     this.txtInsObjectCode.TabIndex = 422;
     this.txtInsObjectCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtInsObjectCode.Visible = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(198, 172);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(137, 13);
     this.label4.TabIndex = 20;
     this.label4.Text = "BHYT:giá trị đến ngày ";
     //
     // txtDoiTuong
     //
     this.txtDoiTuong.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDoiTuong.Location = new System.Drawing.Point(123, 168);
     this.txtDoiTuong.Name = "txtDoiTuong";
     this.txtDoiTuong.Size = new System.Drawing.Size(75, 20);
     this.txtDoiTuong.TabIndex = 19;
     this.txtDoiTuong.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 172);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(66, 13);
     this.label3.TabIndex = 18;
     this.label3.Text = "Đối Tượng";
     //
     // txtNoiLamViec
     //
     this.txtNoiLamViec.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNoiLamViec.Location = new System.Drawing.Point(609, 137);
     this.txtNoiLamViec.Name = "txtNoiLamViec";
     this.txtNoiLamViec.Size = new System.Drawing.Size(225, 20);
     this.txtNoiLamViec.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(518, 144);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(82, 13);
     this.label2.TabIndex = 16;
     this.label2.Text = "Nơi Làm Việc";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiaChi.Location = new System.Drawing.Point(123, 141);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.ReadOnly = true;
     this.txtDiaChi.Size = new System.Drawing.Size(378, 20);
     this.txtDiaChi.TabIndex = 15;
     this.txtDiaChi.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(17, 145);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 14;
     this.label1.Text = "Địa Chỉ";
     //
     // chkNgoaiKieu
     //
     this.chkNgoaiKieu.Location = new System.Drawing.Point(753, 105);
     this.chkNgoaiKieu.Name = "chkNgoaiKieu";
     this.chkNgoaiKieu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkNgoaiKieu.Size = new System.Drawing.Size(81, 23);
     this.chkNgoaiKieu.TabIndex = 3;
     this.chkNgoaiKieu.TabStop = false;
     this.chkNgoaiKieu.Text = "Ngoại kiểu";
     //
     // txtDanToc
     //
     this.txtDanToc.Location = new System.Drawing.Point(609, 108);
     this.txtDanToc.Name = "txtDanToc";
     this.txtDanToc.Size = new System.Drawing.Size(135, 20);
     this.txtDanToc.TabIndex = 2;
     //
     // lblDanToc
     //
     this.lblDanToc.AutoSize = true;
     this.lblDanToc.Location = new System.Drawing.Point(518, 111);
     this.lblDanToc.Name = "lblDanToc";
     this.lblDanToc.Size = new System.Drawing.Size(56, 13);
     this.lblDanToc.TabIndex = 10;
     this.lblDanToc.Text = "Dân Tộc";
     //
     // lblNgheNghiep
     //
     this.lblNgheNghiep.AutoSize = true;
     this.lblNgheNghiep.Location = new System.Drawing.Point(198, 114);
     this.lblNgheNghiep.Name = "lblNgheNghiep";
     this.lblNgheNghiep.Size = new System.Drawing.Size(81, 13);
     this.lblNgheNghiep.TabIndex = 9;
     this.lblNgheNghiep.Text = "Nghề Nghiệp";
     //
     // cboGioiTinh
     //
     this.cboGioiTinh.ComboStyle = Janus.Windows.EditControls.ComboStyle.DropDownList;
     this.cboGioiTinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     uiComboBoxItem1.FormatStyle.Alpha = 0;
     uiComboBoxItem1.IsSeparator = false;
     uiComboBoxItem1.Text = "Nữ";
     uiComboBoxItem1.Value = 1;
     uiComboBoxItem2.FormatStyle.Alpha = 0;
     uiComboBoxItem2.IsSeparator = false;
     uiComboBoxItem2.Text = "Nam";
     uiComboBoxItem2.Value = 0;
     uiComboBoxItem3.FormatStyle.Alpha = 0;
     uiComboBoxItem3.IsSeparator = false;
     uiComboBoxItem3.Text = "Khác";
     uiComboBoxItem3.Value = 2;
     this.cboGioiTinh.Items.AddRange(new Janus.Windows.EditControls.UIComboBoxItem[] {
     uiComboBoxItem1,
     uiComboBoxItem2,
     uiComboBoxItem3});
     this.cboGioiTinh.Location = new System.Drawing.Point(123, 110);
     this.cboGioiTinh.Name = "cboGioiTinh";
     this.cboGioiTinh.Size = new System.Drawing.Size(75, 21);
     this.cboGioiTinh.TabIndex = 8;
     this.cboGioiTinh.TabStop = false;
     this.cboGioiTinh.Text = "Giới tính";
     //
     // txtNgheNghiep
     //
     this.txtNgheNghiep.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNgheNghiep.Location = new System.Drawing.Point(293, 111);
     this.txtNgheNghiep.Name = "txtNgheNghiep";
     this.txtNgheNghiep.ReadOnly = true;
     this.txtNgheNghiep.Size = new System.Drawing.Size(208, 20);
     this.txtNgheNghiep.TabIndex = 7;
     this.txtNgheNghiep.TabStop = false;
     //
     // lblGioiTinh
     //
     this.lblGioiTinh.AutoSize = true;
     this.lblGioiTinh.Location = new System.Drawing.Point(17, 116);
     this.lblGioiTinh.Name = "lblGioiTinh";
     this.lblGioiTinh.Size = new System.Drawing.Size(64, 13);
     this.lblGioiTinh.TabIndex = 6;
     this.lblGioiTinh.Text = "Giới Tính ";
     //
     // txtNamSinh
     //
     this.txtNamSinh.Location = new System.Drawing.Point(744, 61);
     this.txtNamSinh.Name = "txtNamSinh";
     this.txtNamSinh.Size = new System.Drawing.Size(90, 20);
     this.txtNamSinh.TabIndex = 5;
     this.txtNamSinh.TabStop = false;
     this.txtNamSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Far;
     //
     // txtThangSinh
     //
     this.txtThangSinh.Location = new System.Drawing.Point(680, 63);
     this.txtThangSinh.Name = "txtThangSinh";
     this.txtThangSinh.Size = new System.Drawing.Size(25, 20);
     this.txtThangSinh.TabIndex = 1;
     this.txtThangSinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Location = new System.Drawing.Point(609, 63);
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Size = new System.Drawing.Size(25, 20);
     this.txtNgaySinh.TabIndex = 0;
     this.txtNgaySinh.TextAlignment = Janus.Windows.GridEX.TextAlignment.Near;
     //
     // lblNgaySinh
     //
     this.lblNgaySinh.AutoSize = true;
     this.lblNgaySinh.Location = new System.Drawing.Point(518, 68);
     this.lblNgaySinh.Name = "lblNgaySinh";
     this.lblNgaySinh.Size = new System.Drawing.Size(65, 13);
     this.lblNgaySinh.TabIndex = 2;
     this.lblNgaySinh.Text = "Ngày Sinh";
     //
     // lblTenBn
     //
     this.lblTenBn.AutoSize = true;
     this.lblTenBn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTenBn.Location = new System.Drawing.Point(16, 78);
     this.lblTenBn.Name = "lblTenBn";
     this.lblTenBn.Size = new System.Drawing.Size(59, 16);
     this.lblTenBn.TabIndex = 1;
     this.lblTenBn.Text = "Họ Tên";
     //
     // txtHoTen
     //
     this.txtHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHoTen.Location = new System.Drawing.Point(123, 65);
     this.txtHoTen.Name = "txtHoTen";
     this.txtHoTen.Size = new System.Drawing.Size(378, 31);
     this.txtHoTen.TabIndex = 0;
     this.txtHoTen.TabStop = false;
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.KHAMBENH);
     this.panel1.Controls.Add(this.HOIBENH);
     this.panel1.Controls.Add(this.LDVV);
     this.panel1.Controls.Add(this.grpThongTinBenhNhan);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(888, 517);
     this.panel1.TabIndex = 4;
     //
     // KHAMBENH
     //
     this.KHAMBENH.Controls.Add(this.txtkbHoHap);
     this.KHAMBENH.Controls.Add(this.label50);
     this.KHAMBENH.Controls.Add(this.chkbhLTThuyT);
     this.KHAMBENH.Controls.Add(this.chkhbLTThuyP);
     this.KHAMBENH.Controls.Add(this.label36);
     this.KHAMBENH.Controls.Add(this.chkThuyT);
     this.KHAMBENH.Controls.Add(this.chkhbThuyP);
     this.KHAMBENH.Controls.Add(this.label35);
     this.KHAMBENH.Controls.Add(this.chkhbBuouNhan2thuy);
     this.KHAMBENH.Controls.Add(this.chkhbBuouNhanThuyT);
     this.KHAMBENH.Controls.Add(this.chkbhBuouNhanThuyP);
     this.KHAMBENH.Controls.Add(this.chkkbBuouLanToa);
     this.KHAMBENH.Controls.Add(this.chkMatDoChac);
     this.KHAMBENH.Controls.Add(this.chkMatDoMem);
     this.KHAMBENH.Controls.Add(this.chklll);
     this.KHAMBENH.Controls.Add(this.chkll);
     this.KHAMBENH.Controls.Add(this.chklb);
     this.KHAMBENH.Controls.Add(this.chkla);
     this.KHAMBENH.Controls.Add(this.txtkbTomTatKQCLSC);
     this.KHAMBENH.Controls.Add(this.txtkbMa);
     this.KHAMBENH.Controls.Add(this.txtkbChanDoanRaVien);
     this.KHAMBENH.Controls.Add(this.uiGroupBox3);
     this.KHAMBENH.Controls.Add(this.dtDieuTriNgoaiTruDen);
     this.KHAMBENH.Controls.Add(this.label68);
     this.KHAMBENH.Controls.Add(this.dtDieuTriNgoaiTruTu);
     this.KHAMBENH.Controls.Add(this.label67);
     this.KHAMBENH.Controls.Add(this.label66);
     this.KHAMBENH.Controls.Add(this.label65);
     this.KHAMBENH.Controls.Add(this.TXTKBDaXuLy);
     this.KHAMBENH.Controls.Add(this.TXTKBChanDoanBD);
     this.KHAMBENH.Controls.Add(this.label63);
     this.KHAMBENH.Controls.Add(this.label62);
     this.KHAMBENH.Controls.Add(this.label61);
     this.KHAMBENH.Controls.Add(this.label60);
     this.KHAMBENH.Controls.Add(this.txtkbThanKinh);
     this.KHAMBENH.Controls.Add(this.label59);
     this.KHAMBENH.Controls.Add(this.txtkbBung);
     this.KHAMBENH.Controls.Add(this.label58);
     this.KHAMBENH.Controls.Add(this.txtkbMatTrai);
     this.KHAMBENH.Controls.Add(this.label57);
     this.KHAMBENH.Controls.Add(this.txtkbMatPhai);
     this.KHAMBENH.Controls.Add(this.label56);
     this.KHAMBENH.Controls.Add(this.label49);
     this.KHAMBENH.Controls.Add(this.txtkbTiengTim);
     this.KHAMBENH.Controls.Add(this.label48);
     this.KHAMBENH.Controls.Add(this.chkkbNhipTimKhong);
     this.KHAMBENH.Controls.Add(this.chkkbNhipTimDeu);
     this.KHAMBENH.Controls.Add(this.label47);
     this.KHAMBENH.Controls.Add(this.txtkbNhipTim);
     this.KHAMBENH.Controls.Add(this.label46);
     this.KHAMBENH.Controls.Add(this.label45);
     this.KHAMBENH.Controls.Add(this.txtkbKhac);
     this.KHAMBENH.Controls.Add(this.label44);
     this.KHAMBENH.Controls.Add(this.chkkbRunTayKhong);
     this.KHAMBENH.Controls.Add(this.chkkbRunTayCo);
     this.KHAMBENH.Controls.Add(this.label43);
     this.KHAMBENH.Controls.Add(this.chkkbCungMacMatVangKhong);
     this.KHAMBENH.Controls.Add(this.chkkbCungMacMatVangCo);
     this.KHAMBENH.Controls.Add(this.label42);
     this.KHAMBENH.Controls.Add(this.chkkbDaNongAmKhong);
     this.KHAMBENH.Controls.Add(this.chkkbDaNongAmCo);
     this.KHAMBENH.Controls.Add(this.label41);
     this.KHAMBENH.Controls.Add(this.label40);
     this.KHAMBENH.Dock = System.Windows.Forms.DockStyle.Top;
     this.KHAMBENH.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.KHAMBENH.Location = new System.Drawing.Point(0, 669);
     this.KHAMBENH.Name = "KHAMBENH";
     this.KHAMBENH.Size = new System.Drawing.Size(871, 539);
     this.KHAMBENH.TabIndex = 4;
     this.KHAMBENH.Text = "IV. KHÁM BỆNH";
     //
     // txtkbHoHap
     //
     this.txtkbHoHap.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbHoHap.Location = new System.Drawing.Point(93, 263);
     this.txtkbHoHap.Name = "txtkbHoHap";
     this.txtkbHoHap.Size = new System.Drawing.Size(532, 22);
     this.txtkbHoHap.TabIndex = 77;
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label50.Location = new System.Drawing.Point(12, 267);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(58, 16);
     this.label50.TabIndex = 600;
     this.label50.Text = "Hô hấp: ";
     //
     // chkbhLTThuyT
     //
     this.chkbhLTThuyT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkbhLTThuyT.Location = new System.Drawing.Point(442, 146);
     this.chkbhLTThuyT.Name = "chkbhLTThuyT";
     this.chkbhLTThuyT.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkbhLTThuyT.Size = new System.Drawing.Size(65, 23);
     this.chkbhLTThuyT.TabIndex = 72;
     this.chkbhLTThuyT.Text = "Thùy T";
     this.chkbhLTThuyT.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkhbLTThuyP
     //
     this.chkhbLTThuyP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkhbLTThuyP.Location = new System.Drawing.Point(365, 146);
     this.chkhbLTThuyP.Name = "chkhbLTThuyP";
     this.chkhbLTThuyP.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbLTThuyP.Size = new System.Drawing.Size(65, 23);
     this.chkhbLTThuyP.TabIndex = 71;
     this.chkhbLTThuyP.Text = "Thùy P";
     this.chkhbLTThuyP.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(275, 150);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(89, 16);
     this.label36.TabIndex = 596;
     this.label36.Text = "Tiếng thổi LT:";
     //
     // chkThuyT
     //
     this.chkThuyT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkThuyT.Location = new System.Drawing.Point(187, 146);
     this.chkThuyT.Name = "chkThuyT";
     this.chkThuyT.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkThuyT.Size = new System.Drawing.Size(65, 23);
     this.chkThuyT.TabIndex = 70;
     this.chkThuyT.Text = "Thùy T";
     this.chkThuyT.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkhbThuyP
     //
     this.chkhbThuyP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkhbThuyP.Location = new System.Drawing.Point(110, 146);
     this.chkhbThuyP.Name = "chkhbThuyP";
     this.chkhbThuyP.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbThuyP.Size = new System.Drawing.Size(65, 23);
     this.chkhbThuyP.TabIndex = 69;
     this.chkhbThuyP.Text = "Thùy P";
     this.chkhbThuyP.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(13, 150);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(91, 16);
     this.label35.TabIndex = 593;
     this.label35.Text = "Tiếng thổi TT:";
     //
     // chkhbBuouNhan2thuy
     //
     this.chkhbBuouNhan2thuy.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkhbBuouNhan2thuy.Location = new System.Drawing.Point(427, 114);
     this.chkhbBuouNhan2thuy.Name = "chkhbBuouNhan2thuy";
     this.chkhbBuouNhan2thuy.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbBuouNhan2thuy.Size = new System.Drawing.Size(128, 23);
     this.chkhbBuouNhan2thuy.TabIndex = 68;
     this.chkhbBuouNhan2thuy.Text = "Bướu nhân 2 thùy";
     this.chkhbBuouNhan2thuy.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkhbBuouNhanThuyT
     //
     this.chkhbBuouNhanThuyT.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkhbBuouNhanThuyT.Location = new System.Drawing.Point(275, 114);
     this.chkhbBuouNhanThuyT.Name = "chkhbBuouNhanThuyT";
     this.chkhbBuouNhanThuyT.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbBuouNhanThuyT.Size = new System.Drawing.Size(128, 23);
     this.chkhbBuouNhanThuyT.TabIndex = 67;
     this.chkhbBuouNhanThuyT.Text = "Bướu nhân thùy T";
     this.chkhbBuouNhanThuyT.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkbhBuouNhanThuyP
     //
     this.chkbhBuouNhanThuyP.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkbhBuouNhanThuyP.Location = new System.Drawing.Point(123, 114);
     this.chkbhBuouNhanThuyP.Name = "chkbhBuouNhanThuyP";
     this.chkbhBuouNhanThuyP.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkbhBuouNhanThuyP.Size = new System.Drawing.Size(128, 23);
     this.chkbhBuouNhanThuyP.TabIndex = 66;
     this.chkbhBuouNhanThuyP.Text = "Bướu nhân thùy P";
     this.chkbhBuouNhanThuyP.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkkbBuouLanToa
     //
     this.chkkbBuouLanToa.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkkbBuouLanToa.Location = new System.Drawing.Point(15, 114);
     this.chkkbBuouLanToa.Name = "chkkbBuouLanToa";
     this.chkkbBuouLanToa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbBuouLanToa.Size = new System.Drawing.Size(96, 23);
     this.chkkbBuouLanToa.TabIndex = 65;
     this.chkkbBuouLanToa.Text = "Bướu lan tỏa";
     this.chkkbBuouLanToa.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkMatDoChac
     //
     this.chkMatDoChac.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkMatDoChac.Location = new System.Drawing.Point(455, 81);
     this.chkMatDoChac.Name = "chkMatDoChac";
     this.chkMatDoChac.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkMatDoChac.Size = new System.Drawing.Size(59, 23);
     this.chkMatDoChac.TabIndex = 64;
     this.chkMatDoChac.Text = "Chắc";
     this.chkMatDoChac.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkMatDoMem
     //
     this.chkMatDoMem.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkMatDoMem.Location = new System.Drawing.Point(327, 81);
     this.chkMatDoMem.Name = "chkMatDoMem";
     this.chkMatDoMem.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkMatDoMem.Size = new System.Drawing.Size(103, 23);
     this.chkMatDoMem.TabIndex = 63;
     this.chkMatDoMem.Text = "Mật độ; Mềm";
     this.chkMatDoMem.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chklll
     //
     this.chklll.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chklll.Location = new System.Drawing.Point(266, 83);
     this.chklll.Name = "chklll";
     this.chklll.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chklll.Size = new System.Drawing.Size(31, 23);
     this.chklll.TabIndex = 62;
     this.chklll.Text = "lll";
     this.chklll.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkll
     //
     this.chkll.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkll.Location = new System.Drawing.Point(208, 81);
     this.chkll.Name = "chkll";
     this.chkll.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkll.Size = new System.Drawing.Size(31, 23);
     this.chkll.TabIndex = 61;
     this.chkll.Text = "ll";
     this.chkll.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chklb
     //
     this.chklb.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chklb.Location = new System.Drawing.Point(150, 81);
     this.chklb.Name = "chklb";
     this.chklb.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chklb.Size = new System.Drawing.Size(31, 23);
     this.chklb.TabIndex = 60;
     this.chklb.Text = "lb";
     this.chklb.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // chkla
     //
     this.chkla.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkla.Location = new System.Drawing.Point(93, 81);
     this.chkla.Name = "chkla";
     this.chkla.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkla.Size = new System.Drawing.Size(31, 23);
     this.chkla.TabIndex = 59;
     this.chkla.Text = "la";
     this.chkla.TextAlignment = Janus.Windows.EditControls.TextAlignment.Far;
     //
     // txtkbTomTatKQCLSC
     //
     this.txtkbTomTatKQCLSC.Location = new System.Drawing.Point(251, 293);
     this.txtkbTomTatKQCLSC.Name = "txtkbTomTatKQCLSC";
     this.txtkbTomTatKQCLSC.Size = new System.Drawing.Size(584, 39);
     this.txtkbTomTatKQCLSC.TabIndex = 78;
     this.txtkbTomTatKQCLSC.Text = "";
     //
     // txtkbMa
     //
     this.txtkbMa.Location = new System.Drawing.Point(636, 395);
     this.txtkbMa.Name = "txtkbMa";
     this.txtkbMa.Size = new System.Drawing.Size(198, 84);
     this.txtkbMa.TabIndex = 82;
     this.txtkbMa.Text = "";
     //
     // txtkbChanDoanRaVien
     //
     this.txtkbChanDoanRaVien.Location = new System.Drawing.Point(159, 395);
     this.txtkbChanDoanRaVien.Name = "txtkbChanDoanRaVien";
     this.txtkbChanDoanRaVien.Size = new System.Drawing.Size(424, 84);
     this.txtkbChanDoanRaVien.TabIndex = 81;
     this.txtkbChanDoanRaVien.Text = "";
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.txtBMI);
     this.uiGroupBox3.Controls.Add(this.txtChieuCao);
     this.uiGroupBox3.Controls.Add(this.txtCanNang);
     this.uiGroupBox3.Controls.Add(this.txtNhipTho);
     this.uiGroupBox3.Controls.Add(this.label83);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApDen);
     this.uiGroupBox3.Controls.Add(this.txtHuyetApTu);
     this.uiGroupBox3.Controls.Add(this.txtNhietDo);
     this.uiGroupBox3.Controls.Add(this.label82);
     this.uiGroupBox3.Controls.Add(this.label81);
     this.uiGroupBox3.Controls.Add(this.label80);
     this.uiGroupBox3.Controls.Add(this.label79);
     this.uiGroupBox3.Controls.Add(this.label78);
     this.uiGroupBox3.Controls.Add(this.label77);
     this.uiGroupBox3.Controls.Add(this.label76);
     this.uiGroupBox3.Controls.Add(this.txtMach);
     this.uiGroupBox3.Controls.Add(this.label75);
     this.uiGroupBox3.Controls.Add(this.label74);
     this.uiGroupBox3.Controls.Add(this.label73);
     this.uiGroupBox3.Controls.Add(this.label72);
     this.uiGroupBox3.Controls.Add(this.label71);
     this.uiGroupBox3.Controls.Add(this.label70);
     this.uiGroupBox3.Controls.Add(this.label69);
     this.uiGroupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(637, 49);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(206, 217);
     this.uiGroupBox3.TabIndex = 560;
     //
     // txtBMI
     //
     this.txtBMI.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBMI.Location = new System.Drawing.Point(44, 188);
     this.txtBMI.Name = "txtBMI";
     this.txtBMI.Size = new System.Drawing.Size(89, 20);
     this.txtBMI.TabIndex = 92;
     this.txtBMI.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtChieuCao
     //
     this.txtChieuCao.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtChieuCao.Location = new System.Drawing.Point(75, 164);
     this.txtChieuCao.Name = "txtChieuCao";
     this.txtChieuCao.Size = new System.Drawing.Size(80, 20);
     this.txtChieuCao.TabIndex = 91;
     this.txtChieuCao.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtCanNang
     //
     this.txtCanNang.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCanNang.Location = new System.Drawing.Point(75, 139);
     this.txtCanNang.Name = "txtCanNang";
     this.txtCanNang.Size = new System.Drawing.Size(80, 20);
     this.txtCanNang.TabIndex = 90;
     this.txtCanNang.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhipTho
     //
     this.txtNhipTho.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhipTho.Location = new System.Drawing.Point(66, 113);
     this.txtNhipTho.Name = "txtNhipTho";
     this.txtNhipTho.Size = new System.Drawing.Size(74, 20);
     this.txtNhipTho.TabIndex = 89;
     this.txtNhipTho.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label83
     //
     this.label83.AutoSize = true;
     this.label83.Location = new System.Drawing.Point(104, 87);
     this.label83.Name = "label83";
     this.label83.Size = new System.Drawing.Size(12, 16);
     this.label83.TabIndex = 578;
     this.label83.Text = "/";
     this.label83.Visible = false;
     //
     // txtHuyetApDen
     //
     this.txtHuyetApDen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApDen.Location = new System.Drawing.Point(120, 85);
     this.txtHuyetApDen.Name = "txtHuyetApDen";
     this.txtHuyetApDen.Size = new System.Drawing.Size(35, 20);
     this.txtHuyetApDen.TabIndex = 76;
     this.txtHuyetApDen.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txtHuyetApDen.Visible = false;
     //
     // txtHuyetApTu
     //
     this.txtHuyetApTu.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtHuyetApTu.Location = new System.Drawing.Point(71, 85);
     this.txtHuyetApTu.Name = "txtHuyetApTu";
     this.txtHuyetApTu.Size = new System.Drawing.Size(84, 20);
     this.txtHuyetApTu.TabIndex = 88;
     this.txtHuyetApTu.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // txtNhietDo
     //
     this.txtNhietDo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNhietDo.Location = new System.Drawing.Point(66, 55);
     this.txtNhietDo.Name = "txtNhietDo";
     this.txtNhietDo.Size = new System.Drawing.Size(89, 20);
     this.txtNhietDo.TabIndex = 87;
     this.txtNhietDo.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.Location = new System.Drawing.Point(146, 192);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(57, 16);
     this.label82.TabIndex = 574;
     this.label82.Text = "vòng eo";
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.Location = new System.Drawing.Point(174, 165);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(26, 16);
     this.label81.TabIndex = 573;
     this.label81.Text = "cm";
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.Location = new System.Drawing.Point(174, 140);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(24, 16);
     this.label80.TabIndex = 572;
     this.label80.Text = "Kg";
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.Location = new System.Drawing.Point(146, 115);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(55, 16);
     this.label79.TabIndex = 571;
     this.label79.Text = "lần/phút";
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Location = new System.Drawing.Point(158, 87);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(48, 16);
     this.label78.TabIndex = 570;
     this.label78.Text = "mmHg";
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Location = new System.Drawing.Point(163, 57);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(37, 16);
     this.label77.TabIndex = 569;
     this.label77.Text = "Độ C";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(145, 26);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(55, 16);
     this.label76.TabIndex = 568;
     this.label76.Text = "lần/phút";
     //
     // txtMach
     //
     this.txtMach.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMach.Location = new System.Drawing.Point(58, 25);
     this.txtMach.Name = "txtMach";
     this.txtMach.Size = new System.Drawing.Size(82, 20);
     this.txtMach.TabIndex = 86;
     this.txtMach.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(5, 192);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(34, 16);
     this.label75.TabIndex = 567;
     this.label75.Text = "BMI:";
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(5, 165);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(71, 16);
     this.label74.TabIndex = 566;
     this.label74.Text = "Chiều cao:";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Location = new System.Drawing.Point(5, 140);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(68, 16);
     this.label73.TabIndex = 565;
     this.label73.Text = "Cân nặng:";
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(4, 114);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(63, 16);
     this.label72.TabIndex = 564;
     this.label72.Text = "Nhịp thở: ";
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Location = new System.Drawing.Point(4, 87);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(68, 16);
     this.label71.TabIndex = 563;
     this.label71.Text = "Huyết áp: ";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(3, 57);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(61, 16);
     this.label70.TabIndex = 562;
     this.label70.Text = "Nhiệt độ:";
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Location = new System.Drawing.Point(4, 29);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(44, 16);
     this.label69.TabIndex = 561;
     this.label69.Text = "Mạch:";
     //
     // dtDieuTriNgoaiTruDen
     //
     this.dtDieuTriNgoaiTruDen.CustomFormat = "dd/MM/yyyy";
     this.dtDieuTriNgoaiTruDen.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtDieuTriNgoaiTruDen.DropDownCalendar.FirstMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dtDieuTriNgoaiTruDen.DropDownCalendar.Name = "";
     this.dtDieuTriNgoaiTruDen.Location = new System.Drawing.Point(388, 485);
     this.dtDieuTriNgoaiTruDen.Name = "dtDieuTriNgoaiTruDen";
     this.dtDieuTriNgoaiTruDen.ShowUpDown = true;
     this.dtDieuTriNgoaiTruDen.Size = new System.Drawing.Size(109, 21);
     this.dtDieuTriNgoaiTruDen.TabIndex = 85;
     this.dtDieuTriNgoaiTruDen.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label68.Location = new System.Drawing.Point(314, 489);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(59, 15);
     this.label68.TabIndex = 558;
     this.label68.Text = "Đến ngày";
     //
     // dtDieuTriNgoaiTruTu
     //
     this.dtDieuTriNgoaiTruTu.CustomFormat = "dd/MM/yyyy";
     this.dtDieuTriNgoaiTruTu.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtDieuTriNgoaiTruTu.DropDownCalendar.FirstMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dtDieuTriNgoaiTruTu.DropDownCalendar.Name = "";
     this.dtDieuTriNgoaiTruTu.Location = new System.Drawing.Point(195, 485);
     this.dtDieuTriNgoaiTruTu.Name = "dtDieuTriNgoaiTruTu";
     this.dtDieuTriNgoaiTruTu.ShowUpDown = true;
     this.dtDieuTriNgoaiTruTu.Size = new System.Drawing.Size(109, 21);
     this.dtDieuTriNgoaiTruTu.TabIndex = 84;
     this.dtDieuTriNgoaiTruTu.Value = new System.DateTime(2013, 9, 23, 0, 0, 0, 0);
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label67.Location = new System.Drawing.Point(12, 487);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(182, 15);
     this.label67.TabIndex = 556;
     this.label67.Text = "- Điều trị ngoại trú từ ngày: ";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(597, 397);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(28, 15);
     this.label66.TabIndex = 554;
     this.label66.Text = "Mã:";
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label65.Location = new System.Drawing.Point(12, 394);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(154, 15);
     this.label65.TabIndex = 552;
     this.label65.Text = "Chẩn đoán khi ra viện: ";
     //
     // TXTKBDaXuLy
     //
     this.TXTKBDaXuLy.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TXTKBDaXuLy.Location = new System.Drawing.Point(187, 365);
     this.TXTKBDaXuLy.Name = "TXTKBDaXuLy";
     this.TXTKBDaXuLy.Size = new System.Drawing.Size(648, 20);
     this.TXTKBDaXuLy.TabIndex = 80;
     //
     // TXTKBChanDoanBD
     //
     this.TXTKBChanDoanBD.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TXTKBChanDoanBD.Location = new System.Drawing.Point(145, 338);
     this.TXTKBChanDoanBD.Name = "TXTKBChanDoanBD";
     this.TXTKBChanDoanBD.Size = new System.Drawing.Size(690, 20);
     this.TXTKBChanDoanBD.TabIndex = 79;
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.Location = new System.Drawing.Point(67, 365);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(114, 15);
     this.label63.TabIndex = 549;
     this.label63.Text = "(Thuốc, chăm sóc) :";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label62.Location = new System.Drawing.Point(12, 365);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(58, 15);
     this.label62.TabIndex = 548;
     this.label62.Text = "Đã xử lý";
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label61.Location = new System.Drawing.Point(12, 339);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(136, 15);
     this.label61.TabIndex = 547;
     this.label61.Text = "Chẩn đoán ban đầu:";
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label60.Location = new System.Drawing.Point(12, 293);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(239, 15);
     this.label60.TabIndex = 545;
     this.label60.Text = "Tóm tắt kết quả cận lâm sàng chính:";
     //
     // txtkbThanKinh
     //
     this.txtkbThanKinh.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbThanKinh.Location = new System.Drawing.Point(93, 231);
     this.txtkbThanKinh.Name = "txtkbThanKinh";
     this.txtkbThanKinh.Size = new System.Drawing.Size(532, 22);
     this.txtkbThanKinh.TabIndex = 76;
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label59.Location = new System.Drawing.Point(10, 237);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(73, 16);
     this.label59.TabIndex = 543;
     this.label59.Text = "Thần Kinh: ";
     //
     // txtkbBung
     //
     this.txtkbBung.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbBung.Location = new System.Drawing.Point(51, 203);
     this.txtkbBung.Name = "txtkbBung";
     this.txtkbBung.Size = new System.Drawing.Size(574, 22);
     this.txtkbBung.TabIndex = 75;
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label58.Location = new System.Drawing.Point(12, 206);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(45, 16);
     this.label58.TabIndex = 541;
     this.label58.Text = "Bụng: ";
     //
     // txtkbMatTrai
     //
     this.txtkbMatTrai.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbMatTrai.Location = new System.Drawing.Point(455, 175);
     this.txtkbMatTrai.Name = "txtkbMatTrai";
     this.txtkbMatTrai.Size = new System.Drawing.Size(170, 22);
     this.txtkbMatTrai.TabIndex = 74;
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label57.Location = new System.Drawing.Point(309, 177);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(141, 16);
     this.label57.TabIndex = 539;
     this.label57.Text = "Mắt trái NOSPECS độ:";
     //
     // txtkbMatPhai
     //
     this.txtkbMatPhai.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbMatPhai.Location = new System.Drawing.Point(167, 176);
     this.txtkbMatPhai.Name = "txtkbMatPhai";
     this.txtkbMatPhai.Size = new System.Drawing.Size(129, 22);
     this.txtkbMatPhai.TabIndex = 73;
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label56.Location = new System.Drawing.Point(12, 177);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(149, 16);
     this.label56.TabIndex = 537;
     this.label56.Text = "Mắt phải NOSPECS độ:";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label49.Location = new System.Drawing.Point(12, 85);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(82, 16);
     this.label49.TabIndex = 520;
     this.label49.Text = "Bướu cổ độ: ";
     //
     // txtkbTiengTim
     //
     this.txtkbTiengTim.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbTiengTim.Location = new System.Drawing.Point(495, 55);
     this.txtkbTiengTim.Name = "txtkbTiengTim";
     this.txtkbTiengTim.Size = new System.Drawing.Size(130, 20);
     this.txtkbTiengTim.TabIndex = 58;
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(436, 56);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(61, 15);
     this.label48.TabIndex = 518;
     this.label48.Text = "Tiếng tim:";
     //
     // chkkbNhipTimKhong
     //
     this.chkkbNhipTimKhong.Location = new System.Drawing.Point(347, 54);
     this.chkkbNhipTimKhong.Name = "chkkbNhipTimKhong";
     this.chkkbNhipTimKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbNhipTimKhong.Size = new System.Drawing.Size(83, 23);
     this.chkkbNhipTimKhong.TabIndex = 57;
     this.chkkbNhipTimKhong.Text = "Không đều";
     //
     // chkkbNhipTimDeu
     //
     this.chkkbNhipTimDeu.Location = new System.Drawing.Point(289, 54);
     this.chkkbNhipTimDeu.Name = "chkkbNhipTimDeu";
     this.chkkbNhipTimDeu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbNhipTimDeu.Size = new System.Drawing.Size(45, 23);
     this.chkkbNhipTimDeu.TabIndex = 56;
     this.chkkbNhipTimDeu.Text = "Đều";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(275, 56);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(16, 15);
     this.label47.TabIndex = 515;
     this.label47.Text = "l/f";
     //
     // txtkbNhipTim
     //
     this.txtkbNhipTim.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbNhipTim.Location = new System.Drawing.Point(229, 55);
     this.txtkbNhipTim.Name = "txtkbNhipTim";
     this.txtkbNhipTim.Size = new System.Drawing.Size(46, 20);
     this.txtkbNhipTim.TabIndex = 55;
     this.txtkbNhipTim.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(111, 57);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(116, 15);
     this.label46.TabIndex = 513;
     this.label46.Text = "Tuần hoàn: nhịp tim";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.Location = new System.Drawing.Point(12, 56);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(104, 15);
     this.label45.TabIndex = 512;
     this.label45.Text = "- Các bộ phận: ";
     //
     // txtkbKhac
     //
     this.txtkbKhac.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtkbKhac.Location = new System.Drawing.Point(742, 23);
     this.txtkbKhac.Name = "txtkbKhac";
     this.txtkbKhac.Size = new System.Drawing.Size(93, 20);
     this.txtkbKhac.TabIndex = 54;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(705, 25);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(35, 15);
     this.label44.TabIndex = 503;
     this.label44.Text = "Khác";
     //
     // chkkbRunTayKhong
     //
     this.chkkbRunTayKhong.Location = new System.Drawing.Point(637, 22);
     this.chkkbRunTayKhong.Name = "chkkbRunTayKhong";
     this.chkkbRunTayKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbRunTayKhong.Size = new System.Drawing.Size(56, 23);
     this.chkkbRunTayKhong.TabIndex = 53;
     this.chkkbRunTayKhong.Text = "Không";
     //
     // chkkbRunTayCo
     //
     this.chkkbRunTayCo.Location = new System.Drawing.Point(601, 23);
     this.chkkbRunTayCo.Name = "chkkbRunTayCo";
     this.chkkbRunTayCo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbRunTayCo.Size = new System.Drawing.Size(33, 23);
     this.chkkbRunTayCo.TabIndex = 52;
     this.chkkbRunTayCo.Text = "Có";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(551, 26);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(50, 15);
     this.label43.TabIndex = 509;
     this.label43.Text = "Tay run:";
     //
     // chkkbCungMacMatVangKhong
     //
     this.chkkbCungMacMatVangKhong.Location = new System.Drawing.Point(480, 24);
     this.chkkbCungMacMatVangKhong.Name = "chkkbCungMacMatVangKhong";
     this.chkkbCungMacMatVangKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbCungMacMatVangKhong.Size = new System.Drawing.Size(58, 23);
     this.chkkbCungMacMatVangKhong.TabIndex = 51;
     this.chkkbCungMacMatVangKhong.Text = "Không";
     //
     // chkkbCungMacMatVangCo
     //
     this.chkkbCungMacMatVangCo.Location = new System.Drawing.Point(441, 24);
     this.chkkbCungMacMatVangCo.Name = "chkkbCungMacMatVangCo";
     this.chkkbCungMacMatVangCo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbCungMacMatVangCo.Size = new System.Drawing.Size(33, 23);
     this.chkkbCungMacMatVangCo.TabIndex = 50;
     this.chkkbCungMacMatVangCo.Text = "Có";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(316, 26);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(119, 15);
     this.label42.TabIndex = 506;
     this.label42.Text = "Củng mạc mắt vàng:";
     //
     // chkkbDaNongAmKhong
     //
     this.chkkbDaNongAmKhong.Location = new System.Drawing.Point(222, 24);
     this.chkkbDaNongAmKhong.Name = "chkkbDaNongAmKhong";
     this.chkkbDaNongAmKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbDaNongAmKhong.Size = new System.Drawing.Size(63, 23);
     this.chkkbDaNongAmKhong.TabIndex = 46;
     this.chkkbDaNongAmKhong.Text = "Không";
     //
     // chkkbDaNongAmCo
     //
     this.chkkbDaNongAmCo.Location = new System.Drawing.Point(180, 24);
     this.chkkbDaNongAmCo.Name = "chkkbDaNongAmCo";
     this.chkkbDaNongAmCo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkkbDaNongAmCo.Size = new System.Drawing.Size(33, 23);
     this.chkkbDaNongAmCo.TabIndex = 45;
     this.chkkbDaNongAmCo.Text = "Có";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(97, 26);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(78, 15);
     this.label41.TabIndex = 503;
     this.label41.Text = "Da nóng ẩm:";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.Location = new System.Drawing.Point(12, 26);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(92, 15);
     this.label40.TabIndex = 503;
     this.label40.Text = "- Toàn Thân: ";
     //
     // HOIBENH
     //
     this.HOIBENH.Controls.Add(this.label34);
     this.HOIBENH.Controls.Add(this.chkKinhNguyetKhong);
     this.HOIBENH.Controls.Add(this.chkKinhNguyetDeu);
     this.HOIBENH.Controls.Add(this.label33);
     this.HOIBENH.Controls.Add(this.chkBenhLyDaDayKhong);
     this.HOIBENH.Controls.Add(this.chkBenhLyDaDayCo);
     this.HOIBENH.Controls.Add(this.label97);
     this.HOIBENH.Controls.Add(this.chktsbHenPheQuanKhong);
     this.HOIBENH.Controls.Add(this.chktsbHenPheQuanCo);
     this.HOIBENH.Controls.Add(this.label29);
     this.HOIBENH.Controls.Add(this.label28);
     this.HOIBENH.Controls.Add(this.txthbKhac);
     this.HOIBENH.Controls.Add(this.txtSoLanDiNgoai);
     this.HOIBENH.Controls.Add(this.label27);
     this.HOIBENH.Controls.Add(this.txtTinhChatPhan);
     this.HOIBENH.Controls.Add(this.label24);
     this.HOIBENH.Controls.Add(this.chkRoiLoanTieuHoa);
     this.HOIBENH.Controls.Add(this.chkNguoiNongBung);
     this.HOIBENH.Controls.Add(this.label23);
     this.HOIBENH.Controls.Add(this.txtThuocDieuTri5);
     this.HOIBENH.Controls.Add(this.label21);
     this.HOIBENH.Controls.Add(this.txtThuocDieuTri3);
     this.HOIBENH.Controls.Add(this.txtThuocDieuTri4);
     this.HOIBENH.Controls.Add(this.label22);
     this.HOIBENH.Controls.Add(this.label96);
     this.HOIBENH.Controls.Add(this.txtThuocDieuTri1);
     this.HOIBENH.Controls.Add(this.txttsgdKhac);
     this.HOIBENH.Controls.Add(this.label64);
     this.HOIBENH.Controls.Add(this.chktsgdBuouCo);
     this.HOIBENH.Controls.Add(this.chktsgdBasedow);
     this.HOIBENH.Controls.Add(this.label39);
     this.HOIBENH.Controls.Add(this.label38);
     this.HOIBENH.Controls.Add(this.txttsbKhac);
     this.HOIBENH.Controls.Add(this.label37);
     this.HOIBENH.Controls.Add(this.label32);
     this.HOIBENH.Controls.Add(this.label31);
     this.HOIBENH.Controls.Add(this.chkhbMatLoi);
     this.HOIBENH.Controls.Add(this.label30);
     this.HOIBENH.Controls.Add(this.chkhbVungTGto);
     this.HOIBENH.Controls.Add(this.txthbKgSau);
     this.HOIBENH.Controls.Add(this.label26);
     this.HOIBENH.Controls.Add(this.txthbKgDau);
     this.HOIBENH.Controls.Add(this.chkhbRunchantay);
     this.HOIBENH.Controls.Add(this.chkhbGaySutCan);
     this.HOIBENH.Controls.Add(this.chkhbMetMoi);
     this.HOIBENH.Controls.Add(this.label25);
     this.HOIBENH.Controls.Add(this.txtThuocDieuTri2);
     this.HOIBENH.Controls.Add(this.label20);
     this.HOIBENH.Controls.Add(this.label19);
     this.HOIBENH.Controls.Add(this.chkhbKhongDeu);
     this.HOIBENH.Controls.Add(this.chkhbDeu);
     this.HOIBENH.Controls.Add(this.label18);
     this.HOIBENH.Controls.Add(this.txtNoiChanDoanBasedow);
     this.HOIBENH.Controls.Add(this.label17);
     this.HOIBENH.Controls.Add(this.TG_txtNamChanDoanBasedow);
     this.HOIBENH.Controls.Add(this.label15);
     this.HOIBENH.Controls.Add(this.label14);
     this.HOIBENH.Dock = System.Windows.Forms.DockStyle.Top;
     this.HOIBENH.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HOIBENH.Location = new System.Drawing.Point(0, 382);
     this.HOIBENH.Name = "HOIBENH";
     this.HOIBENH.Size = new System.Drawing.Size(871, 287);
     this.HOIBENH.TabIndex = 3;
     this.HOIBENH.Text = "III. HỎI BỆNH";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(627, 185);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(74, 15);
     this.label34.TabIndex = 597;
     this.label34.Text = "Kinh nguyệt:";
     //
     // chkKinhNguyetKhong
     //
     this.chkKinhNguyetKhong.Location = new System.Drawing.Point(745, 181);
     this.chkKinhNguyetKhong.Name = "chkKinhNguyetKhong";
     this.chkKinhNguyetKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkKinhNguyetKhong.Size = new System.Drawing.Size(90, 23);
     this.chkKinhNguyetKhong.TabIndex = 40;
     this.chkKinhNguyetKhong.Text = "Không đều";
     //
     // chkKinhNguyetDeu
     //
     this.chkKinhNguyetDeu.Location = new System.Drawing.Point(675, 183);
     this.chkKinhNguyetDeu.Name = "chkKinhNguyetDeu";
     this.chkKinhNguyetDeu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkKinhNguyetDeu.Size = new System.Drawing.Size(68, 23);
     this.chkKinhNguyetDeu.TabIndex = 39;
     this.chkKinhNguyetDeu.Text = "Đều";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(333, 186);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(89, 15);
     this.label33.TabIndex = 594;
     this.label33.Text = "Bệnh lý dạ dày:";
     //
     // chkBenhLyDaDayKhong
     //
     this.chkBenhLyDaDayKhong.Location = new System.Drawing.Point(469, 183);
     this.chkBenhLyDaDayKhong.Name = "chkBenhLyDaDayKhong";
     this.chkBenhLyDaDayKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkBenhLyDaDayKhong.Size = new System.Drawing.Size(63, 23);
     this.chkBenhLyDaDayKhong.TabIndex = 38;
     this.chkBenhLyDaDayKhong.Text = "Không";
     //
     // chkBenhLyDaDayCo
     //
     this.chkBenhLyDaDayCo.Location = new System.Drawing.Point(427, 183);
     this.chkBenhLyDaDayCo.Name = "chkBenhLyDaDayCo";
     this.chkBenhLyDaDayCo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkBenhLyDaDayCo.Size = new System.Drawing.Size(33, 23);
     this.chkBenhLyDaDayCo.TabIndex = 37;
     this.chkBenhLyDaDayCo.Text = "Có";
     //
     // label97
     //
     this.label97.AutoSize = true;
     this.label97.Location = new System.Drawing.Point(95, 185);
     this.label97.Name = "label97";
     this.label97.Size = new System.Drawing.Size(88, 15);
     this.label97.TabIndex = 591;
     this.label97.Text = "Hen phế quản:";
     //
     // chktsbHenPheQuanKhong
     //
     this.chktsbHenPheQuanKhong.Location = new System.Drawing.Point(231, 182);
     this.chktsbHenPheQuanKhong.Name = "chktsbHenPheQuanKhong";
     this.chktsbHenPheQuanKhong.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chktsbHenPheQuanKhong.Size = new System.Drawing.Size(63, 23);
     this.chktsbHenPheQuanKhong.TabIndex = 36;
     this.chktsbHenPheQuanKhong.Text = "Không";
     //
     // chktsbHenPheQuanCo
     //
     this.chktsbHenPheQuanCo.Location = new System.Drawing.Point(189, 182);
     this.chktsbHenPheQuanCo.Name = "chktsbHenPheQuanCo";
     this.chktsbHenPheQuanCo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chktsbHenPheQuanCo.Size = new System.Drawing.Size(33, 23);
     this.chktsbHenPheQuanCo.TabIndex = 35;
     this.chktsbHenPheQuanCo.Text = "Có";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(611, 140);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(35, 15);
     this.label29.TabIndex = 588;
     this.label29.Text = "Khác";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(560, 141);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(41, 15);
     this.label28.TabIndex = 587;
     this.label28.Text = "v/ngày";
     //
     // txthbKhac
     //
     this.txthbKhac.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txthbKhac.Location = new System.Drawing.Point(652, 135);
     this.txthbKhac.Name = "txthbKhac";
     this.txthbKhac.Size = new System.Drawing.Size(183, 20);
     this.txthbKhac.TabIndex = 34;
     //
     // txtSoLanDiNgoai
     //
     this.txtSoLanDiNgoai.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSoLanDiNgoai.Location = new System.Drawing.Point(484, 136);
     this.txtSoLanDiNgoai.Name = "txtSoLanDiNgoai";
     this.txtSoLanDiNgoai.Size = new System.Drawing.Size(58, 20);
     this.txtSoLanDiNgoai.TabIndex = 33;
     this.txtSoLanDiNgoai.Visible = false;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(388, 136);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(87, 15);
     this.label27.TabIndex = 584;
     this.label27.Text = "số lần đi ngoài";
     //
     // txtTinhChatPhan
     //
     this.txtTinhChatPhan.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTinhChatPhan.Location = new System.Drawing.Point(237, 135);
     this.txtTinhChatPhan.Name = "txtTinhChatPhan";
     this.txtTinhChatPhan.Size = new System.Drawing.Size(134, 20);
     this.txtTinhChatPhan.TabIndex = 32;
     this.txtTinhChatPhan.Visible = false;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(137, 136);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(88, 15);
     this.label24.TabIndex = 582;
     this.label24.Text = "Tính chất phân";
     //
     // chkRoiLoanTieuHoa
     //
     this.chkRoiLoanTieuHoa.Location = new System.Drawing.Point(13, 132);
     this.chkRoiLoanTieuHoa.Name = "chkRoiLoanTieuHoa";
     this.chkRoiLoanTieuHoa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkRoiLoanTieuHoa.Size = new System.Drawing.Size(111, 23);
     this.chkRoiLoanTieuHoa.TabIndex = 31;
     this.chkRoiLoanTieuHoa.Text = "Rối loạn tiêu hóa";
     //
     // chkNguoiNongBung
     //
     this.chkNguoiNongBung.Location = new System.Drawing.Point(681, 101);
     this.chkNguoiNongBung.Name = "chkNguoiNongBung";
     this.chkNguoiNongBung.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkNguoiNongBung.Size = new System.Drawing.Size(153, 23);
     this.chkNguoiNongBung.TabIndex = 30;
     this.chkNguoiNongBung.Text = "Người nóng bừng";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(783, 79);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(41, 15);
     this.label23.TabIndex = 511;
     this.label23.Text = "v/ngày";
     //
     // txtThuocDieuTri5
     //
     this.txtThuocDieuTri5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuocDieuTri5.Location = new System.Drawing.Point(613, 76);
     this.txtThuocDieuTri5.Name = "txtThuocDieuTri5";
     this.txtThuocDieuTri5.Size = new System.Drawing.Size(162, 20);
     this.txtThuocDieuTri5.TabIndex = 22;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(566, 79);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 15);
     this.label21.TabIndex = 509;
     this.label21.Text = "v/ngày";
     //
     // txtThuocDieuTri3
     //
     this.txtThuocDieuTri3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuocDieuTri3.Location = new System.Drawing.Point(13, 73);
     this.txtThuocDieuTri3.Name = "txtThuocDieuTri3";
     this.txtThuocDieuTri3.Size = new System.Drawing.Size(283, 20);
     this.txtThuocDieuTri3.TabIndex = 20;
     //
     // txtThuocDieuTri4
     //
     this.txtThuocDieuTri4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuocDieuTri4.Location = new System.Drawing.Point(363, 74);
     this.txtThuocDieuTri4.Name = "txtThuocDieuTri4";
     this.txtThuocDieuTri4.Size = new System.Drawing.Size(198, 20);
     this.txtThuocDieuTri4.TabIndex = 21;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(302, 77);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(41, 15);
     this.label22.TabIndex = 507;
     this.label22.Text = "v/ngày";
     //
     // label96
     //
     this.label96.AutoSize = true;
     this.label96.Location = new System.Drawing.Point(784, 46);
     this.label96.Name = "label96";
     this.label96.Size = new System.Drawing.Size(41, 15);
     this.label96.TabIndex = 505;
     this.label96.Text = "v/ngày";
     //
     // txtThuocDieuTri1
     //
     this.txtThuocDieuTri1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuocDieuTri1.Location = new System.Drawing.Point(363, 43);
     this.txtThuocDieuTri1.Name = "txtThuocDieuTri1";
     this.txtThuocDieuTri1.Size = new System.Drawing.Size(198, 20);
     this.txtThuocDieuTri1.TabIndex = 18;
     //
     // txttsgdKhac
     //
     this.txttsgdKhac.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txttsgdKhac.Location = new System.Drawing.Point(646, 248);
     this.txttsgdKhac.Name = "txttsgdKhac";
     this.txttsgdKhac.Size = new System.Drawing.Size(189, 20);
     this.txttsgdKhac.TabIndex = 44;
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(610, 250);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(35, 15);
     this.label64.TabIndex = 503;
     this.label64.Text = "Khác";
     //
     // chktsgdBuouCo
     //
     this.chktsgdBuouCo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chktsgdBuouCo.Location = new System.Drawing.Point(454, 246);
     this.chktsgdBuouCo.Name = "chktsgdBuouCo";
     this.chktsgdBuouCo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chktsgdBuouCo.Size = new System.Drawing.Size(116, 23);
     this.chktsgdBuouCo.TabIndex = 43;
     this.chktsgdBuouCo.Text = "Bướu cổ";
     this.chktsgdBuouCo.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // chktsgdBasedow
     //
     this.chktsgdBasedow.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chktsgdBasedow.Location = new System.Drawing.Point(290, 246);
     this.chktsgdBasedow.Name = "chktsgdBasedow";
     this.chktsgdBasedow.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chktsgdBasedow.Size = new System.Drawing.Size(113, 23);
     this.chktsgdBasedow.TabIndex = 42;
     this.chktsgdBasedow.Text = "Basedow";
     this.chktsgdBasedow.TextAlignment = Janus.Windows.EditControls.TextAlignment.Center;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(134, 248);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(162, 15);
     this.label39.TabIndex = 451;
     this.label39.Text = "Bố, mẹ, anh, chị, em ruột bị: ";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(12, 246);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(125, 15);
     this.label38.TabIndex = 498;
     this.label38.Text = "- Tiền Sử gia đình:";
     //
     // txttsbKhac
     //
     this.txttsbKhac.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txttsbKhac.Location = new System.Drawing.Point(61, 218);
     this.txttsbKhac.Name = "txttsbKhac";
     this.txttsbKhac.Size = new System.Drawing.Size(774, 20);
     this.txttsbKhac.TabIndex = 41;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(23, 219);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(35, 15);
     this.label37.TabIndex = 496;
     this.label37.Text = "Khác";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(12, 186);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(85, 15);
     this.label32.TabIndex = 483;
     this.label32.Text = "- Bản Thân: ";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(6, 158);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(110, 15);
     this.label31.TabIndex = 482;
     this.label31.Text = "2. Tiền sử bệnh:";
     //
     // chkhbMatLoi
     //
     this.chkhbMatLoi.Location = new System.Drawing.Point(586, 103);
     this.chkhbMatLoi.Name = "chkhbMatLoi";
     this.chkhbMatLoi.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbMatLoi.Size = new System.Drawing.Size(73, 23);
     this.chkhbMatLoi.TabIndex = 29;
     this.chkhbMatLoi.Text = "Mắt lồi";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(610, 107);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(0, 15);
     this.label30.TabIndex = 477;
     //
     // chkhbVungTGto
     //
     this.chkhbVungTGto.Location = new System.Drawing.Point(454, 103);
     this.chkhbVungTGto.Name = "chkhbVungTGto";
     this.chkhbVungTGto.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbVungTGto.Size = new System.Drawing.Size(106, 23);
     this.chkhbVungTGto.TabIndex = 28;
     this.chkhbVungTGto.Text = "Vùng TG to";
     //
     // txthbKgSau
     //
     this.txthbKgSau.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txthbKgSau.Location = new System.Drawing.Point(287, 105);
     this.txthbKgSau.Name = "txthbKgSau";
     this.txthbKgSau.Size = new System.Drawing.Size(30, 20);
     this.txthbKgSau.TabIndex = 26;
     this.txthbKgSau.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txthbKgSau.Visible = false;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(263, 107);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(25, 15);
     this.label26.TabIndex = 471;
     this.label26.Text = "Kg/";
     //
     // txthbKgDau
     //
     this.txthbKgDau.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txthbKgDau.Location = new System.Drawing.Point(230, 104);
     this.txthbKgDau.Name = "txthbKgDau";
     this.txthbKgDau.Size = new System.Drawing.Size(33, 20);
     this.txthbKgDau.TabIndex = 25;
     this.txthbKgDau.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     this.txthbKgDau.Visible = false;
     //
     // chkhbRunchantay
     //
     this.chkhbRunchantay.Location = new System.Drawing.Point(327, 104);
     this.chkhbRunchantay.Name = "chkhbRunchantay";
     this.chkhbRunchantay.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbRunchantay.Size = new System.Drawing.Size(108, 23);
     this.chkhbRunchantay.TabIndex = 27;
     this.chkhbRunchantay.Text = "Run chân tay";
     //
     // chkhbGaySutCan
     //
     this.chkhbGaySutCan.Location = new System.Drawing.Point(143, 103);
     this.chkhbGaySutCan.Name = "chkhbGaySutCan";
     this.chkhbGaySutCan.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbGaySutCan.Size = new System.Drawing.Size(86, 23);
     this.chkhbGaySutCan.TabIndex = 24;
     this.chkhbGaySutCan.Text = "Gày sút cân";
     //
     // chkhbMetMoi
     //
     this.chkhbMetMoi.Location = new System.Drawing.Point(77, 103);
     this.chkhbMetMoi.Name = "chkhbMetMoi";
     this.chkhbMetMoi.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbMetMoi.Size = new System.Drawing.Size(62, 23);
     this.chkhbMetMoi.TabIndex = 23;
     this.chkhbMetMoi.Text = "Mệt Mỏi";
     this.chkhbMetMoi.CheckedChanged += new System.EventHandler(this.chkhbMetMoi_CheckedChanged);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(12, 105);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(69, 15);
     this.label25.TabIndex = 468;
     this.label25.Text = "Hiện Tại: ";
     //
     // txtThuocDieuTri2
     //
     this.txtThuocDieuTri2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtThuocDieuTri2.Location = new System.Drawing.Point(614, 43);
     this.txtThuocDieuTri2.Name = "txtThuocDieuTri2";
     this.txtThuocDieuTri2.Size = new System.Drawing.Size(162, 20);
     this.txtThuocDieuTri2.TabIndex = 19;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(567, 47);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(41, 15);
     this.label20.TabIndex = 458;
     this.label20.Text = "v/ngày";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(221, 46);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(142, 15);
     this.label19.TabIndex = 456;
     this.label19.Text = "Các Thuốc đang điều trị: ";
     //
     // chkhbKhongDeu
     //
     this.chkhbKhongDeu.Location = new System.Drawing.Point(140, 43);
     this.chkhbKhongDeu.Name = "chkhbKhongDeu";
     this.chkhbKhongDeu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbKhongDeu.Size = new System.Drawing.Size(75, 23);
     this.chkhbKhongDeu.TabIndex = 17;
     this.chkhbKhongDeu.Text = "Không đều";
     this.chkhbKhongDeu.CheckedChanged += new System.EventHandler(this.chkhbKhongDeu_CheckedChanged);
     //
     // chkhbDeu
     //
     this.chkhbDeu.Location = new System.Drawing.Point(77, 44);
     this.chkhbDeu.Name = "chkhbDeu";
     this.chkhbDeu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.chkhbDeu.Size = new System.Drawing.Size(47, 23);
     this.chkhbDeu.TabIndex = 16;
     this.chkhbDeu.Text = "Đều";
     this.chkhbDeu.CheckedChanged += new System.EventHandler(this.chkhbDeu_CheckedChanged);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(13, 46);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(58, 15);
     this.label18.TabIndex = 453;
     this.label18.Text = "Điều trị:";
     //
     // txtNoiChanDoanBasedow
     //
     this.txtNoiChanDoanBasedow.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNoiChanDoanBasedow.Location = new System.Drawing.Point(482, 17);
     this.txtNoiChanDoanBasedow.Name = "txtNoiChanDoanBasedow";
     this.txtNoiChanDoanBasedow.Size = new System.Drawing.Size(353, 20);
     this.txtNoiChanDoanBasedow.TabIndex = 15;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(386, 19);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(90, 15);
     this.label17.TabIndex = 452;
     this.label17.Text = "Nơi chẩn đoán:";
     //
     // TG_txtNamChanDoanBasedow
     //
     this.TG_txtNamChanDoanBasedow.Location = new System.Drawing.Point(327, 16);
     this.TG_txtNamChanDoanBasedow.Name = "TG_txtNamChanDoanBasedow";
     this.TG_txtNamChanDoanBasedow.Size = new System.Drawing.Size(54, 21);
     this.TG_txtNamChanDoanBasedow.TabIndex = 14;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(142, 18);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(183, 15);
     this.label15.TabIndex = 450;
     this.label15.Text = "Chẩn đoán bệnh Basedow năm:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(6, 18);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(140, 15);
     this.label14.TabIndex = 434;
     this.label14.Text = "1. Quá trình bệnh lý: ";
     //
     // LDVV
     //
     this.LDVV.Controls.Add(this.TG_ldvvMatLoi);
     this.LDVV.Controls.Add(this.TG_chkldvvKhac);
     this.LDVV.Controls.Add(this.TG_chkldvvCoTo);
     this.LDVV.Controls.Add(this.TG_chkldvvRCT);
     this.LDVV.Controls.Add(this.TG_chkldvvGay);
     this.LDVV.Controls.Add(this.TG_chkldvvMetMoi);
     this.LDVV.Dock = System.Windows.Forms.DockStyle.Top;
     this.LDVV.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LDVV.Location = new System.Drawing.Point(0, 322);
     this.LDVV.Name = "LDVV";
     this.LDVV.Size = new System.Drawing.Size(871, 60);
     this.LDVV.TabIndex = 2;
     this.LDVV.Text = "II. LÝ DO VÀO VIỆN";
     //
     // TG_ldvvMatLoi
     //
     this.TG_ldvvMatLoi.Location = new System.Drawing.Point(630, 31);
     this.TG_ldvvMatLoi.Name = "TG_ldvvMatLoi";
     this.TG_ldvvMatLoi.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TG_ldvvMatLoi.Size = new System.Drawing.Size(96, 23);
     this.TG_ldvvMatLoi.TabIndex = 12;
     this.TG_ldvvMatLoi.Text = "Mắt lồi";
     //
     // TG_chkldvvKhac
     //
     this.TG_chkldvvKhac.Location = new System.Drawing.Point(758, 31);
     this.TG_chkldvvKhac.Name = "TG_chkldvvKhac";
     this.TG_chkldvvKhac.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TG_chkldvvKhac.Size = new System.Drawing.Size(67, 23);
     this.TG_chkldvvKhac.TabIndex = 13;
     this.TG_chkldvvKhac.Text = "Khác";
     //
     // TG_chkldvvCoTo
     //
     this.TG_chkldvvCoTo.Location = new System.Drawing.Point(491, 31);
     this.TG_chkldvvCoTo.Name = "TG_chkldvvCoTo";
     this.TG_chkldvvCoTo.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TG_chkldvvCoTo.Size = new System.Drawing.Size(96, 23);
     this.TG_chkldvvCoTo.TabIndex = 11;
     this.TG_chkldvvCoTo.Text = "Cổ to";
     //
     // TG_chkldvvRCT
     //
     this.TG_chkldvvRCT.Location = new System.Drawing.Point(299, 31);
     this.TG_chkldvvRCT.Name = "TG_chkldvvRCT";
     this.TG_chkldvvRCT.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TG_chkldvvRCT.Size = new System.Drawing.Size(145, 23);
     this.TG_chkldvvRCT.TabIndex = 10;
     this.TG_chkldvvRCT.Text = "Run chân tay";
     //
     // TG_chkldvvGay
     //
     this.TG_chkldvvGay.Location = new System.Drawing.Point(137, 31);
     this.TG_chkldvvGay.Name = "TG_chkldvvGay";
     this.TG_chkldvvGay.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TG_chkldvvGay.Size = new System.Drawing.Size(102, 23);
     this.TG_chkldvvGay.TabIndex = 9;
     this.TG_chkldvvGay.Text = "Gày sút cân";
     //
     // TG_chkldvvMetMoi
     //
     this.TG_chkldvvMetMoi.Location = new System.Drawing.Point(26, 31);
     this.TG_chkldvvMetMoi.Name = "TG_chkldvvMetMoi";
     this.TG_chkldvvMetMoi.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TG_chkldvvMetMoi.Size = new System.Drawing.Size(62, 23);
     this.TG_chkldvvMetMoi.TabIndex = 8;
     this.TG_chkldvvMetMoi.Text = "Mệt Mỏi";
     //
     // cmdSave
     //
     this.cmdSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSave.Location = new System.Drawing.Point(251, 550);
     this.cmdSave.Name = "cmdSave";
     this.cmdSave.Size = new System.Drawing.Size(123, 38);
     this.cmdSave.TabIndex = 93;
     this.cmdSave.Text = "&Lưu (Ctrl+S)";
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click_1);
     //
     // chkDongSauKhiLuu
     //
     this.chkDongSauKhiLuu.AutoSize = true;
     this.chkDongSauKhiLuu.Location = new System.Drawing.Point(26, 571);
     this.chkDongSauKhiLuu.Name = "chkDongSauKhiLuu";
     this.chkDongSauKhiLuu.Size = new System.Drawing.Size(132, 17);
     this.chkDongSauKhiLuu.TabIndex = 583;
     this.chkDongSauKhiLuu.Text = "Đóng Form sau khi lưu";
     this.chkDongSauKhiLuu.UseVisualStyleBackColor = true;
     //
     // cmdInBenhAn
     //
     this.cmdInBenhAn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdInBenhAn.Location = new System.Drawing.Point(416, 548);
     this.cmdInBenhAn.Name = "cmdInBenhAn";
     this.cmdInBenhAn.Size = new System.Drawing.Size(126, 40);
     this.cmdInBenhAn.TabIndex = 94;
     this.cmdInBenhAn.Text = "&In Bệnh Án(F4)";
     this.cmdInBenhAn.UseVisualStyleBackColor = true;
     this.cmdInBenhAn.Click += new System.EventHandler(this.cmdInBenhAn_Click);
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Latha", 8.25F);
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 605);
     this.uiStatusBar1.Name = "uiStatusBar1";
     this.uiStatusBar1.Size = new System.Drawing.Size(888, 64);
     this.uiStatusBar1.TabIndex = 584;
     //
     // label93
     //
     this.label93.AutoSize = true;
     this.label93.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label93.ForeColor = System.Drawing.Color.Red;
     this.label93.Location = new System.Drawing.Point(523, 619);
     this.label93.Name = "label93";
     this.label93.Size = new System.Drawing.Size(254, 13);
     this.label93.TabIndex = 585;
     this.label93.Text = "Sau Khi in bệnh án không thể sửa thông tin";
     this.label93.Visible = false;
     //
     // cmdDelete
     //
     this.cmdDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdDelete.Location = new System.Drawing.Point(575, 548);
     this.cmdDelete.Name = "cmdDelete";
     this.cmdDelete.Size = new System.Drawing.Size(126, 40);
     this.cmdDelete.TabIndex = 586;
     this.cmdDelete.Text = "&Xóa Bệnh Án";
     this.cmdDelete.UseVisualStyleBackColor = true;
     //
     // chkInNgay
     //
     this.chkInNgay.AutoSize = true;
     this.chkInNgay.Location = new System.Drawing.Point(26, 548);
     this.chkInNgay.Name = "chkInNgay";
     this.chkInNgay.Size = new System.Drawing.Size(115, 17);
     this.chkInNgay.TabIndex = 587;
     this.chkInNgay.Text = "In ngay sau khi lưu";
     this.chkInNgay.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(814, 610);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(64, 23);
     this.button1.TabIndex = 588;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     //
     // label94
     //
     this.label94.AutoSize = true;
     this.label94.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label94.Location = new System.Drawing.Point(10, 616);
     this.label94.Name = "label94";
     this.label94.Size = new System.Drawing.Size(489, 16);
     this.label94.TabIndex = 589;
     this.label94.Text = "- Bệnh nhân chưa có bệnh án: Ấn Lưu, hoặc nhập số bệnh án cũ và Lưu";
     //
     // label95
     //
     this.label95.AutoSize = true;
     this.label95.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label95.Location = new System.Drawing.Point(10, 643);
     this.label95.Name = "label95";
     this.label95.Size = new System.Drawing.Size(98, 16);
     this.label95.TabIndex = 590;
     this.label95.Text = "- Người Tạo: ";
     //
     // frm_BENHAN_NGOAITRU_TG
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(888, 669);
     this.Controls.Add(this.label95);
     this.Controls.Add(this.label94);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chkInNgay);
     this.Controls.Add(this.cmdDelete);
     this.Controls.Add(this.label93);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.cmdInBenhAn);
     this.Controls.Add(this.chkDongSauKhiLuu);
     this.Controls.Add(this.cmdSave);
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_BENHAN_NGOAITRU_TG";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Nhập Thông Tin Bệnh Án BASEDOW";
     this.Load += new System.EventHandler(this.frm_BENHAN_NGOAITRU_TG_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frm_BENHAN_NGOAITRU_TG_KeyDown_1);
     ((System.ComponentModel.ISupportInitialize)(this.grpThongTinBenhNhan)).EndInit();
     this.grpThongTinBenhNhan.ResumeLayout(false);
     this.grpThongTinBenhNhan.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KHAMBENH)).EndInit();
     this.KHAMBENH.ResumeLayout(false);
     this.KHAMBENH.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.HOIBENH)).EndInit();
     this.HOIBENH.ResumeLayout(false);
     this.HOIBENH.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LDVV)).EndInit();
     this.LDVV.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }